From 417180246c2dd414ba1f9d3d730217eaa2187f6f Mon Sep 17 00:00:00 2001 From: Atsushi Nukariya <n.a.sch137@gmail.com> Date: Sat, 17 Jul 2021 10:58:50 +0900 Subject: [PATCH] Fix: typos in docs and comments (#7805) --- docs/large-deployments.md | 2 +- inventory/sample/group_vars/k8s_cluster/k8s-cluster.yml | 2 +- roles/kubespray-defaults/defaults/main.yaml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/large-deployments.md b/docs/large-deployments.md index 57b1f7b13..6308c867f 100644 --- a/docs/large-deployments.md +++ b/docs/large-deployments.md @@ -11,7 +11,7 @@ For a large scaled deployments, consider the following configuration changes: * Override the ``download_run_once: true`` and/or ``download_localhost: true``. See download modes for details. -* Adjust the `retry_stagger` global var as appropriate. It should provide sane +* Adjust the `retry_stagger` global var as appropriate. It should provide same load on a delegate (the first K8s control plane node) then retrying failed push or download operations. diff --git a/inventory/sample/group_vars/k8s_cluster/k8s-cluster.yml b/inventory/sample/group_vars/k8s_cluster/k8s-cluster.yml index c2047e6d4..a9c684a56 100644 --- a/inventory/sample/group_vars/k8s_cluster/k8s-cluster.yml +++ b/inventory/sample/group_vars/k8s_cluster/k8s-cluster.yml @@ -2,7 +2,7 @@ # Kubernetes configuration dirs and system namespace. # Those are where all the additional config stuff goes # the kubernetes normally puts in /srv/kubernetes. -# This puts them in a sane location and namespace. +# This puts them in a same location and namespace. # Editing those values will almost surely break something. kube_config_dir: /etc/kubernetes kube_script_dir: "{{ bin_dir }}/kubernetes-scripts" diff --git a/roles/kubespray-defaults/defaults/main.yaml b/roles/kubespray-defaults/defaults/main.yaml index 3238fcbd2..17ce4a696 100644 --- a/roles/kubespray-defaults/defaults/main.yaml +++ b/roles/kubespray-defaults/defaults/main.yaml @@ -121,7 +121,7 @@ enable_coredns_k8s_endpoint_pod_names: false # Kubernetes configuration dirs and system namespace. # Those are where all the additional config stuff goes # the kubernetes normally puts in /srv/kubernetes. -# This puts them in a sane location and namespace. +# This puts them in a same location and namespace. # Editing those values will almost surely break something. kube_config_dir: /etc/kubernetes kube_script_dir: "{{ bin_dir }}/kubernetes-scripts" -- GitLab