File tree Expand file tree Collapse file tree 10 files changed +48
-19
lines changed Expand file tree Collapse file tree 10 files changed +48
-19
lines changed Original file line number Diff line number Diff line change @@ -200,12 +200,7 @@ jobs:
200200 source venvs/kayobe/bin/activate &&
201201 source src/kayobe-config/kayobe-env --environment ci-builder &&
202202 kayobe seed host configure \
203- --skip-tags network,docker,docker-registry \
204- -e seed_bootstrap_user="cloud-user" \
205- -e controller_bootstrap_user="cloud-user" \
206- -e dnf_install_doca=true \
207- -e dnf_enable_doca_modules=false \
208- -e stackhpc_repos_enabled=true
203+ --skip-tags network,docker,docker-registry
209204 env :
210205 KAYOBE_VAULT_PASSWORD : ${{ secrets.KAYOBE_VAULT_PASSWORD }}
211206
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11# A 'seed' host used for building images.
22
3- [ofed-builder:children]
4- seed
5- controllers
6-
73# This is neccesary to run `overcloud deployment image build`
84[controllers]
95builder
Original file line number Diff line number Diff line change @@ -108,9 +108,3 @@ ipa_build_dib_env_extra:
108108# builder being a member of the 'overcloud' group for IPA builds.
109109stackhpc_repos_enabled : false
110110enable_docker_repo : true
111-
112- # Enable LVM for OFED builds
113- seed_lvm_groups :
114- - " {{ stackhpc_lvm_group_rootvg if dnf_install_doca | bool }}"
115- controller_lvm_groups :
116- - " {{ stackhpc_lvm_group_rootvg if dnf_install_doca | bool }}"
Original file line number Diff line number Diff line change 1+ dependencies:
2+ - ci-builder
Original file line number Diff line number Diff line change 1+ ---
2+ # ##############################################################################
3+ # Controller node configuration.
4+
5+ # User with which to access the controllers via SSH during bootstrap, in order
6+ # to setup the Kayobe user account. Default is {{ os_distribution }}.
7+ controller_bootstrap_user : cloud-user
8+
9+ # ##############################################################################
10+ # Controller node LVM configuration.
11+
12+ # List of controller volume groups. See mrlesmithjr.manage_lvm role for
13+ # format.
14+ controller_lvm_groups :
15+ - " {{ stackhpc_lvm_group_rootvg if dnf_install_doca | bool }}"
16+
17+ # ##############################################################################
18+ # Dummy variable to allow Ansible to accept this file.
19+ workaround_ansible_issue_8743 : yes
File renamed without changes.
Original file line number Diff line number Diff line change 1+ [ofed-builder:children]
2+ seed
3+ controllers
Original file line number Diff line number Diff line change 1+ ---
2+ # ##############################################################################
3+ # Seed node configuration.
4+
5+ # User with which to access the seed via SSH during bootstrap, in order
6+ # to setup the Kayobe user account. Default is {{ os_distribution }}.
7+ seed_bootstrap_user : cloud-user
8+
9+ # ##############################################################################
10+ # Seed node LVM configuration.
11+
12+ # Seed lvm configuration. See inventory/group_vars/seed/lvm.yml
13+ # for the exact configuration.
14+ seed_lvm_groups :
15+ - " {{ stackhpc_lvm_group_rootvg }}"
Original file line number Diff line number Diff line change 1+ ---
2+ # ##############################################################################
3+ # StackHPC configuration.
4+
5+ # Enable StackHPC Ark repositories for DOCA builds
6+ stackhpc_repos_enabled : true
7+ dnf_install_doca : true
8+ dnf_enable_doca_modules : false
You can’t perform that action at this time.
0 commit comments