Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: deploying Eclipse Che on GCP #2018

Merged
merged 2 commits into from
Jun 7, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,27 @@
* The `helm` tool is available, with version 2.15 or higher. See link:https://helm.sh/[Helm].

.Procedure

* To install {prod-short} on {k8s-platform}, run the following `{prod-cli}` command:
ifeval::["{k8s-platform}" == "Google Cloud Platform"]
. Prepare the helmchart template `patch.yaml` file for the proper Dashboard ingress path exposure:
+
----
$ cat >patch.yaml<<EOF
> dashboard:
> ingressPath: /dashboard/*
> EOF
----
endif::[]
. Run the following `{prod-cli}` command to install {prod-short} on {k8s-platform}:
+
[subs="+attributes"]
----
ifeval::["{k8s-platform}" == "Google Cloud Platform"]
$ {prod-cli} server:deploy --installer=helm --platform=k8s --domain={domain} --multiuser --helm-patch-yaml patch.yaml
endif::[]
ifeval::["{k8s-platform}" != "Google Cloud Platform"]
$ {prod-cli} server:deploy --installer=helm --platform=k8s --domain={domain} --multiuser
› Current {kubernetes} context: 'minikube'
endif::[]
› Current {kubernetes} context: 'current-context'
✔ Verify {kubernetes} API...OK
✔ 👀 Looking for an already existing {prod} instance
✔ Verify if {prod} is deployed into namespace "{prod-namespace}"...it is not
Expand Down