Skip to content

Commit

Permalink
use http for skopeo copy
Browse files Browse the repository at this point in the history
  • Loading branch information
gniltaws committed Dec 17, 2024
1 parent 3234c10 commit 6aac15c
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -94,10 +94,11 @@ jobs:
# copies image used to install argo into local private registry
- name: Copy image into private repository 💿
run: |
skopeo copy --dest-creds ${registry_user}:${registry_password} \
skopeo copy \
--dest-creds ${registry_user}:${registry_password} \
--dest-tls-verify=false \
docker://$(awk '$1 ~/Image:/ {print $2}' charts/operators-installer/_integration-tests/test-install-operator-0-automatic-intermediate-manual-upgrades-values.yaml) \
https://registry.localhost/origin-cli:5000
http://registry.localhost/origin-cli:5000
# NOTE: can't use chart-testing because `ct` does not allow for a fixed release so you can't run two different tests that affect the same resources
- name: Run integration tests 🧪
Expand Down

0 comments on commit 6aac15c

Please sign in to comment.