-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Run dashboard in a dedicated deployment
- Loading branch information
1 parent
25ddfb2
commit c5273ec
Showing
10 changed files
with
221 additions
and
5 deletions.
There are no files selected for viewing
57 changes: 57 additions & 0 deletions
57
deploy/kubernetes/helm/che/templates/dashboard-deployment.yaml
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,57 @@ | ||
# | ||
# Copyright (c) 2012-2018 Red Hat, Inc. | ||
# This program and the accompanying materials are made | ||
# available under the terms of the Eclipse Public License 2.0 | ||
# which is available at https://www.eclipse.org/legal/epl-2.0/ | ||
# | ||
# SPDX-License-Identifier: EPL-2.0 | ||
# | ||
|
||
apiVersion: apps/v1 | ||
kind: Deployment | ||
metadata: | ||
labels: | ||
app: che | ||
component: che-dashboard | ||
name: che-dashboard | ||
spec: | ||
replicas: 1 | ||
revisionHistoryLimit: 2 | ||
selector: | ||
matchLabels: | ||
app: che | ||
component: che-dashboard | ||
strategy: | ||
type: Recreate | ||
template: | ||
metadata: | ||
labels: | ||
app: che | ||
component: che-dashboard | ||
spec: | ||
containers: | ||
- image: {{ .Values.cheDashboardImage }} | ||
imagePullPolicy: {{ .Values.cheImagePullPolicy }} | ||
livenessProbe: | ||
httpGet: | ||
path: / | ||
port: 8080 | ||
scheme: HTTP | ||
initialDelaySeconds: 120 | ||
timeoutSeconds: 10 | ||
readinessProbe: | ||
httpGet: | ||
path: / | ||
port: 8080 | ||
scheme: HTTP | ||
initialDelaySeconds: 15 | ||
timeoutSeconds: 60 | ||
name: che-dashboard | ||
ports: | ||
- containerPort: 8080 | ||
name: http | ||
resources: | ||
limits: | ||
memory: 256Mi | ||
requests: | ||
memory: 128Mi |
25 changes: 25 additions & 0 deletions
25
deploy/kubernetes/helm/che/templates/dashboard-service.yaml
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,25 @@ | ||
# | ||
# Copyright (c) 2012-2019 Red Hat, Inc. | ||
# This program and the accompanying materials are made | ||
# available under the terms of the Eclipse Public License 2.0 | ||
# which is available at https://www.eclipse.org/legal/epl-2.0/ | ||
# | ||
# SPDX-License-Identifier: EPL-2.0 | ||
# | ||
|
||
apiVersion: v1 | ||
kind: Service | ||
metadata: | ||
labels: | ||
app: che | ||
component: che-dashboard | ||
name: che-dashboard | ||
spec: | ||
ports: | ||
- name: http | ||
port: 8080 | ||
protocol: TCP | ||
targetPort: 8080 | ||
selector: | ||
app: che | ||
component: che-dashboard |
34 changes: 34 additions & 0 deletions
34
deploy/kubernetes/helm/che/templates/dashboard-traefik-gateway-configmap.yaml
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,34 @@ | ||
# | ||
# Copyright (c) 2012-2018 Red Hat, Inc. | ||
# This program and the accompanying materials are made | ||
# available under the terms of the Eclipse Public License 2.0 | ||
# which is available at https://www.eclipse.org/legal/epl-2.0/ | ||
# | ||
# SPDX-License-Identifier: EPL-2.0 | ||
# | ||
|
||
# TODO it's not working yet | ||
|
||
{{- if and (eq .Values.global.serverStrategy "single-host") (eq .Values.global.singleHostExposure "gateway") }} | ||
|
||
apiVersion: v1 | ||
kind: ConfigMap | ||
metadata: | ||
labels: | ||
app: che | ||
component: che-gateway-config | ||
name: che-gateway-route-dashboard | ||
data: | ||
dashboard.yml: | | ||
http: | ||
routers: | ||
che-dashboard: | ||
rule: "PathPrefix(`/dashboard/`)" | ||
service: che-dashboard | ||
priority: 1 | ||
services: | ||
che-dashboard: | ||
loadBalancer: | ||
servers: | ||
- url: 'http://che-dashboard:8080' | ||
{{- end }} |
48 changes: 48 additions & 0 deletions
48
deploy/kubernetes/helm/che/templates/ingress-dashboard.yaml
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,48 @@ | ||
# | ||
# Copyright (c) 2012-2019 Red Hat, Inc. | ||
# This program and the accompanying materials are made | ||
# available under the terms of the Eclipse Public License 2.0 | ||
# which is available at https://www.eclipse.org/legal/epl-2.0/ | ||
# | ||
# SPDX-License-Identifier: EPL-2.0 | ||
# | ||
|
||
# If single-host powered by gateway is configured - the corresponding gateway configmap is expexted to be created | ||
# but not this ingress | ||
{{- if not (and (eq .Values.global.serverStrategy "single-host") (eq .Values.global.singleHostExposure "gateway")) }} | ||
|
||
apiVersion: extensions/v1beta1 | ||
kind: Ingress | ||
metadata: | ||
name: che-dashboard-ingress | ||
annotations: | ||
kubernetes.io/ingress.class: "nginx" | ||
{{ .Values.global.ingressAnnotationsPrefix }}ingress.kubernetes.io/proxy-read-timeout: "3600" | ||
{{ .Values.global.ingressAnnotationsPrefix }}ingress.kubernetes.io/proxy-connect-timeout: "3600" | ||
{{- if and .Values.global.tls .Values.global.tls.enabled }} | ||
{{ .Values.global.ingressAnnotationsPrefix }}ingress.kubernetes.io/ssl-redirect: "true" | ||
{{- else }} | ||
{{ .Values.global.ingressAnnotationsPrefix }}ingress.kubernetes.io/ssl-redirect: "false" | ||
{{- end }} | ||
spec: | ||
{{- if .Values.global.tls.enabled }} | ||
tls: | ||
- hosts: | ||
- {{ template "cheHost" . }} | ||
secretName: {{ .Values.global.tls.secretName }} | ||
{{- end }} | ||
rules: | ||
{{- if ne .Values.global.serverStrategy "default-host" }} | ||
- host: {{ template "cheHost" . }} | ||
http: | ||
{{- else }} | ||
- http: | ||
{{- end }} | ||
paths: | ||
# The path rule for Che Dashboard | ||
- path: /dashboard | ||
backend: | ||
serviceName: che-dashboard | ||
servicePort: 8080 | ||
|
||
{{- end }} |
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
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 |
---|---|---|
|
@@ -9,4 +9,3 @@ | |
|
||
global: | ||
multiuser: true | ||
|
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,34 @@ | ||
Multi-host Single User | ||
```sh | ||
export CHART_DIR=/home/sleshche/projects/che/deploy/kubernetes/helm/che | ||
helm upgrade --install che \ | ||
--force \ | ||
--namespace che \ | ||
--set global.cheDomain=192.168.99.100.nip.io \ | ||
--set global.ingressDomain=192.168.99.100.nip.io \ | ||
--set cheImage=sleshchenko/che-server:cut-dashboard \ | ||
--set che.disableProbes=false \ | ||
--set global.serverStrategy=single-host \ | ||
--set global.tls.useSelfSignedCerts=true \ | ||
-f ${CHART_DIR}/values/tls.yaml \ | ||
-f ${CHART_DIR}/values/multi-user.yaml \ | ||
${CHART_DIR} | ||
``` | ||
|
||
```sh | ||
export CHART_DIR=/home/sleshche/projects/che/deploy/kubernetes/helm/che | ||
helm upgrade --install che \ | ||
--force \ | ||
--namespace che \ | ||
--set global.cheDomain=192.168.99.100.nip.io \ | ||
--set global.ingressDomain=192.168.99.100.nip.io \ | ||
--set cheImage=sleshchenko/che-server:cut-dashboard \ | ||
--set che.disableProbes=false \ | ||
--set global.tls.useSelfSignedCerts=true \ | ||
--set global.serverStrategy=single-host \ | ||
--set cheSinglehostGateway.deploy=true \ | ||
--set global.singleHostExposure=gateway \ | ||
--set global.multiuser=true \ | ||
-f ${CHART_DIR}/values/tls.yaml \ | ||
${CHART_DIR} | ||
``` |
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