apply_machine_config.yml 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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: Copy pull secret
  38. copy:
  39. src: "{{ openshift_pull_secret_path }}"
  40. dest: "{{ temp_dir.path }}/pull-secret.json"
  41. - name: Get release image
  42. command: >
  43. oc get clusterversion
  44. --config={{ openshift_node_kubeconfig_path }}
  45. --output=jsonpath='{.items[0].status.desired.image}'
  46. delegate_to: localhost
  47. register: oc_get
  48. until:
  49. - oc_get.stdout is defined
  50. - oc_get.stdout != ''
  51. retries: 36
  52. delay: 5
  53. - name: Set openshift_release_image fact
  54. set_fact:
  55. openshift_release_image: "{{ oc_get.stdout }}"
  56. - name: Pull release image
  57. command: "podman pull --tls-verify={{ openshift_node_tls_verify }} --authfile {{ temp_dir.path }}/pull-secret.json {{ openshift_release_image }}"
  58. - name: Get machine controller daemon image from release image
  59. command: "podman run --rm {{ openshift_release_image }} image machine-config-daemon"
  60. register: release_image_mcd
  61. - block:
  62. - name: Pull MCD image
  63. command: "podman pull --tls-verify={{ openshift_node_tls_verify }} --authfile {{ temp_dir.path }}/pull-secret.json {{ release_image_mcd.stdout }}"
  64. - name: Apply machine config
  65. command: "podman run {{ podman_mounts }} {{ podman_flags }} {{ mcd_command }}"
  66. vars:
  67. podman_flags: "--privileged --rm -ti {{ release_image_mcd.stdout }}"
  68. podman_mounts: "-v /:/rootfs -v /var/run/dbus:/var/run/dbus -v /run/systemd:/run/systemd"
  69. mcd_command: "start --node-name {{ ansible_hostname }} --once-from {{ temp_dir.path }}/worker_ignition_config.json --skip-reboot"
  70. - name: Remove temp directory
  71. file:
  72. path: "{{ temp_dir.path }}"
  73. state: absent
  74. - name: Reboot the host and wait for it to come back
  75. reboot:
  76. # reboot_timeout: 600 # default, 10 minutes
  77. rescue:
  78. - fail:
  79. msg: "Machine config apply failed"