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
1515# This is the chart version. This version number should be incremented each time you make changes
1616# to the chart and its templates, including the app version.
1717# Versions are expected to follow Semantic Versioning (https://semver.org/)
18- version : 1.0.6
18+ version : 1.0.7
1919
2020# This is the version number of the application being deployed. This version number should be
2121# incremented each time you make changes to the application. Versions are not expected to
Original file line number Diff line number Diff line change 4646 - name : http
4747 containerPort : {{ .Values.service.port }}
4848 protocol : TCP
49+ - name : https
50+ containerPort : {{ .Values.service.sdkRestServer.port }}
51+ protocol : TCP
4952 # livenessProbe:
5053 # httpGet:
5154 # 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 4242service :
4343 type : ClusterIP
4444 port : 8080
45+ sdkRestServer :
46+ port : 8443
4547
4648DomainName : capten
4749
You can’t perform that action at this time.
0 commit comments