diff --git a/docs/usage/guides/calico.md b/docs/usage/guides/calico.md index 1a8a8a16..fd1c71eb 100644 --- a/docs/usage/guides/calico.md +++ b/docs/usage/guides/calico.md @@ -34,7 +34,7 @@ For watching for the pod(s) deployment watch "kubectl get pods -n kube-system" ``` -You will have something like this at begining (with the command line `kubectl get pods -n kube-system`) +You will have something like this at beginning (with the command line `kubectl get pods -n kube-system`) ``` NAME READY STATUS RESTARTS AGE helm-install-traefik-pn84f 0/1 Pending 0 3s diff --git a/docs/usage/guides/calico.yaml b/docs/usage/guides/calico.yaml index b077877e..9de2ffd0 100644 --- a/docs/usage/guides/calico.yaml +++ b/docs/usage/guides/calico.yaml @@ -2092,7 +2092,7 @@ spec: type: object ipipMode: description: Contains configuration for IPIP tunneling for this pool. - If not specified, then this is defaulted to "Never" (i.e. IPIP tunelling + If not specified, then this is defaulted to "Never" (i.e. IPIP tunneling is disabled). type: string nat-outgoing: @@ -2112,7 +2112,7 @@ spec: vxlanMode: description: Contains configuration for VXLAN tunneling for this pool. If not specified, then this is defaulted to "Never" (i.e. VXLAN - tunelling is disabled). + tunneling is disabled). type: string required: - cidr diff --git a/mkdocs.yml b/mkdocs.yml index 5291f60b..75a3f185 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -30,7 +30,7 @@ theme: favicon: static/img/favicons_black_blue/favicon.png # Navigation -# nav: ommitted, because we're using the awesome-pages plugin (https://squidfunk.github.io/mkdocs-material/plugins/awesome-pages/) +# nav: omitted, because we're using the awesome-pages plugin (https://squidfunk.github.io/mkdocs-material/plugins/awesome-pages/) # Extensions markdown_extensions: diff --git a/pkg/runtimes/docker/translate.go b/pkg/runtimes/docker/translate.go index 8d8b842c..ed2a73f9 100644 --- a/pkg/runtimes/docker/translate.go +++ b/pkg/runtimes/docker/translate.go @@ -39,7 +39,6 @@ import ( // TranslateNodeToContainer translates a k3d node specification to a docker container representation func TranslateNodeToContainer(node *k3d.Node) (*NodeInDocker, error) { - /* initialize everything that we need */ containerConfig := docker.Config{} hostConfig := docker.HostConfig{ @@ -195,6 +194,7 @@ func TranslateContainerDetailsToNode(containerDetails types.ContainerJSON) (*k3d Args: []string{}, // empty, since Cmd already contains flags Ports: containerDetails.HostConfig.PortBindings, Restart: restart, + Created: containerDetails.Created, Labels: labels, Network: clusterNetwork, ServerOpts: serverOpts, diff --git a/pkg/tools/tools.go b/pkg/tools/tools.go index 7856116f..8a9b01b1 100644 --- a/pkg/tools/tools.go +++ b/pkg/tools/tools.go @@ -46,7 +46,7 @@ func ImageImportIntoClusterMulti(ctx context.Context, runtime runtimes.Runtime, runtimeImages, err := runtime.GetImages(ctx) if err != nil { - log.Errorln("Failed to fetch list of exsiting images from runtime") + log.Errorln("Failed to fetch list of existing images from runtime") return err } diff --git a/pkg/types/types.go b/pkg/types/types.go index 114fb3b6..ff6410f3 100644 --- a/pkg/types/types.go +++ b/pkg/types/types.go @@ -300,6 +300,7 @@ type Node struct { Args []string `yaml:"extraArgs" json:"extraArgs,omitempty"` Ports nat.PortMap `yaml:"portMappings" json:"portMappings,omitempty"` Restart bool `yaml:"restart" json:"restart,omitempty"` + Created string `yaml:"created" json:"created,omitempty"` Labels map[string]string // filled automatically Network string // filled automatically ExtraHosts []string // filled automatically