forked from usegalaxy-eu/vgcn
-
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.
Merge pull request usegalaxy-eu#100 from usegalaxy-eu/separate-playbo…
…oks-fix-vault Separate playbooks fix vault
- Loading branch information
Showing
4 changed files
with
27 additions
and
5 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
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,20 @@ | ||
# Meta-playbook for internal images that just imports all other playbooks. | ||
# This Meta-playbook is selected when packer finds 'internal' in the group names. | ||
# Requires a --vault-password-file=.vault_password argument in packer. | ||
# | ||
# It defines the order in which playbooks should be run during the provisioning | ||
# step. Each playbook contains plays that only apply to hosts belonging to a | ||
# group with the same name. Therefore, individual playbooks can be turned on | ||
# and off via the "groups" variable defined in "templates/variables.pkr.hcl", | ||
# which can also be overriden form the command line each time packer is | ||
# launched. | ||
--- | ||
- ansible.builtin.import_playbook: generic.yml | ||
|
||
- ansible.builtin.import_playbook: workers.yml | ||
|
||
- ansible.builtin.import_playbook: workers-gpu.yml | ||
|
||
- ansible.builtin.import_playbook: jenkins.yml | ||
|
||
- ansible.builtin.import_playbook: internal.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
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