Skip to content
Merged
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
3 changes: 3 additions & 0 deletions ansible/roles/dnf_repos/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@ dnf_repos_default_repolist:
- file: "{{ dnf_repos_version_filenames.extras }}"
name: extras
base_url: "{{ dnf_repos_pulp_content_url }}/{{ appliances_pulp_repos.extras[ansible_distribution_version] | appliances_repo_to_subpath }}"
- file: ceph
name: Ceph
base_url: "{{ dnf_repos_pulp_content_url }}/{{ appliances_pulp_repos.ceph[ansible_distribution_major_version] | appliances_repo_to_subpath }}"

dnf_repos_openhpc_repolist:
- name: OpenHPC
Expand Down
2 changes: 2 additions & 0 deletions ansible/roles/pulp_site/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ pulp_site_rpm_info:
subpath: "{{ appliances_pulp_repos.openhpc_base[pulp_site_target_distribution_version_major] | appliances_repo_to_subpath }}"
- name: "ohpc-updates-{{ pulp_site_target_distribution_version_major }}-{{ appliances_pulp_repos.openhpc_updates[pulp_site_target_distribution_version_major].timestamp }}"
subpath: "{{ appliances_pulp_repos.openhpc_updates[pulp_site_target_distribution_version_major] | appliances_repo_to_subpath }}"
- name: "ceph-{{ pulp_site_target_distribution_version_major }}-{{ appliances_pulp_repos.ceph[pulp_site_target_distribution_version_major].timestamp }}"
subpath: "{{ appliances_pulp_repos.ceph[pulp_site_target_distribution_version_major] | appliances_repo_to_subpath }}"

pulp_site_rpm_repo_defaults:
remote_username: "{{ pulp_site_upstream_username }}"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"cluster_image": {
"RL8": "openhpc-RL8-250106-0916-f8603056",
"RL9": "openhpc-RL9-250106-0916-f8603056"
"RL8": "openhpc-RL8-250107-1534-b03caaf3",
"RL9": "openhpc-RL9-250107-1535-b03caaf3"
}
}
8 changes: 7 additions & 1 deletion environments/common/inventory/group_vars/all/defaults.yml
Original file line number Diff line number Diff line change
Expand Up @@ -165,4 +165,10 @@ appliances_pulp_repos:
'9':
path: OpenHPC/3/updates/EL_9
timestamp: 20241218T154614

ceph:
'8':
timestamp: 20231104T015751
path: centos/8-stream/storage/x86_64/ceph-quincy
'9':
timestamp: 20240923T233036
path: centos/9-stream/storage/x86_64/ceph-reef
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Empty repo lists from stackhpc.ansible-role-os-manila-mount role defaults, as these repofiles are
# now generated by dnf_repos to allow injecting Ark creds:
os_manila_mount_ceph_rpm_repos: []
2 changes: 1 addition & 1 deletion requirements.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ roles:
version: v3.1.5
- src: https://github.com/stackhpc/ansible-role-os-manila-mount.git
name: stackhpc.os-manila-mount
version: v24.11.0 # Support ceph quincy for RL9
version: v25.1.1

collections:
- name: containers.podman
Expand Down
Loading