Skip to content

Commit 9a13a60

Browse files
committed
fix(traefik-errors): fix annotations in service and deployment
1 parent f8966bb commit 9a13a60

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

charts/traefik-errors/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ apiVersion: v2
22
type: application
33
name: traefik-errors
44
description: A Helm chart for custom traefik error pages
5-
version: 0.0.1
5+
version: 0.0.2
66
appVersion: "0.0.0"

charts/traefik-errors/templates/deployment.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ metadata:
88
{{- with .Values.deployment.labels }}
99
{{ toYaml . | indent 4 }}
1010
{{- end }}
11+
{{- with .Values.deployment.annotations }}
12+
annotations:
13+
{{- toYaml . | nindent 4 }}
14+
{{- end }}
1115
spec:
1216
{{- if .Values.deployment.replicas }}
1317
replicas: {{ .Values.deployment.replicas }}

charts/traefik-errors/templates/service.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ metadata:
88
{{- with .Values.service.labels }}
99
{{ toYaml . | indent 4 }}
1010
{{- end }}
11-
{{- with .Values.deployment.annotations }}
11+
{{- with .Values.service.annotations }}
1212
annotations:
1313
{{- toYaml . | nindent 4 }}
1414
{{- end }}

0 commit comments

Comments
 (0)