067db686f6
Sincea790935d02
all proxy users should be properly configured Now when you have *_PROXY vars in your environment it can leads to failure if NO_PROXY is not correct, or to persistent configuration changes as seen with kubeadm in1c5391dda7
Instead of playing constant whack-a-bug, inject empty *_PROXY vars everywhere at the play level, and override at the task level when needed Signed-off-by: Etienne Champetier <e.champetier@ateme.com>
32 lines
808 B
YAML
32 lines
808 B
YAML
---
|
|
- name: Check ansible version
|
|
import_playbook: ansible_version.yml
|
|
|
|
- hosts: bastion[0]
|
|
gather_facts: False
|
|
environment: "{{ proxy_disable_env }}"
|
|
roles:
|
|
- { role: kubespray-defaults}
|
|
- { role: bastion-ssh-config, tags: ["localhost", "bastion"]}
|
|
|
|
- name: Gather facts
|
|
import_playbook: facts.yml
|
|
|
|
- hosts: etcd:k8s-cluster:calico-rr
|
|
gather_facts: False
|
|
vars_prompt:
|
|
name: "reset_confirmation"
|
|
prompt: "Are you sure you want to reset cluster state? Type 'yes' to reset your cluster."
|
|
default: "no"
|
|
private: no
|
|
|
|
pre_tasks:
|
|
- name: check confirmation
|
|
fail:
|
|
msg: "Reset confirmation failed"
|
|
when: reset_confirmation != "yes"
|
|
|
|
environment: "{{ proxy_disable_env }}"
|
|
roles:
|
|
- { role: kubespray-defaults}
|
|
- { role: reset, tags: reset }
|