Fix lint errors
Some checks reported errors
continuous-integration/drone/push Build encountered an error
Some checks reported errors
continuous-integration/drone/push Build encountered an error
This commit is contained in:
parent
11d4f5396d
commit
bdb51bda99
2 changed files with 34 additions and 34 deletions
|
|
@ -1,39 +1,39 @@
|
|||
---
|
||||
- name: calico setup
|
||||
block:
|
||||
- name: Include vars
|
||||
include_vars: "calico-files.yaml"
|
||||
- name: Include vars
|
||||
ansible.builtin.include_vars: "calico-files.yaml"
|
||||
|
||||
- name: calico install
|
||||
k8s:
|
||||
state: present
|
||||
context: "{{ my_context }}"
|
||||
merge_type: merge
|
||||
resource_definition: "{{ lookup('template', item) | from_yaml }}"
|
||||
with_items:
|
||||
- "{{ calico_files }}"
|
||||
register: calico_changed
|
||||
- name: calico install
|
||||
kubernetes.core.k8s:
|
||||
state: present
|
||||
context: "{{ my_context }}"
|
||||
merge_type: merge
|
||||
resource_definition: "{{ lookup('template', item) | from_yaml }}"
|
||||
with_items:
|
||||
- "{{ calico_files }}"
|
||||
register: calico_changed
|
||||
|
||||
- name: delete pods calicoctl
|
||||
k8s:
|
||||
state: absent
|
||||
context: "{{ my_context }}"
|
||||
kind: Pod
|
||||
name: calicoctl
|
||||
namespace: kube-system
|
||||
# when:
|
||||
# - calico_changed is changed
|
||||
#
|
||||
# - name: calicoctl install
|
||||
# k8s:
|
||||
# state: present
|
||||
# context: "{{ my_context }}"
|
||||
# apply: yes
|
||||
# resource_definition: "{{ lookup('file', item) | from_yaml }}"
|
||||
# with_items:
|
||||
# - "{{ calicoctl_files }}"
|
||||
# when:
|
||||
# - calico_changed is changed
|
||||
- name: delete pods calicoctl
|
||||
kubernetes.core.k8s:
|
||||
state: absent
|
||||
context: "{{ my_context }}"
|
||||
kind: Pod
|
||||
name: calicoctl
|
||||
namespace: kube-system
|
||||
# when:
|
||||
# - calico_changed is changed
|
||||
#
|
||||
# - name: calicoctl install
|
||||
# kubernetes.core.k8s:
|
||||
# state: present
|
||||
# context: "{{ my_context }}"
|
||||
# apply: true
|
||||
# resource_definition: "{{ lookup('file', item) | from_yaml }}"
|
||||
# with_items:
|
||||
# - "{{ calicoctl_files }}"
|
||||
# when:
|
||||
# - calico_changed is changed
|
||||
|
||||
|
||||
when:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue