Skip to content
This repository was archived by the owner on Apr 25, 2024. It is now read-only.

Commit a1afb45

Browse files
authored
Merge pull request #119 from FabianKramm/master
fix(chart): apiService -> apiservice
2 parents 2551d1f + 89ac3d0 commit a1afb45

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

chart/templates/apiserviceservice.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ spec:
2828
- name: apiservice
2929
port: 443
3030
protocol: TCP
31-
targetPort: {{ .Values.apiService.port }}
31+
targetPort: {{ .Values.apiservice.port }}
3232
selector:
3333
app: {{ template "kiosk.fullname" . }}
3434
release: {{ .Release.Name }}

chart/templates/deployment.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ spec:
2828
containerPort: 9443
2929
protocol: TCP
3030
- name: apiservice
31-
containerPort: {{ .Values.apiService.port }}
31+
containerPort: {{ .Values.apiservice.port }}
3232
protocol: TCP
3333
command:
3434
{{- range $f := .Values.kiosk.command }}
@@ -65,7 +65,7 @@ spec:
6565
livenessProbe:
6666
httpGet:
6767
path: /healthz
68-
port: {{ .Values.apiService.port }}
68+
port: {{ .Values.apiservice.port }}
6969
scheme: HTTPS
7070
failureThreshold: 10
7171
initialDelaySeconds: 5
@@ -75,7 +75,7 @@ spec:
7575
readinessProbe:
7676
httpGet:
7777
path: /healthz
78-
port: {{ .Values.apiService.port }}
78+
port: {{ .Values.apiservice.port }}
7979
scheme: HTTPS
8080
failureThreshold: 10
8181
initialDelaySeconds: 5

0 commit comments

Comments
 (0)