Fix lint errors
Some checks reported errors
continuous-integration/drone/push Build encountered an error

This commit is contained in:
Adrien Reslinger 2022-07-22 22:08:15 +02:00
parent 11d4f5396d
commit bdb51bda99
Signed by: adrien
GPG key ID: DA7B27055C66D6DE
2 changed files with 34 additions and 34 deletions

View file

@ -6,6 +6,6 @@ galaxy_info:
galaxy_tags: []
license: GPL2
platforms:
- name: kubernetes
version:
- all
- name: kubernetes
version:
- all

View file

@ -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: 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
# 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: 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: