master.yaml 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. ---
  2. - name: Perform OpenShift ServiceAccount config
  3. include_tasks: serviceaccount.yaml
  4. run_once: true
  5. - name: Create kuryr manifests tempdir
  6. command: mktemp -d
  7. register: manifests_tmpdir
  8. - name: Create OpenShift node's ImageStreamTag manifest
  9. become: yes
  10. template:
  11. src: node-images.yaml.j2
  12. dest: "{{ manifests_tmpdir.stdout }}/node-images.yaml"
  13. - name: Set certificate contents as fact
  14. set_fact:
  15. kuryr_ca_certificate: "{{ lookup('file', kuryr_openstack_ca | default(lookup('env', 'OS_CACERT'))) }}"
  16. ignore_errors: yes
  17. - name: Create Kuryr certificates Secret manifest
  18. become: yes
  19. template:
  20. src: certificates-secret.yaml.j2
  21. dest: "{{ manifests_tmpdir.stdout }}/certificates-secret.yaml"
  22. - name: Create kuryr ConfigMap manifest
  23. become: yes
  24. template:
  25. src: configmap.yaml.j2
  26. dest: "{{ manifests_tmpdir.stdout }}/configmap.yaml"
  27. - name: Create kuryr-controller Deployment manifest
  28. become: yes
  29. template:
  30. src: controller-deployment.yaml.j2
  31. dest: "{{ manifests_tmpdir.stdout }}/controller-deployment.yaml"
  32. - name: Create kuryr-cni DaemonSet manifest
  33. become: yes
  34. template:
  35. src: cni-daemonset.yaml.j2
  36. dest: "{{ manifests_tmpdir.stdout }}/cni-daemonset.yaml"
  37. - name: Apply OpenShift node's ImageStreamTag manifest
  38. oc_obj:
  39. state: present
  40. kind: ImageStreamTag
  41. name: "node:v3.11"
  42. namespace: "{{ kuryr_namespace }}"
  43. files:
  44. - "{{ manifests_tmpdir.stdout }}/node-images.yaml"
  45. run_once: true
  46. ignore_errors: yes
  47. - name: Apply Kuryr certificates Secret
  48. oc_obj:
  49. state: present
  50. kind: Secret
  51. name: "kuryr-certificates"
  52. namespace: "{{ kuryr_namespace }}"
  53. files:
  54. - "{{ manifests_tmpdir.stdout }}/certificates-secret.yaml"
  55. run_once: true
  56. - name: Apply ConfigMap manifest
  57. oc_obj:
  58. state: present
  59. kind: ConfigMap
  60. name: "kuryr-config"
  61. namespace: "{{ kuryr_namespace }}"
  62. files:
  63. - "{{ manifests_tmpdir.stdout }}/configmap.yaml"
  64. run_once: true
  65. - name: Apply Controller Deployment manifest
  66. oc_obj:
  67. state: present
  68. kind: Deployment
  69. name: "kuryr-controller"
  70. namespace: "{{ kuryr_namespace }}"
  71. files:
  72. - "{{ manifests_tmpdir.stdout }}/controller-deployment.yaml"
  73. run_once: true
  74. - name: Apply kuryr-cni DaemonSet manifest
  75. oc_obj:
  76. state: present
  77. kind: DaemonSet
  78. name: "kuryr-cni-ds"
  79. namespace: "{{ kuryr_namespace }}"
  80. files:
  81. - "{{ manifests_tmpdir.stdout }}/cni-daemonset.yaml"
  82. run_once: true