diff --git a/docs/getting-started.md b/docs/getting-started.md index 67b6132af994010754dddd0a7c9bb3ed2aa7e130..e9e6d2f91ca9e828353138544f1ba44257db0f0d 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -75,7 +75,7 @@ kube-apiserver via port 8080. A kubeconfig file is not necessary in this case, because kubectl will use http://localhost:8080 to connect. The kubeconfig files generated will point to localhost (on kube-masters) and kube-node hosts will connect either to a localhost nginx proxy or to a loadbalancer if configured. -More details on this process are in the [HA guide](ha.md). +More details on this process are in the [HA guide](ha-mode.md). Kubespray permits connecting to the cluster remotely on any IP of any kube-master host on port 6443 by default. However, this requires diff --git a/roles/bootstrap-os/defaults/main.yml b/roles/bootstrap-os/defaults/main.yml index 1bc47cf1e293bc06e1de6e82df08c4eb69fc3da1..11e45196fe67383a3b0829aa8a1c27d859a55d6c 100644 --- a/roles/bootstrap-os/defaults/main.yml +++ b/roles/bootstrap-os/defaults/main.yml @@ -1,5 +1,4 @@ --- -pypy_version: 2.4.0 -pip_python_modules: +pip_python_coreos_modules: - httplib2 - - six \ No newline at end of file + - six diff --git a/roles/bootstrap-os/tasks/bootstrap-coreos.yml b/roles/bootstrap-os/tasks/bootstrap-coreos.yml index cf46b43f9273bf59e41cf440df0c6a1c8ff19e9f..fc290cef0f34805feaa8ab69e8d150ebe4f24c06 100644 --- a/roles/bootstrap-os/tasks/bootstrap-coreos.yml +++ b/roles/bootstrap-os/tasks/bootstrap-coreos.yml @@ -51,4 +51,4 @@ - name: Install required python modules pip: name: "{{ item }}" - with_items: "{{pip_python_modules}}" + with_items: "{{pip_python_coreos_modules}}" diff --git a/roles/bootstrap-os/tasks/bootstrap-debian.yml b/roles/bootstrap-os/tasks/bootstrap-debian.yml index 69511222fdfac0cad32901c0a26c35afcda97aca..31b64265e808aa1d8100f428cc569caa28b95090 100644 --- a/roles/bootstrap-os/tasks/bootstrap-debian.yml +++ b/roles/bootstrap-os/tasks/bootstrap-debian.yml @@ -16,7 +16,7 @@ apt-get update && \ DEBIAN_FRONTEND=noninteractive apt-get install -y python-minimal python-pip dbus when: - "{{ need_bootstrap.results | map(attribute='rc') | sort | last | bool }}" + need_bootstrap.results | map(attribute='rc') | sort | last | bool - set_fact: ansible_python_interpreter: "/usr/bin/python"