File tree Expand file tree Collapse file tree 4 files changed +23
-1
lines changed Expand file tree Collapse file tree 4 files changed +23
-1
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ type: application
15
15
# This is the chart version. This version number should be incremented each time you make changes
16
16
# to the chart and its templates, including the app version.
17
17
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18
- version : 1.0.6
18
+ version : 1.0.7
19
19
20
20
# This is the version number of the application being deployed. This version number should be
21
21
# incremented each time you make changes to the application. Versions are not expected to
Original file line number Diff line number Diff line change 46
46
- name : http
47
47
containerPort : {{ .Values.service.port }}
48
48
protocol : TCP
49
+ - name : https
50
+ containerPort : {{ .Values.service.sdkRestServer.port }}
51
+ protocol : TCP
49
52
# livenessProbe:
50
53
# httpGet:
51
54
# path: /status
Original file line number Diff line number Diff line change
1
+ apiVersion : v1
2
+ kind : Service
3
+ metadata :
4
+ name : {{ include "kad.fullname" . }}-agent-sdk-rest-server
5
+ labels :
6
+ {{- include "kad.labels" . | nindent 4 }}
7
+ app.kubernetes.io/component : agent
8
+ spec :
9
+ type : {{ .Values.service.type }}
10
+ ports :
11
+ - port : {{ .Values.service.sdkRestServer.port }}
12
+ targetPort : https
13
+ protocol : TCP
14
+ name : https
15
+ selector :
16
+ {{- include "kad.selectorLabels" . | nindent 4 }}
17
+ app.kubernetes.io/component : agent
Original file line number Diff line number Diff line change 42
42
service :
43
43
type : ClusterIP
44
44
port : 8080
45
+ sdkRestServer :
46
+ port : 8443
45
47
46
48
DomainName : capten
47
49
You can’t perform that action at this time.
0 commit comments