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

@ -2,10 +2,10 @@
- name: calico setup
block:
- name: Include vars
include_vars: "calico-files.yaml"
ansible.builtin.include_vars: "calico-files.yaml"
- name: calico install
k8s:
kubernetes.core.k8s:
state: present
context: "{{ my_context }}"
merge_type: merge
@ -15,7 +15,7 @@
register: calico_changed
- name: delete pods calicoctl
k8s:
kubernetes.core.k8s:
state: absent
context: "{{ my_context }}"
kind: Pod
@ -25,10 +25,10 @@
# - calico_changed is changed
#
# - name: calicoctl install
# k8s:
# kubernetes.core.k8s:
# state: present
# context: "{{ my_context }}"
# apply: yes
# apply: true
# resource_definition: "{{ lookup('file', item) | from_yaml }}"
# with_items:
# - "{{ calicoctl_files }}"