add files
This commit is contained in:
parent
1283a98c9d
commit
33e2774432
11 changed files with 152 additions and 0 deletions
11
roles/ingress/tasks/main.yml
Normal file
11
roles/ingress/tasks/main.yml
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
---
|
||||
- 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue