
This patchset allows for overrides to be set and ingested by the gates as well as the AIO. Change-Id: I27b6d476d9f3b360edc03dd84669ca236cbfa337
18 lines
380 B
Bash
Executable File
18 lines
380 B
Bash
Executable File
#!/bin/bash
|
|
set -eux
|
|
|
|
: ${EXTRA_HELM_ARGS_HARBOR}:="$(./tools/deployment/common/get-values-overrides.sh harbor)"}
|
|
|
|
NS="harbor"
|
|
kubectl create ns $NS
|
|
helm upgrade --install harbor ./charts/harbor \
|
|
--namespace $NS \
|
|
--values=${EXTRA_HELM_ARGS_HARBOR}
|
|
|
|
./tools/deployment/common/wait-for-pods.sh $NS
|
|
helm status harbor
|
|
|
|
helm test harbor -n $NS
|
|
|
|
#kubectl --namespace $NS get pod
|