|
@@ -132,6 +132,57 @@
|
|
|
- fail:
|
|
|
msg: "Ignition apply failed"
|
|
|
|
|
|
+- name: Approve node-bootstrapper CSR
|
|
|
+ shell: >
|
|
|
+ count=0;
|
|
|
+ for csr in `oc --config={{ openshift_node_kubeconfig_path }} get csr --no-headers \
|
|
|
+ | grep " system:serviceaccount:openshift-machine-config-operator:node-bootstrapper " \
|
|
|
+ | cut -d " " -f1`;
|
|
|
+ do
|
|
|
+ oc --config={{ openshift_node_kubeconfig_path }} describe csr/$csr \
|
|
|
+ | grep " system:node:{{ hostvars[item].ansible_nodename | lower }}$";
|
|
|
+ if [ $? -eq 0 ];
|
|
|
+ then
|
|
|
+ oc --config={{ openshift_node_kubeconfig_path }} adm certificate approve ${csr};
|
|
|
+ if [ $? -eq 0 ];
|
|
|
+ then
|
|
|
+ count=$((count+1));
|
|
|
+ fi;
|
|
|
+ fi;
|
|
|
+ done;
|
|
|
+ exit $((!count));
|
|
|
+ loop: "{{ ansible_play_batch }}"
|
|
|
+ delegate_to: localhost
|
|
|
+ run_once: true
|
|
|
+ register: oc_get
|
|
|
+ until:
|
|
|
+ - oc_get is success
|
|
|
+ retries: 6
|
|
|
+ delay: 5
|
|
|
+
|
|
|
+- name: Approve node CSR
|
|
|
+ shell: >
|
|
|
+ count=0;
|
|
|
+ for csr in `oc --config={{ openshift_node_kubeconfig_path }} get csr --no-headers \
|
|
|
+ | grep " system:node:{{ hostvars[item].ansible_nodename | lower }} " \
|
|
|
+ | cut -d " " -f1`;
|
|
|
+ do
|
|
|
+ oc --config={{ openshift_node_kubeconfig_path }} adm certificate approve ${csr};
|
|
|
+ if [ $? -eq 0 ];
|
|
|
+ then
|
|
|
+ count=$((count+1));
|
|
|
+ fi;
|
|
|
+ done;
|
|
|
+ exit $((!count));
|
|
|
+ loop: "{{ ansible_play_batch }}"
|
|
|
+ delegate_to: localhost
|
|
|
+ run_once: true
|
|
|
+ register: oc_get
|
|
|
+ until:
|
|
|
+ - oc_get is success
|
|
|
+ retries: 6
|
|
|
+ delay: 5
|
|
|
+
|
|
|
- name: Wait for nodes to report ready
|
|
|
command: >
|
|
|
oc get node {{ hostvars[item].ansible_nodename | lower }}
|