apply_machine_config.yml 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. ---
  2. - name: Create temp directory
  3. tempfile:
  4. state: directory
  5. register: temp_dir
  6. - name: Get worker machine config name
  7. command: >
  8. oc get machineconfigpool worker
  9. --config={{ openshift_node_kubeconfig_path }}
  10. --output=jsonpath='{.status.configuration.name}'
  11. delegate_to: localhost
  12. register: oc_get
  13. until:
  14. - oc_get.stdout != ''
  15. retries: 36
  16. delay: 5
  17. - name: Set l_worker_machine_config_name
  18. set_fact:
  19. l_worker_machine_config_name: "{{ oc_get.stdout }}"
  20. - name: Get worker ignition config
  21. command: >
  22. oc get machineconfig {{ l_worker_machine_config_name }}
  23. --config={{ openshift_node_kubeconfig_path }}
  24. --output=json
  25. delegate_to: localhost
  26. register: oc_get
  27. until:
  28. - oc_get.stdout != ''
  29. retries: 36
  30. delay: 5
  31. - name: Write worker ignition config to file
  32. copy:
  33. content: "{{ (oc_get.stdout | from_json).spec.config }}"
  34. dest: "{{ temp_dir.path }}/worker_ignition_config.json"
  35. - name: Get machine-config-daemon image
  36. command: >
  37. oc get daemonset machine-config-daemon
  38. --config={{ openshift_node_kubeconfig_path }}
  39. --namespace=openshift-machine-config-operator
  40. --output=jsonpath='{.spec.template.spec.containers[?(@.name=="machine-config-daemon")].image}'
  41. delegate_to: localhost
  42. register: oc_get
  43. until:
  44. - oc_get.stdout != ''
  45. retries: 36
  46. delay: 5
  47. - name: Set l_mcd_image fact
  48. set_fact:
  49. l_mcd_image: "{{ oc_get.stdout }}"
  50. - name: Apply machine config
  51. command: "podman run {{ podman_mounts }} {{ podman_flags }} {{ mcd_command }}"
  52. vars:
  53. podman_flags: "--privileged --rm -ti {{ l_mcd_image }}"
  54. podman_mounts: "-v /:/rootfs -v /var/run/dbus:/var/run/dbus -v /run/systemd:/run/systemd"
  55. mcd_command: "start --node-name {{ ansible_hostname }} --once-from {{ temp_dir.path }}/worker_ignition_config.json --skip-reboot"
  56. - name: Remove temp directory
  57. file:
  58. path: "{{ temp_dir.path }}"
  59. state: absent
  60. - name: Reboot the host and wait for it to come back
  61. reboot:
  62. # reboot_timeout: 600 # default, 10 minutes