c12s-kubespray/roles/kubernetes/preinstall/tasks/0030-pre_upgrade.yml
2018-08-31 13:45:08 +02:00

26 lines
733 B
YAML

---
- name: "Pre-upgrade | check if old credential dir exists"
stat:
path: "{{ inventory_dir }}/../credentials"
delegate_to: localhost
register: old_credential_dir
become: no
- name: "Pre-upgrade | check if new credential dir exists"
stat:
path: "{{ inventory_dir }}/credentials"
delegate_to: localhost
register: new_credential_dir
become: no
when: old_credential_dir.stat.exists
- name: "Pre-upgrade | move data from old credential dir to new"
command: mv {{ inventory_dir }}/../credentials {{ inventory_dir }}/credentials
args:
creates: "{{ inventory_dir }}/credentials"
delegate_to: localhost
become: no
when:
- old_credential_dir.stat.exists
- not new_credential_dir.stat.exists