Skip to content
This repository was archived by the owner on May 3, 2024. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion deploy/cert-manager-webhook-gandi/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ spec:
image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
imagePullPolicy: {{ .Values.image.pullPolicy }}
args:
- --secure-port={{ .Values.containerport }}
- --tls-cert-file=/tls/tls.crt
- --tls-private-key-file=/tls/tls.key
{{- if .Values.logLevel }}
Expand All @@ -36,7 +37,7 @@ spec:
value: {{ .Values.groupName | quote }}
ports:
- name: https
containerPort: 443
containerPort: {{ .Values.containerport }}
protocol: TCP
livenessProbe:
httpGet:
Expand Down
2 changes: 1 addition & 1 deletion deploy/cert-manager-webhook-gandi/templates/service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ spec:
type: {{ .Values.service.type }}
ports:
- port: {{ .Values.service.port }}
targetPort: https
targetPort: {{ .Values.containerport }}
protocol: TCP
name: https
selector:
Expand Down
1 change: 1 addition & 0 deletions deploy/cert-manager-webhook-gandi/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ fullnameOverride: ''
service:
type: ClusterIP
port: 443
containerport: 8443
features:
apiPriorityAndFairness: false
resources: {}
Expand Down