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 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
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
You can’t perform that action at this time.
0 commit comments