-
Notifications
You must be signed in to change notification settings - Fork 34
Refactor toplevel site.yml and fatimage.yml playbooks #657
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
sjpb
wants to merge
39
commits into
main
Choose a base branch
from
refactor/toplevel-playbooks
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 17 commits
Commits
Show all changes
39 commits
Select commit
Hold shift + click to select a range
4d4f1ce
remove hostname from fatimage
sjpb a2b6888
move doca to bootstrap
sjpb c04fa61
move compute-init install into extras.yml
sjpb ca3f4ff
move gateway and only run ansible-init install during builder
sjpb 0b9f615
remove vm cleanup/shutdown from site.yml
sjpb 1a744b8
remove unneeded conditional from pulp repo sync
sjpb dccd390
use iam.yml in fatimage
sjpb 910ecc3
disable repos after hook for site.yml - matches fatimage
sjpb bb4cab1
use slurm.yml from fatimage
sjpb 5cc7fbc
add new final.yml for both fatimage and site
sjpb cefbd9a
move compute-init install and configuration all to the end
sjpb e1ee0ee
fix appliances_mode not defined error
sjpb c44b9f0
fix openhpc role task selection
sjpb 0f07c36
bump CI image
sjpb fc5889e
make ansible_init depedencies correct in groups
sjpb 3120e49
bump CI image
sjpb b398135
make compute_init and rebuild group descriptions clearer
sjpb 61d0c3b
bump zenith client to 0.14
sjpb c55bcc5
try removing zenith_proxy_client_auth_params
sjpb aa11f43
try host networking for zenith
sjpb 35ebf8b
Revert "try host networking for zenith"
sjpb 8d26427
bind grafana to all interfaces for caas
sjpb d79f3ea
Merge branch 'main' into refactor/toplevel-playbooks
sjpb 76497fc
make sssd and mysql consistent with others; don't run install during …
sjpb f2a6689
revert zenith pods to slirp4netns to allow rootless pods to reach host
sjpb 17a4107
Revert "bind grafana to all interfaces for caas"
sjpb 33b9991
remove commented-out zenith config
sjpb 4d77c38
fix gateway group wording
sjpb 3d05772
get caas hpctests working with root-squashed nfs
sjpb f04fae9
combine caas groups files (now not symlinked from everything anyway)
sjpb e94abb2
caas: mount homedirs on control node too for manila for consistency a…
sjpb 0c3dd46
Merge branch 'main' into fix/zenith
sjpb 32f156e
Merge branch 'main' into fix/zenith
sjpb 7cc6911
Merge branch 'fix/zenith' of github.com:stackhpc/ansible-slurm-applia…
sjpb e7189d4
Merge branch 'fix/zenith' into refactor/toplevel-playbooks
sjpb 4452f3c
Merge branch 'main' into refactor/toplevel-playbooks
sjpb a632130
Merge branch 'main' into refactor/toplevel-playbooks
sjpb f511ed2
bump CI image
sjpb c7bd114
cope with not running mysql install tasks
sjpb File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 was deleted.
Oops, something went wrong.
This file contains hidden or 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 hidden or 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 hidden or 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,38 @@ | ||
- hosts: compute_init | ||
tags: compute_init | ||
become: yes | ||
tasks: | ||
- name: Install compute_init playbook | ||
ansible.builtin.include_role: | ||
name: compute_init | ||
tasks_from: 'install.yml' | ||
when: "{{ appliances_mode == 'build' }}" | ||
# conditional used instead of compute_init!builder to make dev easier | ||
|
||
- hosts: compute_init:!builder | ||
tags: compute_init | ||
become: yes | ||
tasks: | ||
- name: Setup NFS export for compute node configuration | ||
ansible.builtin.include_role: | ||
name: compute_init | ||
tasks_from: export.yml | ||
|
||
- hosts: dnf_repos | ||
become: yes | ||
tasks: | ||
- name: Disable pulp repos | ||
ansible.builtin.include_role: | ||
name: dnf_repos | ||
tasks_from: disable_repos.yml | ||
|
||
- hosts: builder | ||
become: yes | ||
gather_facts: yes | ||
tags: finalise | ||
tasks: | ||
- name: Cleanup image | ||
import_tasks: cleanup.yml | ||
|
||
- name: Shutdown Packer VM | ||
community.general.shutdown: |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.