config.yml 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. ---
  2. #### Disable SWAP #####
  3. # https://docs.openshift.com/container-platform/3.4/admin_guide/overcommit.html#disabling-swap-memory
  4. # swapoff is a custom module that comments out swap entries in
  5. # /etc/fstab and runs swapoff -a, if necessary.
  6. - name: Disable swap
  7. swapoff: {}
  8. # The atomic-openshift-node service will set this parameter on
  9. # startup, but if the network service is restarted this setting is
  10. # lost. Reference: https://bugzilla.redhat.com/show_bug.cgi?id=1372388
  11. - sysctl:
  12. name: net.ipv4.ip_forward
  13. value: 1
  14. sysctl_file: "/etc/sysctl.d/99-openshift.conf"
  15. reload: yes
  16. - name: Setting sebool container_manage_cgroup
  17. seboolean:
  18. name: container_manage_cgroup
  19. state: yes
  20. persistent: yes
  21. - name: create temp directory
  22. tempfile:
  23. state: directory
  24. register: tempfile
  25. - name: Wait for bootstrap endpoint to show up
  26. uri:
  27. url: "{{ openshift_node_bootstrap_endpoint }}"
  28. validate_certs: false
  29. delay: 10
  30. retries: 60
  31. register: result
  32. until:
  33. - "'status' in result"
  34. - result.status == 200
  35. - name: Fetch bootstrap ignition file locally
  36. uri:
  37. url: "{{ openshift_node_bootstrap_endpoint }}"
  38. dest: "{{ tempfile.path }}/bootstrap.ign"
  39. validate_certs: false
  40. - name: Copy pull secret in the directory
  41. copy:
  42. src: "{{ openshift_pull_secret_path }}"
  43. dest: "{{ tempfile.path }}/pull-secret.json"
  44. - name: Get release image
  45. command: >
  46. oc get clusterversion
  47. --config={{ openshift_node_kubeconfig_path }}
  48. --output=jsonpath='{.items[0].status.desired.image}'
  49. delegate_to: localhost
  50. register: oc_get
  51. until:
  52. - oc_get.stdout != ''
  53. retries: 36
  54. delay: 5
  55. - name: Set openshift_release_image fact
  56. set_fact:
  57. openshift_release_image: "{{ oc_get.stdout }}"
  58. - name: Pull release image
  59. command: "podman pull --tls-verify={{ openshift_node_tls_verify }} --authfile {{ tempfile.path }}/pull-secret.json {{ openshift_release_image }}"
  60. - name: Get machine controller daemon image from release image
  61. command: "podman run --rm {{ openshift_release_image }} image machine-config-daemon"
  62. register: release_image_mcd
  63. - block:
  64. - name: Pull MCD image
  65. command: "podman pull --tls-verify={{ openshift_node_tls_verify }} --authfile {{ tempfile.path }}/pull-secret.json {{ release_image_mcd.stdout }}"
  66. - name: Apply ignition manifest
  67. command: "podman run {{ podman_mounts }} {{ podman_flags }} {{ mcd_command }}"
  68. vars:
  69. podman_flags: "--privileged --rm -ti {{ release_image_mcd.stdout }}"
  70. podman_mounts: "-v /:/rootfs -v /var/run/dbus:/var/run/dbus -v /run/systemd:/run/systemd"
  71. mcd_command: "start --node-name {{ ansible_hostname }} --once-from {{ tempfile.path }}/bootstrap.ign --skip-reboot"
  72. - name: Reboot the host and wait for it to come back
  73. reboot:
  74. # reboot_timeout: 600 # default, 10 minutes
  75. rescue:
  76. - fail:
  77. msg: "Ignition apply failed"