Skip to content

Commit b38546f

Browse files
Work around helm v4 oci bug
helm/helm#31600 Signed-off-by: Richard Wall <richard.wall@cyberark.com>
1 parent 876e601 commit b38546f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

hack/ark/test-e2e.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
set -o nounset
1717
set -o errexit
1818
set -o pipefail
19+
set -o xtrace
1920

2021
# CyberArk API configuration
2122
: ${ARK_USERNAME?}
@@ -65,8 +66,7 @@ kubectl create secret generic agent-credentials \
6566
--from-literal=ARK_SUBDOMAIN=$ARK_SUBDOMAIN \
6667
--from-literal=ARK_DISCOVERY_API=$ARK_DISCOVERY_API
6768

68-
helm upgrade agent "oci://${ARK_CHART}@${ARK_CHART_DIGEST}" \
69-
--version "${ARK_CHART_TAG}" \
69+
helm upgrade agent "oci://${ARK_CHART}:NON_EXISTENT_TAG@${ARK_CHART_DIGEST}" \
7070
--install \
7171
--wait \
7272
--create-namespace \

0 commit comments

Comments
 (0)