Skip to content

Commit 78fc15d

Browse files
Merge pull request #2 from powerhome/add-initResources-for-containers
Update existingSecret to accept resources for initContainer
2 parents 191c0ba + 715c146 commit 78fc15d

File tree

7 files changed

+19
-11
lines changed

7 files changed

+19
-11
lines changed

Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ dependencies:
1313
repository: "file://charts/common"
1414
version: 1.10.x
1515
home: https://www.openldap.org
16-
version: 4.1.1
16+
version: 4.1.2
1717
appVersion: 2.6.3
1818
description: Community developed LDAP software
1919
icon: https://raw.githubusercontent.com/jp-gouin/helm-openldap/master/logo.png

charts/ltb-passwd/templates/_helpers.tpl

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ app.kubernetes.io/managed-by: {{ .Release.Service }}
4848
Generate chart secret name
4949
*/}}
5050
{{- define "ltb-passwd.secretName" -}}
51-
{{ default (include "ltb-passwd.fullname" .) .Values.global.existingSecret }}
51+
{{ default (include "ltb-passwd.fullname" .) .Values.existingSecret.name }}
5252
{{- end -}}
5353

5454
{{/*

templates/_helpers.tpl

+3-3
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Create the name of the service account to use
4646
Generate chart secret name
4747
*/}}
4848
{{- define "openldap.secretName" -}}
49-
{{ default (include "openldap.fullname" .) .Values.global.existingSecret }}
49+
{{ default (include "openldap.fullname" .) .Values.existingSecret.name }}
5050
{{- end -}}
5151

5252
{{/*
@@ -70,7 +70,7 @@ Generate olcSyncRepl list
7070
{{- $name := (include "openldap.fullname" .) }}
7171
{{- $namespace := .Release.Namespace }}
7272
{{- $cluster := .Values.replication.clusterName }}
73-
{{- $configPassword := ternary .Values.global.configPassword "%%CONFIG_PASSWORD%%" (empty .Values.global.existingSecret) }}
73+
{{- $configPassword := ternary .Values.global.configPassword "%%CONFIG_PASSWORD%%" (not .Values.existingSecret.enabled) }}
7474
{{- $retry := .Values.replication.retry }}
7575
{{- $timeout := .Values.replication.timeout }}
7676
{{- $starttls := .Values.replication.starttls }}
@@ -90,7 +90,7 @@ Generate olcSyncRepl list
9090
{{- $domain := (include "global.baseDomain" .) }}
9191
{{- $namespace := .Release.Namespace }}
9292
{{- $cluster := .Values.replication.clusterName }}
93-
{{- $adminPassword := ternary .Values.global.adminPassword "%%ADMIN_PASSWORD%%" (empty .Values.global.existingSecret) }}
93+
{{- $adminPassword := ternary .Values.global.adminPassword "%%ADMIN_PASSWORD%%" (not .Values.existingSecret.enabled) }}
9494
{{- $retry := .Values.replication.retry }}
9595
{{- $timeout := .Values.replication.timeout }}
9696
{{- $starttls := .Values.replication.starttls }}

templates/secret-ltb.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{{ if not .Values.global.existingSecret }}
1+
{{ if not .Values.existingSecret.enabled }}
22
apiVersion: v1
33
kind: Secret
44
metadata:

templates/secret.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{{ if not .Values.global.existingSecret }}
1+
{{ if not .Values.existingSecret.enabled }}
22
apiVersion: v1
33
kind: Secret
44
metadata:

templates/statefulset.yaml

+3-2
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ spec:
8484
- name: foo
8585
mountPath: bar
8686
{{- end }}
87-
{{- if .Values.global.existingSecret }}
87+
{{- if .Values.existingSecret.enabled }}
8888
- name: update-replication
8989
image: {{ include "openldap.image" . }}
9090
imagePullPolicy: {{ .Values.image.pullPolicy }}
@@ -97,6 +97,7 @@ spec:
9797
ls -al /custom_config
9898
sed -i -e "s/%%CONFIG_PASSWORD%%/${LDAP_CONFIG_ADMIN_PASSWORD}/g" /custom_config/*
9999
sed -i -e "s/%%ADMIN_PASSWORD%%/${LDAP_ADMIN_PASSWORD}/g" /custom_config/*
100+
resources: {{- toYaml .Values.existingSecret.resources | nindent 12 }}
100101
volumeMounts:
101102
- name: cm-replication-acls
102103
mountPath: "/cm-schemas-acls"
@@ -252,7 +253,7 @@ spec:
252253
claimName: {{ .Values.persistence.existingClaim }}
253254
{{- end }}
254255
{{- end }}
255-
{{- if .Values.global.existingSecret }}
256+
{{- if .Values.existingSecret.enabled }}
256257
- name: cm-replication-acls
257258
configMap:
258259
name: {{ template "openldap.fullname" . }}-replication-acls

values.yaml

+9-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@ global:
1414
#imagePullSecrets: [""]
1515
## ldapDomain , can be explicit (e.g dc=toto,c=ca) or domain based (e.g example.com)
1616
ldapDomain: "example.org"
17-
# Specifies an existing secret to be used for admin and config user passwords. The expected key are LDAP_ADMIN_PASSWORD and LDAP_CONFIG_ADMIN_PASSWORD.
18-
# existingSecret: ""
1917
## Default Passwords to use, stored as a secret. Not used if existingSecret is set.
2018
adminPassword: Not@SecurePassw0rd
2119
configPassword: Not@SecurePassw0rd
@@ -46,6 +44,14 @@ clusterDomain: cluster.local
4644
##
4745
extraDeploy: []
4846

47+
# Specifies an existing secret to be used for admin and config user passwords. The expected key are LDAP_ADMIN_PASSWORD and LDAP_CONFIG_ADMIN_PASSWORD.
48+
existingSecret:
49+
enabled: false
50+
name: ""
51+
resources:
52+
limits: {}
53+
requests: {}
54+
4955
replicaCount: 3
5056

5157
image:
@@ -227,6 +233,7 @@ customStartupProbe: {}
227233
resources:
228234
limits: {}
229235
requests: {}
236+
230237
## Configure Pods Security Context
231238
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod
232239
## @param podSecurityContext.enabled Enabled OPENLDAP pods' Security Context

0 commit comments

Comments
 (0)