Skip to content
Snippets Groups Projects
Commit ad89d1c8 authored by Brad Beam's avatar Brad Beam Committed by Matthew Mosesohn
Browse files

Update pre_upgrade.yml

parent bb469005
No related branches found
No related tags found
No related merge requests found
...@@ -3,6 +3,10 @@ ...@@ -3,6 +3,10 @@
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:
...@@ -40,11 +44,6 @@ ...@@ -40,11 +44,6 @@
tags: tags:
- facts - facts
- import_tasks: pre_upgrade.yml
tags:
- upgrade
- name: Create kubernetes directories - name: Create kubernetes directories
file: file:
path: "{{ item }}" path: "{{ item }}"
......
--- ---
- name: "Pre-upgrade | check if old credential dir exists" - name: "Pre-upgrade | check if old credential dir exists"
stat: local_action:
module: stat
path: "{{ inventory_dir }}/../credentials" path: "{{ inventory_dir }}/../credentials"
register: old_credential_dir register: old_credential_dir
delegate_to: localhost become: no
- name: "Pre-upgrade | check if new credential dir exists" - name: "Pre-upgrade | check if new credential dir exists"
stat: local_action:
module: stat
path: "{{ inventory_dir }}/credentials" path: "{{ inventory_dir }}/credentials"
register: new_credential_dir register: new_credential_dir
delegate_to: localhost become: no
when: old_credential_dir.stat.exists when: old_credential_dir.stat.exists
- name: "Pre-upgrade | move data from old credential dir to new" - name: "Pre-upgrade | move data from old credential dir to new"
command: mv {{ inventory_dir }}/../credentials {{ inventory_dir }}/credentials local_action: command mv {{ inventory_dir }}/../credentials {{ inventory_dir }}/credentials
args: args:
creates: "{{ inventory_dir }}/credentials" creates: "{{ inventory_dir }}/credentials"
become: no
when: old_credential_dir.stat.exists and not new_credential_dir.stat.exists when: old_credential_dir.stat.exists and not new_credential_dir.stat.exists
delegate_to: localhost
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment