We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4869c22 commit 19a88ceCopy full SHA for 19a88ce
3 files changed
charts/ldap/Chart.yaml
@@ -1,3 +1,3 @@
1
---
2
name: ldap
3
-version: 0.3.0
+version: 0.4.0
charts/ldap/templates/service.yaml
@@ -3,8 +3,10 @@ apiVersion: v1
kind: Service
4
metadata:
5
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: ldap
charts/ldap/values.yaml
@@ -1,10 +1,13 @@
image:
repository: "haproxy"
- tag: "2.8.15"
+ tag: "2.8.24"
pullPolicy: IfNotPresent
replicas: 1
servers: []
resources: {}
nodeSelector: {}
tolerations: []
affinity: {}
+service:
+ annotations:
13
+ cloud.google.com/neg: '{"ingress":false}'
0 commit comments