resolve merge conflict
This commit is contained in:
commit
5eb52e7adb
@ -41,6 +41,7 @@
|
|||||||
# roles:
|
# roles:
|
||||||
# - k8s_ingress_controller
|
# - k8s_ingress_controller
|
||||||
|
|
||||||
|
|
||||||
# - name: configure cert manager
|
# - name: configure cert manager
|
||||||
# hosts: localhost
|
# hosts: localhost
|
||||||
# gather_facts: false
|
# gather_facts: false
|
||||||
@ -48,3 +49,4 @@
|
|||||||
# roles:
|
# roles:
|
||||||
# - k8s_cert_manager
|
# - k8s_cert_manager
|
||||||
|
|
||||||
|
|
||||||
|
@ -34,3 +34,4 @@
|
|||||||
src: "{{ ansible_search_path[0] }}/files/cert-manager-issuer-acme-{{ item.provider }}-{{ item.environment }}.yaml"
|
src: "{{ ansible_search_path[0] }}/files/cert-manager-issuer-acme-{{ item.provider }}-{{ item.environment }}.yaml"
|
||||||
with_items:
|
with_items:
|
||||||
"{{ cert_manager_acme_providers }}"
|
"{{ cert_manager_acme_providers }}"
|
||||||
|
|
||||||
|
@ -2,8 +2,10 @@
|
|||||||
- name: download the ingress controller manifest
|
- name: download the ingress controller manifest
|
||||||
ansible.builtin.uri:
|
ansible.builtin.uri:
|
||||||
url: https://raw.githubusercontent.com/kubernetes/ingress-nginx/controller-v{{ ingress_controller_version | string }}/deploy/static/provider/cloud/deploy.yaml
|
url: https://raw.githubusercontent.com/kubernetes/ingress-nginx/controller-v{{ ingress_controller_version | string }}/deploy/static/provider/cloud/deploy.yaml
|
||||||
|
|
||||||
dest: "{{ ansible_search_path[0] }}/files/ingress_controller_v{{ ingress_controller_version }}.yaml"
|
dest: "{{ ansible_search_path[0] }}/files/ingress_controller_v{{ ingress_controller_version }}.yaml"
|
||||||
creates: "{{ ansible_search_path[0] }}/files/ingress_controller_v{{ ingress_controller_version }}.yaml"
|
creates: "{{ ansible_search_path[0] }}/files/ingress_controller_v{{ ingress_controller_version }}.yaml"
|
||||||
|
|
||||||
mode: 0664
|
mode: 0664
|
||||||
|
|
||||||
- name: install ingress controller manifest to cluster
|
- name: install ingress controller manifest to cluster
|
||||||
|
Loading…
Reference in New Issue
Block a user