infrastructure/k8s/roles/gateway-api/tasks/main.yml

13 lines
302 B
YAML
Raw Normal View History

2022-12-28 17:37:48 +00:00
---
- name: Deploy Gatway API CRDs
kubernetes.core.k8s:
state: present
definition: "{{ lookup('file', item) | from_yaml }}"
loop:
- gatewayclasses.yaml
- gateways.yaml
- httproutes.yaml
- referencepolicies.yaml
- tcproutes.yaml
- tlsroutes.yaml
- udproutes.yaml