Skip to content

Commit d75fc35

Browse files
committed
Fix syntax
Signed-off-by: kunal-511 <[email protected]>
1 parent 7316ea5 commit d75fc35

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

tests/helm_kustomize_compare.sh

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -213,6 +213,33 @@ case "$COMPONENT" in
213213
["platform-agnostic-postgresql"]="kubeflow"
214214
)
215215
;;
216+
217+
"notebook-controller")
218+
CHART_DIR="$ROOT_DIR/experimental/helm/charts/notebook-controller"
219+
MANIFESTS_DIR="$ROOT_DIR/applications/jupyter/notebook-controller/upstream"
220+
221+
declare -A KUSTOMIZE_PATHS=(
222+
["base"]="$MANIFESTS_DIR/base"
223+
["kubeflow"]="$MANIFESTS_DIR/overlays/kubeflow"
224+
["standalone"]="$MANIFESTS_DIR/overlays/standalone"
225+
)
226+
227+
declare -A HELM_VALUES=(
228+
["base"]="$CHART_DIR/ci/base-values.yaml"
229+
["kubeflow"]="$CHART_DIR/ci/kubeflow-values.yaml"
230+
["standalone"]="$CHART_DIR/ci/standalone-values.yaml"
231+
["webhook"]="$CHART_DIR/ci/webhook-values.yaml"
232+
["production"]="$CHART_DIR/ci/production-values.yaml"
233+
)
234+
235+
declare -A NAMESPACES=(
236+
["base"]="notebook-controller-system"
237+
["kubeflow"]="kubeflow"
238+
["standalone"]="notebook-controller-system"
239+
["webhook"]="kubeflow"
240+
["production"]="kubeflow"
241+
)
242+
;;
216243

217244
*)
218245
echo "ERROR: Unknown component: $COMPONENT"

0 commit comments

Comments
 (0)