File tree Expand file tree Collapse file tree 4 files changed +58
-1
lines changed Expand file tree Collapse file tree 4 files changed +58
-1
lines changed Original file line number Diff line number Diff line change 10
10
# SPDX-License-Identifier: EPL-2.0
11
11
---
12
12
apiVersion : v1
13
- version : 1.0.1
13
+ version : 1.1.0
14
14
appVersion : " 0.3.0M6-mysql"
15
15
description : |
16
16
Eclipse hawkBit™ is a domain independent back-end framework for rolling out software updates
@@ -29,3 +29,5 @@ maintainers:
29
29
30
30
- name : axdotl
31
31
32
+ - name : ctron
33
+
Original file line number Diff line number Diff line change
1
+ #
2
+ # Copyright (c) 2020 Contributors to the Eclipse Foundation
3
+ #
4
+ # See the NOTICE file(s) distributed with this work for additional
5
+ # information regarding copyright ownership.
6
+ #
7
+ # This program and the accompanying materials are made available under the
8
+ # terms of the Eclipse Public License 2.0 which is available at
9
+ # http://www.eclipse.org/legal/epl-2.0
10
+ #
11
+ # SPDX-License-Identifier: EPL-2.0
12
+ #
13
+
14
+ securityContext :
15
+ enabled : false
16
+
17
+ mysql :
18
+ master :
19
+ securityContext :
20
+ enabled : false
21
+
22
+ rabbitmq :
23
+ securityContext :
24
+ enabled : false
25
+
26
+ routes :
27
+ enabled : true
Original file line number Diff line number Diff line change
1
+ {{- if .Values.routes.enabled -}}
2
+ {{- $fullName := include "hawkbit.fullname" . -}}
3
+ apiVersion : route.openshift.io/v1
4
+ kind : Route
5
+ metadata :
6
+ name : {{ $fullName }}
7
+ labels :
8
+ {{ include "hawkbit.labels" . | indent 4 }}
9
+ {{- with .Values.routes.annotations }}
10
+ annotations :
11
+ {{- toYaml . | nindent 4 }}
12
+ {{- end }}
13
+ spec :
14
+ port :
15
+ targetPort : http
16
+ to :
17
+ kind : Service
18
+ name : {{ include "hawkbit.fullname" . }}
19
+ {{- if .Values.routes.tls }}
20
+ tls :
21
+ insecureEdgeTerminationPolicy : Redirect
22
+ termination : edge
23
+ {{- end }}
24
+ {{- end }}
Original file line number Diff line number Diff line change @@ -69,6 +69,10 @@ ingress:
69
69
# hosts:
70
70
# - hawkbit.local
71
71
72
+ routes :
73
+ enabled : false
74
+ tls : true
75
+
72
76
# env vars for configuration
73
77
env :
74
78
springDatasourceHost : " hawkbit-mysql"
You can’t perform that action at this time.
0 commit comments