Skip to content

Commit 602136d

Browse files
committed
Fix Azimuth artefact URLs
1 parent 8cf03a8 commit 602136d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

ansible/generate-magnum-capi-templates.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@
1515

1616
- name: Fetch capi-helm-charts release information
1717
ansible.builtin.uri:
18-
url: https://api.github.com/repos/stackhpc/capi-helm-charts/releases/latest
18+
url: https://api.github.com/repos/azimuth-cloud/capi-helm-charts/releases/latest
1919
register: capi_helm_chart_release_data
2020

2121
- name: Fetch dependencies.json for capi-helm-charts release
2222
ansible.builtin.uri:
23-
url: https://raw.githubusercontent.com/stackhpc/capi-helm-charts/{{ capi_helm_chart_release_data.json.tag_name }}/dependencies.json
23+
url: https://raw.githubusercontent.com/azimuth-cloud/capi-helm-charts/{{ capi_helm_chart_release_data.json.tag_name }}/dependencies.json
2424
register: dependencies_response
2525

2626
- name: Ensure wget packages is installed
@@ -31,10 +31,10 @@
3131

3232
- name: Fetch manifest.json for capi-helm-charts images
3333
# ansible.builtin.uri:
34-
# url: https://raw.githubusercontent.com/stackhpc/azimuth-images/{{ dependencies_response.json['azimuth-images'] }}/manifest.json
34+
# url: https://raw.githubusercontent.com/azimuth-cloud/azimuth-images/{{ dependencies_response.json['azimuth-images'] }}/manifest.json
3535
# Above URL returns 404 even though similar URL for capi-helm-charts repo works fine
3636
# Not sure why but fall back to wget + JSON parsing for now.
37-
shell: "wget -O - https://github.com/stackhpc/azimuth-images/releases/download/{{ dependencies_response.json['azimuth-images'] }}/manifest.json"
37+
shell: "wget -O - https://github.com/azimuth-cloud/azimuth-images/releases/download/{{ dependencies_response.json['azimuth-images'] }}/manifest.json"
3838
register: manifest_response
3939
changed_when: false
4040

0 commit comments

Comments
 (0)