We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5d3a92a commit bf2069aCopy full SHA for bf2069a
3 files changed
charts/sentry-webhook/Chart.yaml
@@ -1,3 +1,3 @@
1
---
2
name: sentry-webhook
3
-version: 0.0.2
+version: 0.1.0
charts/sentry-webhook/templates/ingress.yaml
@@ -3,6 +3,10 @@ apiVersion: networking.k8s.io/v1
kind: Ingress
4
metadata:
5
6
+ {{- if or .Values.ingress.annotations .Values.commonAnnotations }}
7
+ {{ $annotations := merge .Values.ingress.annotations .Values.ingress.commonAnnotations }}
8
+ annotations: {{ toYaml $annotations | nindent 4 }}
9
+ {{- end }}
10
spec:
11
{{- if .Values.ingress.ingressClassName }}
12
ingressClassName: {{ .Values.ingress.ingressClassName }}
charts/sentry-webhook/values.yaml
@@ -17,6 +17,8 @@ conf:
17
ingress:
18
host: ""
19
ingressClassName: nginx
20
+ commonAnnotations: {}
21
+ annotations: {}
22
tls: []
23
#tls:
24
# - hosts:
0 commit comments