-
Notifications
You must be signed in to change notification settings - Fork 23
Various AUFN-related changes for Epoxy #1734
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
Merged
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
--- | ||
############################################################################### | ||
# Compute node configuration. | ||
|
||
# User with which to access the computes via SSH during bootstrap, in order | ||
# to setup the Kayobe user account. Default is {{ os_distribution }}. | ||
compute_bootstrap_user: "{{ os_distribution if os_distribution == 'ubuntu' else 'cloud-user' }}" | ||
|
||
############################################################################### | ||
# Compute node LVM configuration. | ||
|
||
# List of compute volume groups. See mrlesmithjr.manage-lvm role for | ||
# format. | ||
compute_lvm_groups: | ||
- "{{ stackhpc_lvm_group_rootvg }}" |
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,15 @@ | ||
--- | ||
############################################################################### | ||
# Controller node configuration. | ||
|
||
# User with which to access the controllers via SSH during bootstrap, in order | ||
# to setup the Kayobe user account. Default is {{ os_distribution }}. | ||
controller_bootstrap_user: "{{ os_distribution if os_distribution == 'ubuntu' else 'cloud-user' }}" | ||
|
||
############################################################################### | ||
# Controller node LVM configuration. | ||
|
||
# List of controller volume groups. See mrlesmithjr.manage-lvm role for | ||
# format. | ||
controller_lvm_groups: | ||
- "{{ stackhpc_lvm_group_rootvg }}" |
27 changes: 27 additions & 0 deletions
27
etc/kayobe/environments/aufn-ceph/inventory/group_vars/all/lvm.yml
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,27 @@ | ||
--- | ||
############################################################################### | ||
# StackHPC LVM Logical Volume (LV) configuration. | ||
|
||
# StackHPC LVM lv_swap LV size. | ||
stackhpc_lvm_lv_swap_size: 120m | ||
|
||
# StackHPC LVM lv_root LV size. | ||
stackhpc_lvm_lv_root_size: 1g | ||
|
||
# StackHPC LVM lv_tmp LV size. | ||
stackhpc_lvm_lv_tmp_size: 1g | ||
|
||
# StackHPC LVM lv_var LV size. | ||
stackhpc_lvm_lv_var_size: 2.5g | ||
|
||
# StackHPC LVM lv_var_tmp LV size. | ||
stackhpc_lvm_lv_var_tmp_size: 1g | ||
|
||
# StackHPC LVM lv_log LV size. | ||
stackhpc_lvm_lv_log_size: 1g | ||
|
||
# StackHPC LVM lv_audit LV size. | ||
stackhpc_lvm_lv_audit_size: 120m | ||
|
||
# StackHPC LVM lv_home LV size. | ||
stackhpc_lvm_lv_home_size: 1g |
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,20 @@ | ||
--- | ||
############################################################################### | ||
# Kolla configuration. | ||
|
||
# Docker namespace to use for Kolla images. Default is 'kolla'. | ||
kolla_docker_namespace: stackhpc-dev | ||
|
||
############################################################################### | ||
# StackHPC configuration. | ||
|
||
# Use AIO credentials for access to Ark | ||
# TODO: generate AUFN-specific credentials | ||
stackhpc_release_pulp_username: "skc-ci-aio" | ||
stackhpc_release_pulp_password: !vault | | ||
$ANSIBLE_VAULT;1.1;AES256 | ||
31386366383365666135336331663635396237623139306362633933636233613765663731666338 | ||
3633633736333936383439623066653663333964343234350a393137383537316164323837386437 | ||
36613139323161643766666565643739373037623363636234343965343436653261326238393566 | ||
3837336661653962340a316631366463623138623530373133336665376433633437306631383666 | ||
30333461333535363433363336663664316634343432633766346564323833346663 |
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 |
---|---|---|
@@ -1,10 +1,15 @@ | ||
--- | ||
############################################################################### | ||
# Storage node configuration. | ||
|
||
# User with which to access the storage nodes via SSH during bootstrap, in | ||
# order to setup the Kayobe user account. Default is {{ os_distribution }}. | ||
storage_bootstrap_user: "{{ os_distribution if os_distribution == 'ubuntu' else 'cloud-user' }}" | ||
|
||
############################################################################### | ||
# Storage node LVM configuration. | ||
|
||
# List of storage volume groups. See mrlesmithjr.manage-lvm role for | ||
# format. | ||
# storage_lvm_groups: | ||
|
||
# Avoid undefined var which would result in 'LVM physical disks have not been configured' error | ||
storage_lvm_groups: [] | ||
storage_lvm_groups: | ||
- "{{ stackhpc_lvm_group_rootvg }}" |
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,3 @@ | ||
--- | ||
# Force system clock synchronisation | ||
ntp_force_sync: True |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
--- | ||
# Overcloud host image versioning tags | ||
# These images must be in SMS, since they are used by our AIO CI runners | ||
#TODO: build epoxy images | ||
stackhpc_rocky_9_overcloud_host_image_version: "master-20250213T092714" | ||
stackhpc_ubuntu_noble_overcloud_host_image_version: "master-20250213T092714" | ||
stackhpc_rocky_9_overcloud_host_image_version: "2025.1-20250620T125648" | ||
stackhpc_ubuntu_noble_overcloud_host_image_version: "2025.1-20250620T125648" |
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 |
---|---|---|
@@ -1,5 +1,4 @@ | ||
--- | ||
# IPA image versioning tags | ||
# TODO: Build real images | ||
stackhpc_rocky_9_ipa_image_version: "2024.1-20241231T102920" | ||
stackhpc_ubuntu_noble_ipa_image_version: "2024.1-20241206T160829" | ||
stackhpc_rocky_9_ipa_image_version: "2025.1-20250618T103101" | ||
stackhpc_ubuntu_noble_ipa_image_version: "2025.1-20250618T103101" |
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 |
---|---|---|
@@ -1,3 +1,4 @@ | ||
kayobe@git+https://github.com/stackhpc/kayobe@stackhpc/18.1.0.6 | ||
ansible-modules-hashivault>=5.3.0 | ||
pulp-glue<0.32,>=0.29.2 | ||
jmespath |
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.