You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
471 B
12 lines
471 B
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
echo "Installing Profiles Controller"
|
|
kustomize build apps/profiles/upstream/overlays/kubeflow | kubectl apply -f -
|
|
kubectl -n kubeflow wait --for=condition=Ready pods -l kustomize.component=profiles --timeout 180s
|
|
|
|
echo "Installing Multitenancy Kubeflow Roles"
|
|
kustomize build common/kubeflow-roles/base | kubectl apply -f -
|
|
|
|
echo "Installing Multitenancy Network policies"
|
|
kustomize build common/networkpolicies/base | kubectl apply -f -
|
|
|