Skip to content
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

Pin DNF releasever to RL9.4 to fix RL9.5 failures #484

Closed
wants to merge 16 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/fatimage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ jobs:
SOURCE_IMAGES_MAP: |
{
"RL8": {
"openstack.openhpc": "rocky-latest-RL8"
"openstack.openhpc": "rocky-latest-test-RL8"
},
"RL9": {
"openstack.openhpc": "rocky-latest-RL9"
"openstack.openhpc": "rocky-latest-test-RL9"
}
}

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/nightlybuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- RL8
- RL9
build:
- openstack.rocky-latest
- openstack.rocky-latest-test
env:
ANSIBLE_FORCE_COLOR: True
OS_CLOUD: openstack
Expand Down Expand Up @@ -138,7 +138,7 @@ jobs:
- RL8
- RL9
image:
- rocky-latest
- rocky-latest-test
exclude:
- target_cloud: LEAFCLOUD
env:
Expand Down
17 changes: 17 additions & 0 deletions ansible/bootstrap.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
---

# - hosts: all
# become: yes
# tasks:
# - name: Override /etc/dnf/vars/releasever with "9.4"
# ansible.builtin.lineinfile:
# path: /etc/dnf/vars/releasever
# line: "9"
# create: yes
# owner: root
# group: root
# mode: '0644'
# when: ansible_distribution_major_version == "9"

# - name: Clean DNF metadata
# ansible.builtin.command:
# cmd: dnf clean all

- hosts: cluster
gather_facts: false
become: yes
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"cluster_image": {
"RL8": "openhpc-RL8-241118-0918-4538c6df",
"RL9": "openhpc-RL9-241118-0918-4538c6df"
"RL8": "openhpc-RL8-241120-2119-bcee1b6b",
"RL9": "openhpc-RL9-241120-2119-bcee1b6b"
}
}
8 changes: 8 additions & 0 deletions packer/openstack.pkr.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,7 @@ variable "volume_size" {
default = {
# fat image builds, GB:
rocky-latest = 15
rocky-latest-test = 15
openhpc = 15
}
}
Expand All @@ -152,6 +153,7 @@ variable "groups" {
default = {
# fat image builds:
rocky-latest = ["update"]
rocky-latest-test = ["update"]
openhpc = ["control", "compute", "login"]
}
}
Expand Down Expand Up @@ -206,6 +208,12 @@ build {
image_name = "${source.name}-${var.os_version}"
}

# latest nightly image test:
source "source.openstack.openhpc" {
name = "rocky-latest-test"
image_name = "${source.name}-${var.os_version}"
}

# fat image:
source "source.openstack.openhpc" {
name = "openhpc"
Expand Down
Loading