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

Commit

Permalink
Merge pull request #119 from FabianKramm/master
Browse files Browse the repository at this point in the history
fix(chart): apiService -> apiservice
  • Loading branch information
FabianKramm authored Apr 23, 2021
2 parents 2551d1f + 89ac3d0 commit a1afb45
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion chart/templates/apiserviceservice.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ spec:
- name: apiservice
port: 443
protocol: TCP
targetPort: {{ .Values.apiService.port }}
targetPort: {{ .Values.apiservice.port }}
selector:
app: {{ template "kiosk.fullname" . }}
release: {{ .Release.Name }}
Expand Down
6 changes: 3 additions & 3 deletions chart/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ spec:
containerPort: 9443
protocol: TCP
- name: apiservice
containerPort: {{ .Values.apiService.port }}
containerPort: {{ .Values.apiservice.port }}
protocol: TCP
command:
{{- range $f := .Values.kiosk.command }}
Expand Down Expand Up @@ -65,7 +65,7 @@ spec:
livenessProbe:
httpGet:
path: /healthz
port: {{ .Values.apiService.port }}
port: {{ .Values.apiservice.port }}
scheme: HTTPS
failureThreshold: 10
initialDelaySeconds: 5
Expand All @@ -75,7 +75,7 @@ spec:
readinessProbe:
httpGet:
path: /healthz
port: {{ .Values.apiService.port }}
port: {{ .Values.apiservice.port }}
scheme: HTTPS
failureThreshold: 10
initialDelaySeconds: 5
Expand Down

0 comments on commit a1afb45

Please sign in to comment.