apply_machine_config.yml 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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 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. - name: Apply machine config
  54. command: "podman run {{ podman_mounts }} {{ podman_flags }} {{ mcd_command }}"
  55. vars:
  56. podman_flags: "--privileged --rm --entrypoint=/usr/bin/machine-config-daemon -ti {{ l_mcd_image }}"
  57. podman_mounts: "-v /:/rootfs -v /var/run/dbus:/var/run/dbus -v /run/systemd:/run/systemd"
  58. mcd_command: "start --node-name {{ ansible_nodename | lower }} --once-from {{ temp_dir.path }}/worker_ignition_config.json --skip-reboot"
  59. - name: Remove temp directory
  60. file:
  61. path: "{{ temp_dir.path }}"
  62. state: absent
  63. - name: Reboot the host and wait for it to come back
  64. reboot:
  65. # reboot_timeout: 600 # default, 10 minutes
  66. - name: Wait for nodes to report ready
  67. command: >
  68. oc get node {{ ansible_nodename | lower }}
  69. --config={{ openshift_node_kubeconfig_path }}
  70. --output=jsonpath='{.status.conditions[?(@.type=="Ready")].status}'
  71. delegate_to: localhost
  72. run_once: true
  73. register: oc_get
  74. until:
  75. - oc_get.stdout == "True"
  76. retries: 36
  77. delay: 5