diff options
author | Tim Bielawa <timbielawa@gmail.com> | 2016-12-19 09:15:52 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-19 09:15:52 -0800 |
commit | 735229cee3fb1af5f0c67717554d419f5201686c (patch) | |
tree | 1b611657db8810f465c853fff9897e5417ee11e2 /playbooks/common/openshift-cluster/redeploy-certificates.yml | |
parent | b8109cdf7e909eb6a255c795a99b078b850f49f0 (diff) | |
parent | 96df370b8208d0a90dac7e38857dbcdce52fd161 (diff) | |
download | openshift-735229cee3fb1af5f0c67717554d419f5201686c.tar.gz openshift-735229cee3fb1af5f0c67717554d419f5201686c.tar.bz2 openshift-735229cee3fb1af5f0c67717554d419f5201686c.tar.xz openshift-735229cee3fb1af5f0c67717554d419f5201686c.zip |
Merge pull request #2986 from tbielawa/deprecate_node_evacuation
Deprecate node 'evacuation' with 'drain'
Diffstat (limited to 'playbooks/common/openshift-cluster/redeploy-certificates.yml')
-rw-r--r-- | playbooks/common/openshift-cluster/redeploy-certificates.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/playbooks/common/openshift-cluster/redeploy-certificates.yml b/playbooks/common/openshift-cluster/redeploy-certificates.yml index 5f008a045..5fc81bf3a 100644 --- a/playbooks/common/openshift-cluster/redeploy-certificates.yml +++ b/playbooks/common/openshift-cluster/redeploy-certificates.yml @@ -204,7 +204,7 @@ cp {{ openshift.common.config_base }}/master//admin.kubeconfig {{ mktemp.stdout }}/admin.kubeconfig changed_when: False -- name: Serially evacuate all nodes to trigger redeployments +- name: Serially drain all nodes to trigger redeployments hosts: oo_nodes_to_config serial: 1 any_errors_fatal: true @@ -222,7 +222,7 @@ was_schedulable: "{{ 'unschedulable' not in (node_output.stdout | from_json).spec }}" when: openshift_certificates_redeploy_ca | default(false) | bool - - name: Prepare for node evacuation + - name: Prepare for node draining command: > {{ openshift.common.client_binary }} adm --config={{ hostvars[groups.oo_first_master.0].mktemp.stdout }}/admin.kubeconfig manage-node {{ openshift.node.nodename }} @@ -230,11 +230,11 @@ delegate_to: "{{ groups.oo_first_master.0 }}" when: openshift_certificates_redeploy_ca | default(false) | bool and was_schedulable | bool - - name: Evacuate node + - name: Drain node command: > {{ openshift.common.client_binary }} adm --config={{ hostvars[groups.oo_first_master.0].mktemp.stdout }}/admin.kubeconfig manage-node {{ openshift.node.nodename }} - --evacuate --force + --drain --force delegate_to: "{{ groups.oo_first_master.0 }}" when: openshift_certificates_redeploy_ca | default(false) | bool and was_schedulable | bool |