Преглед изворни кода

Merge pull request #11858 from mtnbikenc/fix-1744456

Bug 1744456: Extract registries.conf from bootstrap
OpenShift Merge Robot пре 5 година
родитељ
комит
9b6373c28d
1 измењених фајлова са 25 додато и 0 уклоњено
  1. 25 0
      roles/openshift_node/tasks/config.yml

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

@@ -55,6 +55,31 @@
     url: "{{ openshift_node_bootstrap_endpoint }}"
     dest: "{{ temp_dir.path }}/bootstrap.ign"
     validate_certs: false
+  register: bootstrap_ignition
+
+# registries.conf is listed twice in the config, the second one is the right one
+- name: Extract the last registries.conf file from bootstrap.ign
+  set_fact:
+    registries_conf: >
+      {{
+      bootstrap_ignition.json.storage.files
+      | selectattr('path', 'match', '/etc/containers/registries.conf')
+      | list
+      | last
+      }}
+
+- name: Write /etc/containers/registries.conf
+  copy:
+    content: "{{ registries_conf.contents.source.split(',')[1] | urldecode }}"
+    mode: "{{ '0' ~ registries_conf.mode }}"
+    dest: "{{ registries_conf.path }}"
+  register: update_registries
+
+- name: Restart the CRI-O service
+  systemd:
+    name: "crio"
+    state: restarted
+  when: update_registries is changed
 
 - name: Get cluster pull-secret
   command: >