-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Related to osism/issues#881 Signed-off-by: Eike Waldt <[email protected]> Co-authored-by: Axel Lender <[email protected]> Co-authored-by: Christian Berendt <[email protected]>
- Loading branch information
1 parent
ef5045c
commit 04ec728
Showing
5 changed files
with
58 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
--- | ||
- name: Apply task cleanup from role rook | ||
hosts: | ||
- "{{ hosts_manager|default(groups['manager'][0])|default('localhost') }}" | ||
connection: local | ||
gather_facts: false | ||
|
||
tasks: | ||
- name: Include cleanup.yml from osism.services.rook role | ||
ansible.builtin.include_role: | ||
name: osism.services.rook | ||
tasks_from: cleanup.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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
--- | ||
- name: Apply task deploy-crd from role rook | ||
hosts: | ||
- "{{ hosts_manager|default(groups['manager'][0])|default('localhost') }}" | ||
connection: local | ||
gather_facts: false | ||
|
||
tasks: | ||
- name: Include deploy-crd.yml from osism.services.rook role | ||
ansible.builtin.include_role: | ||
name: osism.services.rook | ||
tasks_from: deploy-crd.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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- | ||
- name: Apply task fetch-keys from role rook | ||
hosts: | ||
- "{{ hosts_manager|default(groups['manager'][0])|default('manager') }}" | ||
gather_facts: false | ||
|
||
tasks: | ||
- name: Include fetch-keys.yml from osism.services.rook role | ||
ansible.builtin.include_role: | ||
name: osism.services.rook | ||
tasks_from: fetch-keys.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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
--- | ||
- name: Apply task deploy-helm from role rook | ||
hosts: | ||
- "{{ hosts_manager|default(groups['manager'][0])|default('localhost') }}" | ||
connection: local | ||
gather_facts: false | ||
|
||
tasks: | ||
- name: Include deploy-helm.yml from osism.services.rook role | ||
ansible.builtin.include_role: | ||
name: osism.services.rook | ||
tasks_from: deploy-helm.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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- | ||
- name: Apply role rook | ||
hosts: | ||
- "{{ hosts_manager|default(groups['manager'][0])|default('localhost') }}" | ||
connection: local | ||
gather_facts: false | ||
|
||
tasks: | ||
- name: Include osism.services.rook role | ||
ansible.builtin.include_role: | ||
name: osism.services.rook |