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 f6af9b5Copy full SHA for f6af9b5
ansible/run.yml
@@ -56,6 +56,18 @@
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
+ check_mode: true
65
+
66
+ - name: Ensure Contour CRDs
67
+ kubernetes.core.k8s:
68
+ definition: "{{ lookup('file', '/tmp/ansible_zuul_countour.yaml') | from_yaml_all }}"
69
+ state: present
70
71
- name: Ensure Gateway API CRDs
72
kubernetes.core.k8s:
73
0 commit comments