Skip to content

Commit b760689

Browse files
committed
include_tasks
1 parent d4441a3 commit b760689

File tree

10 files changed

+36
-36
lines changed

10 files changed

+36
-36
lines changed

roles/common/tasks/all.yml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
---
2-
#- include: reset.yml
3-
- include: selinux.yml # THIS MIGHT REBOOT MACHINE!!!
4-
- include: install_k8s_packages.yml
5-
- include: docker.yml
6-
- include: iptables.yml
7-
- include: firewalld.yml
8-
- include: kube_config.yml
9-
- include: swap.yml
10-
- include: kernel_modules.yml
2+
#- include_tasks: reset.yml
3+
- include_tasks: selinux.yml # THIS MIGHT REBOOT MACHINE!!!
4+
- include_tasks: install_k8s_packages.yml
5+
- include_tasks: docker.yml
6+
- include_tasks: iptables.yml
7+
- include_tasks: firewalld.yml
8+
- include_tasks: kube_config.yml
9+
- include_tasks: swap.yml
10+
- include_tasks: kernel_modules.yml
1111
when: kernel_modules_setup | default (True)
12-
- include: ntpd.yml
12+
- include_tasks: ntpd.yml
1313
when: ntp_setup | default (True)
14-
- include: rook.yml
14+
- include_tasks: rook.yml
1515
when: rook is defined and rook.enabled | default (False)
16-
- include: various.yml
17-
- include: aliases_completion.yml
16+
- include_tasks: various.yml
17+
- include_tasks: aliases_completion.yml

roles/common/tasks/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
---
2-
- include: "{{task}}.yml"
2+
- include_tasks: "{{task}}.yml"

roles/helm/tasks/all.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
---
2-
- include: helm_reset.yml
3-
- include: helm.yml
2+
- include_tasks: helm_reset.yml
3+
- include_tasks: helm.yml

roles/helm/tasks/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
- include: "{{task}}.yml"
1+
- include_tasks: "{{task}}.yml"

roles/post_deploy/tasks/all.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
- include: network.yml
3-
- include: post_cluster_deploy.yml
4-
- include: sanity.yml
5-
- include: taints.yml
2+
- include_tasks: network.yml
3+
- include_tasks: post_cluster_deploy.yml
4+
- include_tasks: sanity.yml
5+
- include_tasks: taints.yml

roles/post_deploy/tasks/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
- include: "{{task}}.yml"
1+
- include_tasks: "{{task}}.yml"

roles/storage/tasks/all.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
2-
- include: remove_pvs.yml
3-
- include: nfs_reset.yml
4-
- include: nfs.yml
5-
- include: rook_reset.yml
6-
- include: rook.yml
7-
- include: vsphere.yml
2+
- include_tasks: remove_pvs.yml
3+
- include_tasks: nfs_reset.yml
4+
- include_tasks: nfs.yml
5+
- include_tasks: rook_reset.yml
6+
- include_tasks: rook.yml
7+
- include_tasks: vsphere.yml

roles/storage/tasks/create_all.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
2-
#- include: remove_pvs.yml
3-
#- include: nfs_reset.yml
4-
- include: nfs.yml
5-
#- include: rook_reset.yml
6-
- include: rook.yml
7-
- include: vsphere.yml
2+
#- include_tasks: remove_pvs.yml
3+
#- include_tasks: nfs_reset.yml
4+
- include_tasks: nfs.yml
5+
#- include_tasks: rook_reset.yml
6+
- include_tasks: rook.yml
7+
- include_tasks: vsphere.yml

roles/storage/tasks/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
- include: "{{task}}.yml"
1+
- include_tasks: "{{task}}.yml"

roles/tools/tasks/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
- include: "{{task}}.yml"
1+
- include_tasks: "{{task}}.yml"

0 commit comments

Comments
 (0)