@@ -50,50 +50,34 @@ apt_keys:
50
50
# (optional, default is unset)
51
51
# Default is an empty list.
52
52
stackhpc_apt_repositories :
53
- - url : " {{ stackhpc_repo_ubuntu_jammy_url }}"
53
+ - url : " {{ stackhpc_repo_ubuntu_noble_url if ansible_facts.distribution_release == 'noble' else stackhpc_repo_ubuntu_jammy_url }}"
54
54
suites : " {{ ansible_facts.distribution_release }} {{ ansible_facts.distribution_release }}-updates {{ ansible_facts.distribution_release }}-backports"
55
55
components : main restricted universe multiverse
56
56
architecture : amd64
57
57
required : true
58
- - url : " {{ stackhpc_repo_ubuntu_jammy_security_url }}"
58
+ - url : " {{ stackhpc_repo_ubuntu_noble_security_url if ansible_facts.distribution_release == 'noble' else stackhpc_repo_ubuntu_jammy_security_url }}"
59
59
suites : " {{ ansible_facts.distribution_release }}-security"
60
60
components : main restricted universe multiverse
61
61
architecture : amd64
62
62
required : true
63
+ - url : " {{ stackhpc_repo_docker_ce_ubuntu_noble_url if ansible_facts.distribution_release == 'noble' else stackhpc_repo_docker_ce_ubuntu_jammy_url }}"
64
+ suites : " {{ ansible_facts.distribution_release }}"
65
+ components : stable
66
+ signed_by : docker.asc
67
+ architecture : amd64
68
+ required : true
63
69
- url : " {{ stackhpc_repo_ubuntu_jammy_cve_2024_6387_url }}"
64
70
suites : " pulp"
65
71
components : upload
66
72
architecture : amd64
67
73
trusted : yes
68
- required : true
69
- - url : " {{ stackhpc_repo_docker_ce_ubuntu_jammy_url }}"
70
- suites : " {{ ansible_facts.distribution_release }}"
71
- components : stable
72
- signed_by : docker.asc
73
- architecture : amd64
74
- required : true
74
+ required : " {{ ansible_facts.distribution_release == 'jammy' }}"
75
75
- url : " {{ stackhpc_repo_ceph_reef_debian_url }}"
76
76
suites : " {{ ansible_facts.distribution_release }}"
77
77
components : main
78
78
signed_by : ceph.asc
79
79
architecture : amd64
80
- required : true
81
- - url : " {{ stackhpc_repo_ubuntu_noble_url }}"
82
- suites : " {{ ansible_facts.distribution_release }} {{ ansible_facts.distribution_release }}-updates {{ ansible_facts.distribution_release }}-backports"
83
- components : main restricted universe multiverse
84
- architecture : amd64
85
- required : true
86
- - url : " {{ stackhpc_repo_ubuntu_noble_security_url }}"
87
- suites : " {{ ansible_facts.distribution_release }}-security"
88
- components : main restricted universe multiverse
89
- architecture : amd64
90
- required : true
91
- - url : " {{ stackhpc_repo_docker_ce_ubuntu_noble_url }}"
92
- suites : " {{ ansible_facts.distribution_release }}"
93
- components : stable
94
- signed_by : docker.asc
95
- architecture : amd64
96
- required : true
80
+ required : " {{ ansible_facts.distribution_release == 'jammy' }}"
97
81
98
82
# Do not replace apt configuration for non-overcloud hosts. This can result in
99
83
# errors if apt reconfiguration is performed before local repository mirrors
0 commit comments