apply_machine_config.yml 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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: Copy pull secret
  36. copy:
  37. src: "{{ openshift_pull_secret_path }}"
  38. dest: "{{ temp_dir.path }}/pull-secret.json"
  39. - name: Get release image
  40. command: >
  41. oc get clusterversion
  42. --config={{ openshift_node_kubeconfig_path }}
  43. --output=jsonpath='{.items[0].status.desired.image}'
  44. delegate_to: localhost
  45. register: oc_get
  46. until:
  47. - oc_get.stdout != ''
  48. retries: 36
  49. delay: 5
  50. - name: Set openshift_release_image fact
  51. set_fact:
  52. openshift_release_image: "{{ oc_get.stdout }}"
  53. - name: Pull release image
  54. command: "podman pull --tls-verify={{ openshift_node_tls_verify }} --authfile {{ temp_dir.path }}/pull-secret.json {{ openshift_release_image }}"
  55. - name: Get machine controller daemon image from release image
  56. command: "podman run --rm {{ openshift_release_image }} image machine-config-daemon"
  57. register: release_image_mcd
  58. - block:
  59. - name: Pull MCD image
  60. command: "podman pull --tls-verify={{ openshift_node_tls_verify }} --authfile {{ temp_dir.path }}/pull-secret.json {{ release_image_mcd.stdout }}"
  61. - name: Apply machine config
  62. command: "podman run {{ podman_mounts }} {{ podman_flags }} {{ mcd_command }}"
  63. vars:
  64. podman_flags: "--privileged --rm -ti {{ release_image_mcd.stdout }}"
  65. podman_mounts: "-v /:/rootfs -v /var/run/dbus:/var/run/dbus -v /run/systemd:/run/systemd"
  66. mcd_command: "start --node-name {{ ansible_hostname }} --once-from {{ temp_dir.path }}/worker_ignition_config.json --skip-reboot"
  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. rescue:
  75. - fail:
  76. msg: "Machine config apply failed"