Skip to content

Commit f6af9b5

Browse files
committed
CI: Add Contour deployment
1 parent 62fee1f commit f6af9b5

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
@@ -56,6 +56,18 @@
5656
namespace: "zuul"
5757
state: present
5858

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+
5971
- name: Ensure Gateway API CRDs
6072
kubernetes.core.k8s:
6173
namespace: "zuul"

0 commit comments

Comments
 (0)