Bläddra i källkod

Bug 1741432: openshift-node to approve node CSRs

This change approves the node's bootstrap csr to enable it to
join the cluster. This is required in cases where a node is
being added to the cluster which was not deployed by the cluster.
Jeremiah Stuever 5 år sedan
förälder
incheckning
112762bd9f
1 ändrade filer med 51 tillägg och 0 borttagningar
  1. 51 0
      roles/openshift_node/tasks/config.yml

+ 51 - 0
roles/openshift_node/tasks/config.yml

@@ -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 }}