Fix helm3 ClusterIP updates (#20905)

Signed-off-by: Łukasz Sowa <lukasz@main.dev>
This commit is contained in:
Łukasz Sowa
2020-05-29 02:21:15 -07:00
committed by GitHub
parent d5544146d0
commit 516dfadcde
4 changed files with 5 additions and 4 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
apiVersion: v1
name: openldap
home: https://www.openldap.org
version: 1.2.3
version: 1.2.4
appVersion: 2.4.48
description: Community developed LDAP software
icon: http://www.openldap.org/images/headers/LDAPworm.gif
+1 -1
View File
@@ -34,7 +34,7 @@ The following table lists the configurable parameters of the openldap chart and
| `podAnnotations` | Annotations to add to the pod | `{}` |
| `existingSecret` | Use an existing secret for admin and config user passwords | `""` |
| `service.annotations` | Annotations to add to the service | `{}` |
| `service.clusterIP` | IP address to assign to the service | `""` |
| `service.clusterIP` | IP address to assign to the service | `nil` |
| `service.externalIPs` | Service external IP addresses | `[]` |
| `service.ldapPort` | External service port for LDAP | `389` |
| `service.loadBalancerIP` | IP address to assign to load balancer (if supported) | `""` |
+3 -1
View File
@@ -15,7 +15,9 @@ metadata:
{{ toYaml .Values.extraLabels | indent 4 }}
{{- end }}
spec:
clusterIP: {{ .Values.service.clusterIP | quote }}
{{- with .Values.service.clusterIP }}
clusterIP: {{ . | quote }}
{{- end }}
{{- if .Values.service.externalIPs }}
externalIPs:
{{ toYaml .Values.service.externalIPs | indent 4 }}
-1
View File
@@ -38,7 +38,6 @@ extraLabels: {}
podAnnotations: {}
service:
annotations: {}
clusterIP: ""
ldapPort: 389
sslLdapPort: 636 # Only used if tls.enabled is true