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.
1 parent 62fee1f commit c728a24Copy full SHA for c728a24
ansible/run.yml
@@ -56,6 +56,17 @@
56
namespace: "zuul"
57
state: present
58
59
+ - name: Download Contour CRDs
60
+ ansible.builtin.get_url:
61
+ url: https://projectcontour.io/quickstart/contour.yaml
62
+ dest: /tmp/ansible_zuul_contour.yaml
63
+ mode: '0664'
64
+
65
+ - name: Ensure Contour CRDs
66
+ kubernetes.core.k8s:
67
+ definition: "{{ lookup('file', '/tmp/ansible_zuul_countour.yaml') | from_yaml_all }}"
68
+ state: present
69
70
- name: Ensure Gateway API CRDs
71
kubernetes.core.k8s:
72
0 commit comments