Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix misspellings of 'Kubernetes' #34753

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion cluster/gce/trusty/master.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ Content-Disposition: attachment; filename="kube-master-health-monitoring.conf"

#upstart-job

description "Kubenetes master health monitoring"
description "Kubernetes master health monitoring"

start on stopped kube-docker

Expand Down
2 changes: 1 addition & 1 deletion cluster/gce/trusty/node.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ Content-Type: text/upstart-job; charset="us-ascii"
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment; filename="kube-node-health-monitoring.conf"

description "Kubenetes node health monitoring"
description "Kubernetes node health monitoring"

start on stopped kube-docker

Expand Down
2 changes: 1 addition & 1 deletion cluster/vsphere/util.sh
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ function setup-pod-routes {
done


# identify the subnet assigned to the node by the kubernertes controller manager.
# identify the subnet assigned to the node by the kubernetes controller manager.
KUBE_NODE_BRIDGE_NETWORK=()
for (( i=0; i<${#NODE_NAMES[@]}; i++)); do
printf " finding network of cbr0 bridge on node ${NODE_NAMES[$i]}\n"
Expand Down
2 changes: 1 addition & 1 deletion docs/proposals/image-provenance.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ Non-goals include:
* A third-party implementation of an image policy checker could optionally use ThirdPartyResource to store its policy.
* Kubernetes core code dealing with concepts of image layers, build processes, source repositories, etc.
* We expect there will be multiple PaaSes and/or de-facto programming environments, each with different takes on
these concepts. At any rate, Kuberenetes is not ready to be opinionated on these concepts.
these concepts. At any rate, Kubernetes is not ready to be opinionated on these concepts.
* Sending more information than strictly needed to a third-party service.
* Information sent by Kubernetes to a third-party service constitutes an API of Kubernetes, and we want to
avoid making these broader than necessary, as it restricts future evolution of Kubernetes, and makes
Expand Down
2 changes: 1 addition & 1 deletion staging/src/k8s.io/client-go/copy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ ls "${CLIENT_REPO}" | { grep -v '_tmp' || true; } | xargs rm -rf
mv "${CLIENT_REPO_TEMP}"/* "${CLIENT_REPO}"
rm -r "${CLIENT_REPO_TEMP}"

echo "moving vendor/k8s.io/kuberentes"
echo "moving vendor/k8s.io/kubernetes"
cp -rn "${CLIENT_REPO}"/vendor/k8s.io/kubernetes/. "${CLIENT_REPO}"/
rm -rf "${CLIENT_REPO}"/vendor/k8s.io/kubernetes
# client-go will share the vendor of the main repo for now. When client-go
Expand Down