We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f85ba7e + b5abafd commit fc54e53Copy full SHA for fc54e53
ansible/run.yml
@@ -63,6 +63,13 @@
63
mode: '0664'
64
check_mode: false
65
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
+
73
- name: Ensure Contour namespace
74
kubernetes.core.k8s:
75
name: projectcontour
@@ -75,6 +82,11 @@
82
src: /tmp/ansible_zuul_contour.yaml
76
83
state: present
77
84
85
+ - name: Ensure Contour provisioner CRDs
86
+ kubernetes.core.k8s:
87
+ src: /tmp/ansible_zuul_contour_provisioner.yaml
88
+ state: present
89
78
90
- name: Ensure Gateway API CRDs
79
91
80
92
namespace: "zuul"
0 commit comments