Skip to content

Commit 674c98c

Browse files
committed
add galaxy tag
1 parent ce4fb7d commit 674c98c

File tree

1 file changed

+22
-4
lines changed

1 file changed

+22
-4
lines changed

ansible/validate.yml

Lines changed: 22 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@
55
- name: Validate secrets created
66
hosts: localhost
77
gather_facts: false
8+
tags:
9+
- validate
10+
- passwords
811
tasks:
912
- import_role:
1013
name: passwords
@@ -14,6 +17,9 @@
1417
hosts: localhost
1518
gather_facts: false
1619
become: false
20+
tags:
21+
- validate
22+
- galaxy
1723
tasks:
1824
# Can't use e.g. ansible-galaxy {role,collection} list to check installed
1925
# vs desired, as git-installed collections do not provide any metadata for
@@ -40,6 +46,9 @@
4046
- name: Ensure control node is in inventory
4147
hosts: all
4248
gather_facts: false
49+
tags:
50+
- validate
51+
- openhpc
4352
tasks:
4453
- assert:
4554
that: groups['control'] | length
@@ -48,7 +57,9 @@
4857
- name: Validate openhpc configuration
4958
hosts: openhpc
5059
gather_facts: false
51-
tags: openhpc
60+
tags:
61+
- validate
62+
- openhpc
5263
tasks:
5364
- import_role:
5465
name: stackhpc.openhpc
@@ -65,7 +76,9 @@
6576
- name: Validate filebeat configuration
6677
hosts: filebeat
6778
gather_facts: false
68-
tags: filebeat
79+
tags:
80+
- validate
81+
- filebeat
6982
tasks:
7083
- import_role:
7184
name: filebeat
@@ -78,6 +91,7 @@
7891
- grafana
7992
gather_facts: false
8093
tags:
94+
- validate
8195
- openondemand
8296
- openondemand_server
8397
- grafana
@@ -102,15 +116,19 @@
102116

103117
- name: Validate freeipa configuration
104118
hosts: freeipa
105-
tags: freeipa
119+
tags:
120+
- validate
121+
- freeipa
106122
tasks:
107123
- import_role:
108124
name: freeipa
109125
tasks_from: validate.yml
110126

111127
- name: Validate lustre configuration
112128
hosts: lustre
113-
tags: lustre
129+
tags:
130+
- validate
131+
- lustre
114132
tasks:
115133
- import_role:
116134
name: lustre

0 commit comments

Comments
 (0)