Skip to content

Commit

Permalink
Add a bunch of ansible-lint skip tags
Browse files Browse the repository at this point in the history
  • Loading branch information
ctrlaltdel committed Jul 12, 2017
1 parent 29f8dc7 commit 19922a8
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions roles/healthcheck/tasks/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,14 @@
retries: 30
delay: 10
until: nodes_status | success
tags:
- skip_ansible_lint

- name: Get event log
command: kubectl get events --all-namespaces
register: events
tags:
- skip_ansible_lint

- name: Display events
debug:
Expand All @@ -16,6 +20,8 @@
- name: Get nodes
command: kubectl get nodes
register: nodes
tags:
- skip_ansible_lint

- name: Display nodes
debug:
Expand All @@ -24,6 +30,8 @@
- name: Get cluster info
command: kubectl cluster-info
register: clusterinfo
tags:
- skip_ansible_lint

- name: Display cluster info
debug:
Expand Down

0 comments on commit 19922a8

Please sign in to comment.