We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 19a88ce commit 2582018Copy full SHA for 2582018
3 files changed
charts/webhook/Chart.yaml
@@ -1,3 +1,3 @@
1
---
2
name: webhook
3
-version: 0.4.1
+version: 0.5.0
charts/webhook/templates/service.yaml
@@ -3,8 +3,10 @@ apiVersion: v1
kind: Service
4
metadata:
5
name: {{ .Values.name }}
6
+ {{- with .Values.service.annotations }}
7
annotations:
- cloud.google.com/neg: '{"ingress":false}'
8
+ {{- toYaml . | nindent 4 }}
9
+ {{- end }}
10
spec:
11
selector:
12
app: {{ .Values.name }}
charts/webhook/values.yaml
@@ -8,6 +8,9 @@ resources: {}
nodeSelector: {}
tolerations: []
affinity: {}
+service:
+ annotations:
13
+ cloud.google.com/neg: '{"ingress":false}'
14
#integration parameters
15
matrix:
16
id: ""
0 commit comments