forked from kubeflow/manifests
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
37e6740
commit 4c9a896
Showing
2 changed files
with
20 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#!/bin/bash | ||
set -e | ||
echo "Installing Istio-cni ..." | ||
cd common/istio-cni-1-17 | ||
kustomize build istio-crds/base | kubectl apply -f - | ||
kustomize build istio-namespace/base | kubectl apply -f - | ||
kustomize build istio-install/base | kubectl apply -f - |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#!/bin/bash | ||
set -euo pipefail | ||
echo "Installing KNative with isstio-cni ..." | ||
set +e | ||
kustomize build common/knative/knative-serving/base | kubectl apply -f - | ||
set -e | ||
kustomize build common/knative/knative-serving/base | kubectl apply -f - | ||
|
||
kustomize build common/istio-cni-1-17/cluster-local-gateway/base | kubectl apply -f - | ||
kustomize build common/istio-cni-1-17/kubeflow-istio-resources/base | kubectl apply -f - | ||
|
||
kubectl wait --for=condition=Ready pods --all --all-namespaces --timeout 600s | ||
kubectl patch cm config-domain --patch '{"data":{"example.com":""}}' -n knative-serving |