6 Commits

Author SHA1 Message Date
373cb7ffde Bump version to v0.3.1
All checks were successful
Release workflow / Publish Helm chart (push) Successful in 32s
Release workflow / Publish Docker image (push) Successful in 2m21s
2023-10-17 10:12:03 -04:00
625cd71ef7 Formatting 2023-10-17 10:11:19 -04:00
2664ae3f11 Use named port in service 2023-10-17 10:08:37 -04:00
4c0ef13c61 Fix service selector labels 2023-10-17 10:08:21 -04:00
ac9a9fd796 Fix default repository 2023-10-17 09:59:21 -04:00
7bd3f5769a Bump version
All checks were successful
Release workflow / Publish Helm chart (push) Successful in 32s
Release workflow / Publish Docker image (push) Successful in 2m19s
2023-10-16 16:59:42 -04:00
4 changed files with 8 additions and 9 deletions

View File

@@ -1,4 +1,4 @@
apiVersion: v2 apiVersion: v2
description: A Helm chart for cert-manager-webhook-gandi description: A Helm chart for cert-manager-webhook-gandi
name: cert-manager-webhook-gandi name: cert-manager-webhook-gandi
version: v0.2.0 version: v0.3.1

View File

@@ -49,20 +49,20 @@ spec:
mountPath: /tls mountPath: /tls
readOnly: true readOnly: true
resources: resources:
{{ toYaml .Values.resources | indent 12 }} {{- toYaml .Values.resources | nindent 12 }}
volumes: volumes:
- name: certs - name: certs
secret: secret:
secretName: {{ include "cert-manager-webhook-gandi.servingCertificate" . }} secretName: {{ include "cert-manager-webhook-gandi.servingCertificate" . }}
{{- with .Values.nodeSelector }} {{- with .Values.nodeSelector }}
nodeSelector: nodeSelector:
{{ toYaml . | indent 8 }} {{- toYaml . | nindent 8 }}
{{- end }} {{- end }}
{{- with .Values.affinity }} {{- with .Values.affinity }}
affinity: affinity:
{{ toYaml . | indent 8 }} {{- toYaml . | nindent 8 }}
{{- end }} {{- end }}
{{- with .Values.tolerations }} {{- with .Values.tolerations }}
tolerations: tolerations:
{{ toYaml . | indent 8 }} {{- toYaml . | nindent 8 }}
{{- end }} {{- end }}

View File

@@ -9,9 +9,8 @@ spec:
type: {{ .Values.service.type }} type: {{ .Values.service.type }}
ports: ports:
- port: {{ .Values.service.port }} - port: {{ .Values.service.port }}
targetPort: {{ .Values.containerport }} targetPort: https
protocol: TCP protocol: TCP
name: https name: https
selector: selector:
app: {{ include "cert-manager-webhook-gandi.name" . }} {{- include "cert-manager-webhook-gandi.selectorLabels" . | nindent 4 }}
release: {{ .Release.Name }}

View File

@@ -4,7 +4,7 @@ certManager:
namespace: cert-manager namespace: cert-manager
serviceAccountName: cert-manager serviceAccountName: cert-manager
image: image:
repository: galen/cert-manager-webhook-gandi-server repository: git.mug.lv/galen/cert-manager-webhook-gandi-server
# tag: X.Y.Z defaults to app version # tag: X.Y.Z defaults to app version
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
nameOverride: '' nameOverride: ''