File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 15
15
16
16
- name : Fetch capi-helm-charts release information
17
17
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
19
19
register : capi_helm_chart_release_data
20
20
21
21
- name : Fetch dependencies.json for capi-helm-charts release
22
22
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
24
24
register : dependencies_response
25
25
26
26
- name : Ensure wget packages is installed
31
31
32
32
- name : Fetch manifest.json for capi-helm-charts images
33
33
# 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
35
35
# Above URL returns 404 even though similar URL for capi-helm-charts repo works fine
36
36
# 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"
38
38
register : manifest_response
39
39
changed_when : false
40
40
You can’t perform that action at this time.
0 commit comments