File tree Expand file tree Collapse file tree 4 files changed +14
-13
lines changed Expand file tree Collapse file tree 4 files changed +14
-13
lines changed Original file line number Diff line number Diff line change 76
76
pip install -r ../src/kayobe-config/requirements.txt
77
77
78
78
- name : Install terraform
79
- uses : hashicorp/setup-terraform@v2
79
+ uses : hashicorp/setup-terraform@v3
80
80
81
81
- name : Initialise terraform
82
82
run : terraform init
@@ -228,7 +228,7 @@ jobs:
228
228
kayobe playbook run \
229
229
src/kayobe-config/etc/kayobe/ansible/pulp-artifact-upload.yml \
230
230
-e artifact_path=/opt/kayobe/images/ipa \
231
- -e artifact_type=ipa \
231
+ -e artifact_type=ipa-images \
232
232
-e artifact_tag=${{ steps.ipa_image_tag.outputs.ipa_image_tag }} \
233
233
-e os_distribution="ubuntu" \
234
234
-e os_release="jammy" \
Original file line number Diff line number Diff line change @@ -7,17 +7,18 @@ Ironic Python Agent (IPA)
7
7
Release Train IPA
8
8
=================
9
9
10
- StackHPC provides built Ironic Python Agent (IPA) images in Release Train
10
+ StackHPC provides prebuilt Ironic Python Agent (IPA) images in Release Train
11
11
through Ark.
12
12
13
- These images are built in a CI using a Kayobe workflow :kayobe-doc:
14
- ` Kayobe documentation <configuration/reference/ironic-python-agent.html> `
15
- and are configured in this repository .
13
+ These images are built in CI using a GitHub workflow and are configured in this
14
+ repository. See :kayobe-doc: ` Kayobe documentation
15
+ <configuration/reference/ironic-python-agent.html> ` for more details on IPA .
16
16
17
- Release Train IPA is used by Bifrost and Overcloud Ironic by default in
18
- StackHPC Kayobe Configuration, and is pulled in to Inspector when running
19
- ``kayobe seed service deploy `` for Bifrost or ``kayobe overcloud post configure ``
20
- for Ironic. This behaviour can be disabled in `stackhpc-ipa-images.yml `:
17
+ Release Train IPA images are used by Bifrost and Overcloud Ironic by default in
18
+ the StackHPC Kayobe Configuration, and are pulled in to the Ironic Inspector
19
+ when running ``kayobe seed service deploy `` for Bifrost or ``kayobe overcloud
20
+ post configure `` for Overcloud Ironic. This behaviour can be disabled in
21
+ `stackhpc-ipa-images.yml `:
21
22
22
23
.. code-block :: yaml
23
24
Original file line number Diff line number Diff line change 135
135
# Ironic Python Agent (IPA) configuration.
136
136
137
137
# URL of Ironic Python Agent (IPA) kernel image.
138
- kolla_bifrost_ipa_kernel_upstream_url : " {% if stackhpc_ipa_image_bifrost_enabled | bool %}{{ stackhpc_ipa_image_url }} /ipa.kernel{% endif % }"
138
+ kolla_bifrost_ipa_kernel_upstream_url : " {{ ( stackhpc_ipa_image_url + ' /ipa.kernel') if stackhpc_ipa_image_bifrost_enabled | bool } }"
139
139
140
140
# URL of checksum of Ironic Python Agent (IPA) kernel image.
141
141
# kolla_bifrost_ipa_kernel_checksum_url:
@@ -144,7 +144,7 @@ kolla_bifrost_ipa_kernel_upstream_url: "{% if stackhpc_ipa_image_bifrost_enabled
144
144
# kolla_bifrost_ipa_kernel_checksum_algorithm:
145
145
146
146
# URL of Ironic Python Agent (IPA) ramdisk image.
147
- kolla_bifrost_ipa_ramdisk_upstream_url : " {% if stackhpc_ipa_image_bifrost_enabled | bool %}{{ stackhpc_ipa_image_url }} /ipa.initramfs{% endif % }"
147
+ kolla_bifrost_ipa_ramdisk_upstream_url : " {{ ( stackhpc_ipa_image_url + ' /ipa.initramfs') if stackhpc_ipa_image_bifrost_enabled | bool } }"
148
148
149
149
# URL of checksum of Ironic Python Agent (IPA) ramdisk image.
150
150
# kolla_bifrost_ipa_ramdisk_checksum_url:
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ stackhpc_ipa_image_overcloud_enabled: true
10
10
11
11
# The IPA image source, defined by os_distribution,
12
12
# os_release, and the current stable version.
13
- stackhpc_ipa_image_url : " {{ stackhpc_release_pulp_content_url }}/ipa/\
13
+ stackhpc_ipa_image_url : " {{ stackhpc_release_pulp_content_url }}/ipa-images /\
14
14
{{ openstack_release }}/{{ os_distribution }}/\
15
15
{{ os_release }}/{{ stackhpc_ipa_image_version }}"
16
16
You can’t perform that action at this time.
0 commit comments