Skip to content

Commit

Permalink
Merge pull request #44 from sellitforcache/port-8443
Browse files Browse the repository at this point in the history
serve on container port 8443
  • Loading branch information
mlbiam authored Nov 27, 2023
2 parents 315944d + f83fc96 commit 28c77f1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions deploy/charts/kube-oidc-proxy/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ spec:
image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
imagePullPolicy: {{ .Values.image.pullPolicy }}
ports:
- containerPort: 443
- containerPort: 8443
- containerPort: 8080
readinessProbe:
httpGet:
Expand All @@ -38,7 +38,7 @@ spec:
periodSeconds: 10
command: ["kube-oidc-proxy"]
args:
- "--secure-port=443"
- "--secure-port=8443"
- "--tls-cert-file=/etc/oidc/tls/crt.pem"
- "--tls-private-key-file=/etc/oidc/tls/key.pem"
- "--oidc-client-id=$(OIDC_CLIENT_ID)"
Expand Down
2 changes: 1 addition & 1 deletion deploy/charts/kube-oidc-proxy/templates/service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ spec:
{{- end }}
ports:
- port: {{ .Values.service.port }}
targetPort: 443
targetPort: 8443
protocol: TCP
name: https
selector:
Expand Down

0 comments on commit 28c77f1

Please sign in to comment.