Skip to content

Commit

Permalink
ci: include v prefix when install CRD chart
Browse files Browse the repository at this point in the history
  • Loading branch information
jmdeal committed Nov 9, 2024
1 parent ac20f3d commit c8bb3d6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/hack/e2e_scripts/install_karpenter.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ aws eks update-kubeconfig --name "$CLUSTER_NAME"
if (( "$WEBHOOKS_ENABLED" == false )); then
helm upgrade --install karpenter-crd oci://$ECR_ACCOUNT_ID.dkr.ecr.$ECR_REGION.amazonaws.com/karpenter/snapshot/karpenter-crd \
--namespace kube-system \
--version "0-$(git rev-parse HEAD)" \
--version "v0-$(git rev-parse HEAD)" \
--set webhook.enabled=${WEBHOOKS_ENABLED} \
--wait
fi
Expand Down Expand Up @@ -34,4 +34,4 @@ helm upgrade --install karpenter "${CHART}" \
--set "serviceMonitor.endpointConfig.relabelings[2].replacement=$(git describe --abbrev=0 --tags)" \
--set "serviceMonitor.endpointConfig.relabelings[3].targetLabel=commitsAfterTag" \
--set "serviceMonitor.endpointConfig.relabelings[3].replacement=\"$(git describe --tags | cut -d '-' -f 2)\"" \
--wait
--wait

0 comments on commit c8bb3d6

Please sign in to comment.