mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
Fix helm3 ClusterIP updates (#20905)
Signed-off-by: Łukasz Sowa <lukasz@main.dev>
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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) | `""` |
|
||||
|
||||
@@ -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 }}
|
||||
|
||||
@@ -38,7 +38,6 @@ extraLabels: {}
|
||||
podAnnotations: {}
|
||||
service:
|
||||
annotations: {}
|
||||
clusterIP: ""
|
||||
|
||||
ldapPort: 389
|
||||
sslLdapPort: 636 # Only used if tls.enabled is true
|
||||
|
||||
Reference in New Issue
Block a user