Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions ansible/inventory/group_vars/all/gateway-api
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
zuul_operator_gateway_api_crd_url: "https://github.com/kubernetes-sigs/gateway-api/releases/download/v1.3.0/standard-install.yaml"
zuul_operator_contour_crd_url: "https://projectcontour.io/quickstart/contour.yaml"
zuul_operator_gateway_api_gateways:
- name: zuul-web-gateway
spec:
Expand Down
21 changes: 1 addition & 20 deletions ansible/run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,20 +56,6 @@
namespace: "zuul"
state: present

- name: Download Contour CRDs
ansible.builtin.get_url:
url: https://projectcontour.io/quickstart/contour.yaml
dest: /tmp/ansible_zuul_contour.yaml
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 @@ -79,12 +65,7 @@

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

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

- name: Ensure Gateway API CRDs
Expand Down