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

This commit is contained in:
Adrien Reslinger 2022-07-23 01:24:37 +02:00
parent 69706cd20e
commit e10bb28442
Signed by: adrien
GPG key ID: DA7B27055C66D6DE
3 changed files with 73 additions and 73 deletions

View file

@ -2,9 +2,9 @@
- name: Weave Net setup
block:
- name: Include Weave Net vars
include_vars: net-files.yaml
ansible.builtin.include_vars: net-files.yaml
- name: Weave Net files
k8s:
kubernetes.core.k8s:
state: present
context: "{{ my_context }}"
merge_type: merge
@ -12,7 +12,7 @@
with_items:
- "{{ weave_net_files }}"
- name: Weave Net password
k8s:
kubernetes.core.k8s:
state: present
context: "{{ my_context }}"
merge_type: merge
@ -29,7 +29,7 @@
- name: Weave Scope setup
block:
- name: namespace
k8s:
kubernetes.core.k8s:
context: "{{ my_context }}"
state: present
name: weave
@ -37,7 +37,7 @@
kind: Namespace
- name: Create a Secret object for basic authentification (traefik 1.7)
k8s:
kubernetes.core.k8s:
state: present
context: "{{ my_context }}"
definition:
@ -54,7 +54,7 @@
- traefik_version is not defined or traefik_version | regex_search('(^1.)')
- name: Remove a Secret object for basic authentification (traefik 1.7)
k8s:
kubernetes.core.k8s:
state: absent
context: "{{ my_context }}"
definition:
@ -71,7 +71,7 @@
- traefik_version | regex_search('(^2.)')
- name: Remove old existing Ingress object
k8s:
kubernetes.core.k8s:
context: "{{ my_context }}"
state: absent
api_version: extensions/v1beta1
@ -84,7 +84,7 @@
# file found https://github.com/weaveworks/scope/tree/master/examples/k8s/
- name: Weave Scope files
k8s:
kubernetes.core.k8s:
state: "present"
context: "{{ my_context }}"
namespace: 'weave'