apply_machine_config.yml 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. ---
  2. - name: Create temp directory
  3. tempfile:
  4. state: directory
  5. register: temp_dir
  6. - name: Get worker machine current config name
  7. command: >
  8. oc get node {{ ansible_nodename | lower }}
  9. --config={{ openshift_node_kubeconfig_path }}
  10. --output=jsonpath='{.metadata.annotations.machineconfiguration\.openshift\.io/desiredConfig}'
  11. delegate_to: localhost
  12. register: oc_get
  13. until:
  14. - oc_get.stdout is defined
  15. - oc_get.stdout != ''
  16. retries: 36
  17. delay: 5
  18. - name: Set l_worker_machine_config_name
  19. set_fact:
  20. l_worker_machine_config_name: "{{ oc_get.stdout }}"
  21. - name: Get worker ignition config
  22. command: >
  23. oc get machineconfig {{ l_worker_machine_config_name }}
  24. --config={{ openshift_node_kubeconfig_path }}
  25. --output=json
  26. delegate_to: localhost
  27. register: oc_get
  28. until:
  29. - oc_get.stdout is defined
  30. - oc_get.stdout != ''
  31. retries: 36
  32. delay: 5
  33. - name: Write worker ignition config to file
  34. copy:
  35. content: "{{ (oc_get.stdout | from_json).spec.config }}"
  36. dest: "{{ temp_dir.path }}/worker_ignition_config.json"
  37. - name: Get machine-config-operator image
  38. command: >
  39. oc get daemonset machine-config-daemon
  40. --config={{ openshift_node_kubeconfig_path }}
  41. --namespace=openshift-machine-config-operator
  42. --output=jsonpath='{.spec.template.spec.containers[?(@.name=="machine-config-daemon")].image}'
  43. delegate_to: localhost
  44. register: oc_get
  45. until:
  46. - oc_get.stdout is defined
  47. - oc_get.stdout != ''
  48. retries: 36
  49. delay: 5
  50. - name: Set l_mcd_image fact
  51. set_fact:
  52. l_mcd_image: "{{ oc_get.stdout }}"
  53. - import_tasks: proxy.yml
  54. - block:
  55. - name: Pull MCD image
  56. command: "podman pull --tls-verify={{ openshift_node_tls_verify }} --authfile /var/lib/kubelet/config.json {{ l_mcd_image }}"
  57. - name: Apply machine config
  58. command: "podman run {{ podman_mounts }} {{ podman_flags }} {{ mcd_command }}"
  59. vars:
  60. podman_flags: "--privileged --rm --entrypoint=/usr/bin/machine-config-daemon -ti {{ l_mcd_image }}"
  61. podman_mounts: "-v /:/rootfs -v /var/run/dbus:/var/run/dbus -v /run/systemd:/run/systemd"
  62. mcd_command: "start --node-name {{ ansible_nodename | lower }} --once-from {{ temp_dir.path }}/worker_ignition_config.json --skip-reboot"
  63. environment:
  64. http_proxy: "{{ http_proxy | default('')}}"
  65. https_proxy: "{{https_proxy | default('')}}"
  66. no_proxy: "{{ no_proxy | default('')}}"
  67. - name: Remove temp directory
  68. file:
  69. path: "{{ temp_dir.path }}"
  70. state: absent
  71. - name: Reboot the host and wait for it to come back
  72. reboot:
  73. # reboot_timeout: 600 # default, 10 minutes
  74. - name: Wait for nodes to report ready
  75. command: >
  76. oc get node {{ ansible_nodename | lower }}
  77. --config={{ openshift_node_kubeconfig_path }}
  78. --output=jsonpath='{.status.conditions[?(@.type=="Ready")].status}'
  79. delegate_to: localhost
  80. run_once: true
  81. register: oc_get
  82. until:
  83. - oc_get.stdout == "True"
  84. retries: 36
  85. delay: 5