config.yml 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  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. - result.status is defined
  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 is defined
  53. - oc_get.stdout != ''
  54. retries: 36
  55. delay: 5
  56. - name: Set openshift_release_image fact
  57. set_fact:
  58. openshift_release_image: "{{ oc_get.stdout }}"
  59. - name: Pull release image
  60. command: "podman pull --tls-verify={{ openshift_node_tls_verify }} --authfile {{ tempfile.path }}/pull-secret.json {{ openshift_release_image }}"
  61. - name: Get machine controller daemon image from release image
  62. command: "podman run --rm {{ openshift_release_image }} image machine-config-daemon"
  63. register: release_image_mcd
  64. - block:
  65. - name: Pull MCD image
  66. command: "podman pull --tls-verify={{ openshift_node_tls_verify }} --authfile {{ tempfile.path }}/pull-secret.json {{ release_image_mcd.stdout }}"
  67. - name: Apply ignition manifest
  68. command: "podman run {{ podman_mounts }} {{ podman_flags }} {{ mcd_command }}"
  69. vars:
  70. podman_flags: "--privileged --rm -ti {{ release_image_mcd.stdout }}"
  71. podman_mounts: "-v /:/rootfs -v /var/run/dbus:/var/run/dbus -v /run/systemd:/run/systemd"
  72. mcd_command: "start --node-name {{ ansible_hostname }} --once-from {{ tempfile.path }}/bootstrap.ign --skip-reboot"
  73. - name: Reboot the host and wait for it to come back
  74. reboot:
  75. # reboot_timeout: 600 # default, 10 minutes
  76. rescue:
  77. - fail:
  78. msg: "Ignition apply failed"