You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: charts/massbank3-frontend/values.yaml
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -5,8 +5,8 @@
5
5
# This will set the replicaset count more information can be found here: https://kubernetes.io/docs/concepts/workloads/controllers/replicaset/
6
6
replicaCount: 1
7
7
8
-
host: msbi.ipb-halle.de
9
-
pathPrefix: MassBank
8
+
host: "msbi.ipb-halle.de"
9
+
pathPrefix: "MassBank"
10
10
11
11
# This sets the container image more information can be found here: https://kubernetes.io/docs/concepts/containers/images/
12
12
image:
@@ -66,9 +66,9 @@ ingress:
66
66
# kubernetes.io/ingress.class: nginx
67
67
# kubernetes.io/tls-acme: "true"
68
68
hosts:
69
-
- host: msbi.ipb-halle.de
69
+
- host: "{{ .Values.host }}"
70
70
paths:
71
-
- path: /MassBank(/|$)(.*)
71
+
- path: "/{{ .Values.pathPrefix }}(/|$)(.*)"
72
72
pathType: ImplementationSpecific
73
73
tls: []
74
74
# - secretName: chart-example-tls
@@ -90,11 +90,11 @@ resources: {}
90
90
# This is to setup the liveness and readiness probes more information can be found here: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/
91
91
livenessProbe:
92
92
httpGet:
93
-
path: /MassBank/
93
+
path: "/{{ .Values.pathPrefix }}/"
94
94
port: http
95
95
readinessProbe:
96
96
httpGet:
97
-
path: /MassBank/
97
+
path: "/{{ .Values.pathPrefix }}/"
98
98
port: http
99
99
100
100
# This section is for setting up autoscaling more information can be found here: https://kubernetes.io/docs/concepts/workloads/autoscaling/
0 commit comments