Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions ansible/run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,13 @@
mode: '0664'
check_mode: false

- name: Download Contour provisioner CRDs
ansible.builtin.get_url:
url: https://projectcontour.io/quickstart/contour-gateway-provisioner.yaml
dest: /tmp/ansible_zuul_contour_provisioner.yaml
mode: '0664'
check_mode: false

- name: Ensure Contour namespace
kubernetes.core.k8s:
name: projectcontour
Expand All @@ -75,6 +82,11 @@
src: /tmp/ansible_zuul_contour.yaml
state: present

- name: Ensure Contour provisioner CRDs
kubernetes.core.k8s:
src: /tmp/ansible_zuul_contour_provisioner.yaml
state: present

- name: Ensure Gateway API CRDs
kubernetes.core.k8s:
namespace: "zuul"
Expand Down