Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add tags: always to all included sevice playbook #7906

Merged
merged 1 commit into from
Aug 25, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions ansible_version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
minimal_ansible_version_2_10: 2.10.11
maximal_ansible_version: 2.11.0
ansible_connection: local
tags: always
tasks:
- name: "Check {{ minimal_ansible_version }} <= Ansible version < {{ maximal_ansible_version }}"
assert:
Expand Down
1 change: 1 addition & 0 deletions facts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
- name: Gather facts
hosts: k8s_cluster:etcd:calico_rr
gather_facts: False
tags: always
tasks:
- name: Gather minimal facts
setup:
Expand Down
5 changes: 5 additions & 0 deletions legacy_groups.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
- name: Add kube-master nodes to kube_control_plane
hosts: kube-master
gather_facts: false
tags: always
tasks:
- name: add nodes to kube_control_plane group
group_by:
Expand All @@ -12,6 +13,7 @@
- name: Add kube-node nodes to kube_node
hosts: kube-node
gather_facts: false
tags: always
tasks:
- name: add nodes to kube_node group
group_by:
Expand All @@ -20,6 +22,7 @@
- name: Add k8s-cluster nodes to k8s_cluster
hosts: k8s-cluster
gather_facts: false
tags: always
tasks:
- name: add nodes to k8s_cluster group
group_by:
Expand All @@ -28,6 +31,7 @@
- name: Add calico-rr nodes to calico_rr
hosts: calico-rr
gather_facts: false
tags: always
tasks:
- name: add nodes to calico_rr group
group_by:
Expand All @@ -36,6 +40,7 @@
- name: Add no-floating nodes to no_floating
hosts: no-floating
gather_facts: false
tags: always
tasks:
- name: add nodes to no-floating group
group_by:
Expand Down