Merge pull request #2345 from mattymo/credentials_upgrade_fix
Add pre-upgrade task for moving credentials file
This commit is contained in:
commit
6ce507f39f
3 changed files with 28 additions and 0 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,6 +1,7 @@
|
||||||
.vagrant
|
.vagrant
|
||||||
*.retry
|
*.retry
|
||||||
inventory/vagrant_ansible_inventory
|
inventory/vagrant_ansible_inventory
|
||||||
|
inventory/credentials/
|
||||||
inventory/group_vars/fake_hosts.yml
|
inventory/group_vars/fake_hosts.yml
|
||||||
inventory/host_vars/
|
inventory/host_vars/
|
||||||
temp
|
temp
|
||||||
|
|
|
@ -3,6 +3,11 @@
|
||||||
tags:
|
tags:
|
||||||
- asserts
|
- asserts
|
||||||
|
|
||||||
|
# This is run before bin_dir is pinned because these tasks are run on localhost
|
||||||
|
- import_tasks: pre_upgrade.yml
|
||||||
|
tags:
|
||||||
|
- upgrade
|
||||||
|
|
||||||
- name: Force binaries directory for Container Linux by CoreOS
|
- name: Force binaries directory for Container Linux by CoreOS
|
||||||
set_fact:
|
set_fact:
|
||||||
bin_dir: "/opt/bin"
|
bin_dir: "/opt/bin"
|
||||||
|
|
22
roles/kubernetes/preinstall/tasks/pre_upgrade.yml
Normal file
22
roles/kubernetes/preinstall/tasks/pre_upgrade.yml
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
---
|
||||||
|
- name: "Pre-upgrade | check if old credential dir exists"
|
||||||
|
local_action:
|
||||||
|
module: stat
|
||||||
|
path: "{{ inventory_dir }}/../credentials"
|
||||||
|
register: old_credential_dir
|
||||||
|
become: no
|
||||||
|
|
||||||
|
- name: "Pre-upgrade | check if new credential dir exists"
|
||||||
|
local_action:
|
||||||
|
module: stat
|
||||||
|
path: "{{ inventory_dir }}/credentials"
|
||||||
|
register: new_credential_dir
|
||||||
|
become: no
|
||||||
|
when: old_credential_dir.stat.exists
|
||||||
|
|
||||||
|
- name: "Pre-upgrade | move data from old credential dir to new"
|
||||||
|
local_action: command mv {{ inventory_dir }}/../credentials {{ inventory_dir }}/credentials
|
||||||
|
args:
|
||||||
|
creates: "{{ inventory_dir }}/credentials"
|
||||||
|
become: no
|
||||||
|
when: old_credential_dir.stat.exists and not new_credential_dir.stat.exists
|
Loading…
Reference in a new issue