-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
28 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -247,4 +247,4 @@ version = 2 | |
[ttrpc] | ||
address = "" | ||
gid = 0 | ||
uid = 0 | ||
uid = 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,4 +3,4 @@ | |
- name: Restart containerd | ||
ansible.builtin.service: | ||
name: containerd | ||
state: restarted | ||
state: restarted |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -48,4 +48,4 @@ | |
- Restart containerd | ||
|
||
- name: Flush handlers | ||
meta: flush_handlers | ||
meta: flush_handlers |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,9 @@ | ||
--- | ||
# tasks file for containerd | ||
- name: Include tasks of containerd-install | ||
ansible.builtin.include_tasks: containerd-install.yml | ||
ansible.builtin.include_tasks: | ||
file: containerd-install.yml | ||
|
||
- name: Include tasks of containerd-config | ||
ansible.builtin.include_tasks: containerd-config.yml | ||
ansible.builtin.include_tasks: | ||
file: containerd-config.yml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,9 @@ | ||
--- | ||
# tasks file for helm | ||
- name: Include tasks of helm-install | ||
ansible.builtin.include_tasks: helm-install.yml | ||
ansible.builtin.include_tasks: | ||
file: helm-install.yml | ||
|
||
- name: Include tasks of helm-config | ||
ansible.builtin.include_tasks: helm-config.yml | ||
ansible.builtin.include_tasks: | ||
file: helm-config.yml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,4 +13,4 @@ galaxy_info: | |
|
||
galaxy_tags: [] | ||
|
||
dependencies: [] | ||
dependencies: [] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,21 @@ | ||
--- | ||
# tasks file for kubeadm | ||
- name: Include tasks of kubeadm-install | ||
ansible.builtin.include_tasks: kubeadm-install.yml | ||
ansible.builtin.include_tasks: | ||
file: kubeadm-install.yml | ||
|
||
- name: Include tasks of kubeadm-init | ||
ansible.builtin.include_tasks: kubeadm-init.yml | ||
ansible.builtin.include_tasks: | ||
file: kubeadm-init.yml | ||
|
||
- name: Include tasks of kubeadm-config | ||
ansible.builtin.include_tasks: kubeadm-config.yml | ||
ansible.builtin.include_tasks: | ||
file: kubeadm-config.yml | ||
|
||
- name: Include tasks of kubeadm-addons | ||
ansible.builtin.include_tasks: kubeadm-addons.yml | ||
ansible.builtin.include_tasks: | ||
file: kubeadm-addons.yml | ||
|
||
- name: Include tasks of kubeadm-idempotency | ||
ansible.builtin.include_tasks: kubeadm-idempotency.yml | ||
ansible.builtin.include_tasks: | ||
file: kubeadm-idempotency.yml |