charts/tools/gate/harbor/200-install.sh
Ubuntu d9b7c293e1 chore(gate): moves overrides into common location
This patchset allows for overrides to be set and ingested by the gates
as well as the AIO.

Change-Id: I27b6d476d9f3b360edc03dd84669ca236cbfa337
2021-01-06 18:04:44 +00:00

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