File tree Expand file tree Collapse file tree 5 files changed +25
-8
lines changed
environments/common/inventory/group_vars/all Expand file tree Collapse file tree 5 files changed +25
-8
lines changed Original file line number Diff line number Diff line change 25
25
matrix : # build RL8, RL9
26
26
build :
27
27
- image_name : rocky-latest-RL8
28
- source_image_name : Rocky-8-GenericCloud-Base-8.9-20231119 .0.x86_64.qcow2
28
+ source_image_name : Rocky-8-GenericCloud-Base-8.10-20240528 .0.x86_64.qcow2
29
29
inventory_groups : update
30
30
- image_name : rocky-latest-RL9
31
31
source_image_name : Rocky-9-GenericCloud-Base-9.4-20240523.0.x86_64.qcow2
Original file line number Diff line number Diff line change 122
122
ansible.builtin.include_role :
123
123
name : dnf_repos
124
124
tasks_from : set_repos.yml
125
- when : ansible_distribution_major_version == "9" # TODO update role once RL8 config decided
126
125
127
126
# --- tasks after here require access to package repos ---
128
127
- hosts : squid
Original file line number Diff line number Diff line change 5
5
ansible.builtin.include_role :
6
6
name : dnf_repos
7
7
tasks_from : disable_repos.yml
8
- when : ansible_distribution_major_version == "9" # TODO update role once RL8 config decided
Original file line number Diff line number Diff line change @@ -4,18 +4,32 @@ dnf_repos_epel_prefix: "epel/{{ ansible_distribution_major_version }}"
4
4
dnf_repos_username : " {{ omit }}"
5
5
dnf_repos_password : " {{ omit }}"
6
6
7
+ dnf_repos_filenames :
8
+ ' 8 ' :
9
+ baseos : ' Rocky-BaseOS'
10
+ appstream : ' Rocky-AppStream'
11
+ crb : ' Rocky-PowerTools'
12
+ extras : ' Rocky-Extras'
13
+ ' 9 ' :
14
+ baseos : ' rocky'
15
+ appstream : ' rocky'
16
+ crb : ' rocky'
17
+ extras : ' rocky-extras'
18
+
19
+ dnf_repos_version_filenames : " {{ dnf_repos_filenames[ansible_distribution_major_version] }}"
20
+
7
21
# epel installed separately
8
22
dnf_repos_repolist :
9
- - file : rocky
23
+ - file : " {{ dnf_repos_version_filenames.baseos }} "
10
24
name : baseos
11
25
base_url : " {{ dnf_repos_pulp_content_url }}/{{ dnf_repos_rocky_prefix }}/BaseOS/{{ ansible_architecture }}/os/{{ appliances_repo_timestamps.baseos[ansible_distribution_version] }}"
12
- - file : rocky
26
+ - file : " {{ dnf_repos_version_filenames.appstream }} "
13
27
name : appstream
14
28
base_url : " {{ dnf_repos_pulp_content_url }}/{{ dnf_repos_rocky_prefix }}/AppStream/{{ ansible_architecture }}/os/{{ appliances_repo_timestamps.appstream[ansible_distribution_version] }}"
15
- - file : rocky
16
- name : crb
29
+ - file : " {{ dnf_repos_version_filenames.crb }} "
30
+ name : " {{ 'powertools' if ansible_distribution_major_version == '8' else ' crb' }} "
17
31
base_url : " {{ dnf_repos_pulp_content_url }}/{{ dnf_repos_rocky_prefix }}/CRB/{{ ansible_architecture }}/os/{{ appliances_repo_timestamps.crb[ansible_distribution_version] }}"
18
- - file : rocky- extras
32
+ - file : " {{ dnf_repos_version_filenames. extras }} "
19
33
name : extras
20
34
base_url : " {{ dnf_repos_pulp_content_url }}/{{ dnf_repos_rocky_prefix }}/extras/{{ ansible_architecture }}/os/{{ appliances_repo_timestamps.extras[ansible_distribution_version] }}"
21
35
Original file line number Diff line number Diff line change @@ -85,11 +85,16 @@ appliances_local_users: "{{ appliances_local_users_default + appliances_local_us
85
85
appliances_repo_timestamps :
86
86
baseos :
87
87
' 9.4 ' : 20240816T002610
88
+ ' 8.10 ' : 20241217T123729
88
89
appstream :
89
90
' 9.4 ' : 20240816T002610
91
+ ' 8.10 ' : 20241217T123729
90
92
crb :
91
93
' 9.4 ' : 20240816T002610
94
+ ' 8.10 ' : 20241217T123729
92
95
extras :
93
96
' 9.4 ' : 20240816T002610
97
+ ' 8.10 ' : 20241217T123729
94
98
epel :
95
99
' 9 ' : 20240902T080424
100
+ ' 8 ' : 20241216T235733
You can’t perform that action at this time.
0 commit comments