AnsibleK3S/roles/ingress/tasks/main.yml

12 lines
363 B
YAML
Raw Normal View History

2024-11-27 22:24:24 +05:00
---
- name: Get Nginx Ingress manifest
get_url:
url: "https://raw.githubusercontent.com/kubernetes/ingress-nginx/controller-{{ ingress_controller_version }}/deploy/static/provider/baremetal/deploy.yaml"
dest: /tmp/nginx_ingress.yml
- name: Deplroy Nginx Ingress
kubernetes.core.k8s:
src: /tmp/nginx_ingress.yml
wait: false
state: present