1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- ---
- - name: Perform OpenShift ServiceAccount config
- include_tasks: serviceaccount.yaml
- run_once: true
- - name: Create kuryr manifests tempdir
- command: mktemp -d
- register: manifests_tmpdir
- - name: Create kuryr ConfigMap manifest
- become: yes
- template:
- src: configmap.yaml.j2
- dest: "{{ manifests_tmpdir.stdout }}/configmap.yaml"
- - name: Create kuryr-controller Deployment manifest
- become: yes
- template:
- src: controller-deployment.yaml.j2
- dest: "{{ manifests_tmpdir.stdout }}/controller-deployment.yaml"
- - name: Create kuryr-cni DaemonSet manifest
- become: yes
- template:
- src: cni-daemonset.yaml.j2
- dest: "{{ manifests_tmpdir.stdout }}/cni-daemonset.yaml"
- - name: Apply ConfigMap manifest
- oc_obj:
- state: present
- kind: ConfigMap
- name: "kuryr-config"
- namespace: "{{ kuryr_namespace }}"
- files:
- - "{{ manifests_tmpdir.stdout }}/configmap.yaml"
- run_once: true
- - name: Apply Controller Deployment manifest
- oc_obj:
- state: present
- kind: Deployment
- name: "kuryr-controller"
- namespace: "{{ kuryr_namespace }}"
- files:
- - "{{ manifests_tmpdir.stdout }}/controller-deployment.yaml"
- run_once: true
- - name: Apply kuryr-cni DaemonSet manifest
- oc_obj:
- state: present
- kind: DaemonSet
- name: "kuryr-cni-ds"
- namespace: "{{ kuryr_namespace }}"
- files:
- - "{{ manifests_tmpdir.stdout }}/cni-daemonset.yaml"
- run_once: true
|