|
@@ -12,6 +12,8 @@
|
|
|
|
|
|
- name: Evaluate additional groups for upgrade
|
|
- name: Evaluate additional groups for upgrade
|
|
hosts: localhost
|
|
hosts: localhost
|
|
|
|
+ connection: local
|
|
|
|
+ become: no
|
|
tasks:
|
|
tasks:
|
|
- name: Evaluate etcd_hosts_to_backup
|
|
- name: Evaluate etcd_hosts_to_backup
|
|
add_host:
|
|
add_host:
|
|
@@ -87,6 +89,8 @@
|
|
##############################################################################
|
|
##############################################################################
|
|
- name: Gate on pre-upgrade checks
|
|
- name: Gate on pre-upgrade checks
|
|
hosts: localhost
|
|
hosts: localhost
|
|
|
|
+ connection: local
|
|
|
|
+ become: no
|
|
vars:
|
|
vars:
|
|
pre_upgrade_hosts: "{{ groups.oo_masters_to_config | union(groups.oo_nodes_to_config) }}"
|
|
pre_upgrade_hosts: "{{ groups.oo_masters_to_config | union(groups.oo_nodes_to_config) }}"
|
|
tasks:
|
|
tasks:
|
|
@@ -171,6 +175,8 @@
|
|
##############################################################################
|
|
##############################################################################
|
|
- name: Gate on etcd backup
|
|
- name: Gate on etcd backup
|
|
hosts: localhost
|
|
hosts: localhost
|
|
|
|
+ connection: local
|
|
|
|
+ become: no
|
|
tasks:
|
|
tasks:
|
|
- set_fact:
|
|
- set_fact:
|
|
etcd_backup_completed: "{{ hostvars
|
|
etcd_backup_completed: "{{ hostvars
|
|
@@ -189,6 +195,8 @@
|
|
###############################################################################
|
|
###############################################################################
|
|
- name: Create temp directory for syncing certs
|
|
- name: Create temp directory for syncing certs
|
|
hosts: localhost
|
|
hosts: localhost
|
|
|
|
+ connection: local
|
|
|
|
+ become: no
|
|
gather_facts: no
|
|
gather_facts: no
|
|
tasks:
|
|
tasks:
|
|
- name: Create local temp directory for syncing certs
|
|
- name: Create local temp directory for syncing certs
|
|
@@ -339,6 +347,8 @@
|
|
|
|
|
|
- name: Delete temporary directory on localhost
|
|
- name: Delete temporary directory on localhost
|
|
hosts: localhost
|
|
hosts: localhost
|
|
|
|
+ connection: local
|
|
|
|
+ become: no
|
|
gather_facts: no
|
|
gather_facts: no
|
|
tasks:
|
|
tasks:
|
|
- file: name={{ g_master_mktemp.stdout }} state=absent
|
|
- file: name={{ g_master_mktemp.stdout }} state=absent
|
|
@@ -357,6 +367,8 @@
|
|
##############################################################################
|
|
##############################################################################
|
|
- name: Gate on master update
|
|
- name: Gate on master update
|
|
hosts: localhost
|
|
hosts: localhost
|
|
|
|
+ connection: local
|
|
|
|
+ become: no
|
|
tasks:
|
|
tasks:
|
|
- set_fact:
|
|
- set_fact:
|
|
master_update_completed: "{{ hostvars
|
|
master_update_completed: "{{ hostvars
|
|
@@ -397,6 +409,8 @@
|
|
##############################################################################
|
|
##############################################################################
|
|
- name: Gate on nodes update
|
|
- name: Gate on nodes update
|
|
hosts: localhost
|
|
hosts: localhost
|
|
|
|
+ connection: local
|
|
|
|
+ become: no
|
|
tasks:
|
|
tasks:
|
|
- set_fact:
|
|
- set_fact:
|
|
node_update_completed: "{{ hostvars
|
|
node_update_completed: "{{ hostvars
|
|
@@ -464,6 +478,8 @@
|
|
##############################################################################
|
|
##############################################################################
|
|
- name: Gate on reconcile
|
|
- name: Gate on reconcile
|
|
hosts: localhost
|
|
hosts: localhost
|
|
|
|
+ connection: local
|
|
|
|
+ become: no
|
|
tasks:
|
|
tasks:
|
|
- set_fact:
|
|
- set_fact:
|
|
reconcile_completed: "{{ hostvars
|
|
reconcile_completed: "{{ hostvars
|