config.yml 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  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. - name: Enable IP Forwarding
  12. sysctl:
  13. name: net.ipv4.ip_forward
  14. value: 1
  15. sysctl_file: "/etc/sysctl.d/99-openshift.conf"
  16. reload: yes
  17. - name: Setting sebool container_manage_cgroup
  18. seboolean:
  19. name: container_manage_cgroup
  20. state: yes
  21. persistent: yes
  22. - name: Create temp directory
  23. tempfile:
  24. state: directory
  25. register: temp_dir
  26. - name: Wait for bootstrap endpoint to show up
  27. uri:
  28. url: "{{ openshift_node_bootstrap_endpoint }}"
  29. validate_certs: false
  30. delay: 10
  31. retries: 60
  32. register: result
  33. until:
  34. - "'status' in result"
  35. - result.status == 200
  36. - name: Fetch bootstrap ignition file locally
  37. uri:
  38. url: "{{ openshift_node_bootstrap_endpoint }}"
  39. dest: "{{ temp_dir.path }}/bootstrap.ign"
  40. validate_certs: false
  41. - name: Get cluster pull-secret
  42. command: >
  43. oc get secret pull-secret
  44. --config={{ openshift_node_kubeconfig_path }}
  45. --namespace=openshift-config
  46. --output=jsonpath='{.data.\.dockerconfigjson}'
  47. delegate_to: localhost
  48. register: oc_get
  49. until:
  50. - oc_get.stdout != ''
  51. retries: 36
  52. delay: 5
  53. - name: Write pull-secret to file
  54. copy:
  55. content: "{{ oc_get.stdout | b64decode }}"
  56. dest: "{{ temp_dir.path }}/pull-secret.json"
  57. - name: Get cluster release image
  58. command: >
  59. oc get clusterversion
  60. --config={{ openshift_node_kubeconfig_path }}
  61. --output=jsonpath='{.items[0].status.desired.image}'
  62. delegate_to: localhost
  63. register: oc_get
  64. until:
  65. - oc_get.stdout != ''
  66. retries: 36
  67. delay: 5
  68. - name: Set l_release_image fact
  69. set_fact:
  70. l_release_image: "{{ oc_get.stdout }}"
  71. - name: Pull release image
  72. command: "podman pull --tls-verify={{ openshift_node_tls_verify }} --authfile {{ temp_dir.path }}/pull-secret.json {{ l_release_image }}"
  73. - name: Get machine controller daemon image from release image
  74. command: "podman run --rm {{ l_release_image }} image machine-config-daemon"
  75. register: release_image_mcd
  76. - block:
  77. - name: Pull MCD image
  78. command: "podman pull --tls-verify={{ openshift_node_tls_verify }} --authfile {{ temp_dir.path }}/pull-secret.json {{ release_image_mcd.stdout }}"
  79. - name: Apply ignition manifest
  80. command: "podman run {{ podman_mounts }} {{ podman_flags }} {{ mcd_command }}"
  81. vars:
  82. podman_flags: "--privileged --rm -ti {{ release_image_mcd.stdout }}"
  83. podman_mounts: "-v /:/rootfs -v /var/run/dbus:/var/run/dbus -v /run/systemd:/run/systemd"
  84. mcd_command: "start --node-name {{ ansible_hostname }} --once-from {{ temp_dir.path }}/bootstrap.ign --skip-reboot"
  85. - name: Remove temp directory
  86. file:
  87. path: "{{ temp_dir.path }}"
  88. state: absent
  89. - name: Reboot the host and wait for it to come back
  90. reboot:
  91. # reboot_timeout: 600 # default, 10 minutes
  92. rescue:
  93. - fail:
  94. msg: "Ignition apply failed"