diff --git a/addons/prometheus-operator/v0.19.0.yaml b/addons/prometheus-operator/v0.19.0.yaml index 64c0c47061..8fec572a48 100644 --- a/addons/prometheus-operator/v0.19.0.yaml +++ b/addons/prometheus-operator/v0.19.0.yaml @@ -824,7 +824,7 @@ spec: command: description: Command is the command line to execute inside the container, the working directory for - the command is root ('/') in the container's filesystem. + the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly @@ -891,7 +891,7 @@ spec: command: description: Command is the command line to execute inside the container, the working directory for - the command is root ('/') in the container's filesystem. + the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly @@ -957,7 +957,7 @@ spec: properties: command: description: Command is the command line to execute inside - the container, the working directory for the command is + the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, @@ -1097,7 +1097,7 @@ spec: properties: command: description: Command is the command line to execute inside - the container, the working directory for the command is + the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, @@ -3163,7 +3163,7 @@ spec: command: description: Command is the command line to execute inside the container, the working directory for - the command is root ('/') in the container's filesystem. + the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly @@ -3230,7 +3230,7 @@ spec: command: description: Command is the command line to execute inside the container, the working directory for - the command is root ('/') in the container's filesystem. + the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly @@ -3296,7 +3296,7 @@ spec: properties: command: description: Command is the command line to execute inside - the container, the working directory for the command is + the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, @@ -3436,7 +3436,7 @@ spec: properties: command: description: Command is the command line to execute inside - the container, the working directory for the command is + the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, diff --git a/cmd/kops/validate_cluster.go b/cmd/kops/validate_cluster.go index cdedacb2ba..8c38bd0125 100644 --- a/cmd/kops/validate_cluster.go +++ b/cmd/kops/validate_cluster.go @@ -39,7 +39,7 @@ import ( func init() { if runtime.GOOS == "darwin" { - // In order for net.LookupHost(apiAddr.Host) to lookup our placeholder address on darwin, we have to + // In order for net.LookupHost(apiAddr.Host) to lookup our placeholder address on darwin, we have to os.Setenv("GODEBUG", "netdns=go") } } diff --git a/docs/advisories/cve_2017_14491.md b/docs/advisories/cve_2017_14491.md index 6b4316debc..df30a67b02 100644 --- a/docs/advisories/cve_2017_14491.md +++ b/docs/advisories/cve_2017_14491.md @@ -16,7 +16,7 @@ changes, but when released 1.8.0.apha.2 will contain the required patches. The kube-dns deployment will be automatically upgraded when `kops update cluster` is executed. Replace `my-cluster.example.com` with the name of your cluster. If you are upgrading a Kubernetes 1.4.x or 1.5.x cluster you may need -to follow the instruction below to create a required configmap for kube-dns. +to follow the instruction below to create a required configmap for kube-dns. Upgrade command: diff --git a/docs/development/testing.md b/docs/development/testing.md index ded8437613..9a773e36bb 100644 --- a/docs/development/testing.md +++ b/docs/development/testing.md @@ -148,7 +148,7 @@ rm kubernetes/kubernetes-src.tar.gz find kubernetes/server/bin -type f -name "*.tar" | xargs -I {} /bin/bash -c "sha1sum {} | cut -f1 -d ' ' > {}.sha1" find kubernetes/server/bin -type f -name "kube???" | xargs -I {} /bin/bash -c "sha1sum {} | cut -f1 -d ' ' > {}.sha1" -aws s3 sync --acl public-read kubernetes/server/bin/ s3://${S3_BUCKET_NAME}/kubernetes/dev/v1.6.0-dev/bin/linux/amd64/ +aws s3 sync --acl public-read kubernetes/server/bin/ s3://${S3_BUCKET_NAME}/kubernetes/dev/v1.6.0-dev/bin/linux/amd64/ ``` ### Example e2e command diff --git a/docs/high_availability.md b/docs/high_availability.md index 369c6f0136..b30751394d 100644 --- a/docs/high_availability.md +++ b/docs/high_availability.md @@ -88,7 +88,7 @@ kops create cluster \ Notes (Best Practice) ---- * In regions with 2 Availability Zones, deploy the 3 masters in one zone and the nodes can be distributed between the 2 -zones. This can be done by specifying the flags: +zones. This can be done by specifying the flags: ``` --master-count=3 --master-zones=$MASTER_ZONE diff --git a/docs/networking.md b/docs/networking.md index 1b8f090690..3c53fc9c5c 100644 --- a/docs/networking.md +++ b/docs/networking.md @@ -10,8 +10,8 @@ Kubernetes Operations (kops) currently supports 4 networking modes: ### kops Default Networking Kubernetes Operations (kops) uses `kubenet` networking by default. This sets up networking on AWS using VPC -networking, where the master allocates a /24 CIDR to each Node, drawing from the Node network. -Using `kubenet` mode routes for each node are then configured in the AWS VPC routing tables. +networking, where the master allocates a /24 CIDR to each Node, drawing from the Node network. +Using `kubenet` mode routes for each node are then configured in the AWS VPC routing tables. One important limitation when using `kubenet` networking is that an AWS routing table cannot have more than 50 entries, which sets a limit of 50 nodes per cluster. AWS support will sometimes raise the limit to 100, diff --git a/nodeup/pkg/model/kubelet.go b/nodeup/pkg/model/kubelet.go index dcdbafc658..446fd9c217 100644 --- a/nodeup/pkg/model/kubelet.go +++ b/nodeup/pkg/model/kubelet.go @@ -322,7 +322,7 @@ func (b *KubeletBuilder) addContainerizedMounter(c *fi.ModelBuilderContext) erro // So what we do here is we download a tarred container image, expand it to containerizedMounterHome, then // set up bind mounts so that the script is executable (most of containeros is noexec), - // and set up some bind mounts of proc and dev so that mounting can take place inside that container + // and set up some bind mounts of proc and dev so that mounting can take place inside that container // - it isn't a full docker container. {