1234567891011121314151617181920212223242526272829303132333435 |
- ---
- - name: Copy initial heketi resource files
- copy:
- src: "{{ openshift.common.examples_content_version }}/{{ item }}"
- dest: "{{ mktemp.stdout }}/{{ item }}"
- with_items:
- - "deploy-heketi-template.yml"
- - name: Create deploy-heketi template
- oc_obj:
- namespace: "{{ glusterfs_namespace }}"
- kind: template
- name: "deploy-heketi"
- state: present
- files:
- - "{{ mktemp.stdout }}/deploy-heketi-template.yml"
- - name: Deploy deploy-heketi pod
- oc_process:
- namespace: "{{ glusterfs_namespace }}"
- template_name: "deploy-heketi"
- create: True
- params:
- IMAGE_NAME: "{{ glusterfs_heketi_image }}"
- IMAGE_VERSION: "{{ glusterfs_heketi_version }}"
- HEKETI_ROUTE: "{{ glusterfs_heketi_url | default(['heketi-',glusterfs_name]|join) }}"
- HEKETI_USER_KEY: "{{ glusterfs_heketi_user_key }}"
- HEKETI_ADMIN_KEY: "{{ glusterfs_heketi_admin_key }}"
- HEKETI_EXECUTOR: "{{ glusterfs_heketi_executor }}"
- HEKETI_KUBE_NAMESPACE: "{{ glusterfs_namespace }}"
- CLUSTER_NAME: "{{ glusterfs_name }}"
- - name: Set heketi Deployed fact
- set_fact:
- glusterfs_heketi_deploy_is_missing: False
|