Skip to content

Commit fc54e53

Browse files
authored
Merge pull request #14 from stackhpc/helm_istio
Ensure Contour provisioner
2 parents f85ba7e + b5abafd commit fc54e53

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

ansible/run.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,13 @@
6363
mode: '0664'
6464
check_mode: false
6565

66+
- name: Download Contour provisioner CRDs
67+
ansible.builtin.get_url:
68+
url: https://projectcontour.io/quickstart/contour-gateway-provisioner.yaml
69+
dest: /tmp/ansible_zuul_contour_provisioner.yaml
70+
mode: '0664'
71+
check_mode: false
72+
6673
- name: Ensure Contour namespace
6774
kubernetes.core.k8s:
6875
name: projectcontour
@@ -75,6 +82,11 @@
7582
src: /tmp/ansible_zuul_contour.yaml
7683
state: present
7784

85+
- name: Ensure Contour provisioner CRDs
86+
kubernetes.core.k8s:
87+
src: /tmp/ansible_zuul_contour_provisioner.yaml
88+
state: present
89+
7890
- name: Ensure Gateway API CRDs
7991
kubernetes.core.k8s:
8092
namespace: "zuul"

0 commit comments

Comments
 (0)