This repository was archived by the owner on Aug 6, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
8 changed files
with
48 additions
and
56 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
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
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 |
---|---|---|
@@ -1,24 +1,7 @@ | ||
apiVersion: install.istio.io/v1alpha1 | ||
kind: IstioOperator | ||
spec: | ||
addonComponents: | ||
grafana: | ||
enabled: false | ||
istiocoredns: | ||
enabled: false | ||
kiali: | ||
enabled: false | ||
prometheus: | ||
enabled: false | ||
tracing: | ||
enabled: false | ||
components: | ||
citadel: | ||
enabled: false | ||
cni: | ||
enabled: false | ||
egressGateways: | ||
- enabled: false | ||
name: istio-egressgateway | ||
galley: | ||
enabled: false |
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 |
---|---|---|
@@ -1,5 +1,7 @@ | ||
curl -s https://codeload.github.com/kyma-project/kyma/zip/master --output kyma-master.zip | ||
unzip -qq kyma-master.zip kyma-master/resources/* | ||
REPO=${1:-kyma-project/kyma} | ||
BRANCH=${2:-master} | ||
curl -s https://codeload.github.com/${REPO}/zip/${BRANCH} --output kyma-src.zip | ||
unzip --qq -d ./tmp kyma-src.zip | ||
rm -rf ./resources | ||
mv kyma-master/resources . | ||
rm -Rf ./kyma-master* | ||
mv ./tmp/*/resources ./ | ||
rm -rf ./tmp |
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
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
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,6 @@ | ||
export KYMA_DOMAIN=$(kubectl get cm shoot-info -n kube-system -ojsonpath='{.data.domain}') | ||
export REGISTRY_VALUES="dockerRegistry.enableInternal=true" | ||
export REGISTRY_IP=127.0.0.1 | ||
export GARDENER=true | ||
|
||
./install-kyma.sh |
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