diff --git a/charts/terrakube/Chart.yaml b/charts/terrakube/Chart.yaml index 556a4ea..2825910 100644 --- a/charts/terrakube/Chart.yaml +++ b/charts/terrakube/Chart.yaml @@ -15,7 +15,7 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 3.17.2 +version: 3.17.3 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to diff --git a/charts/terrakube/templates/deployment-openldap.yaml b/charts/terrakube/templates/deployment-openldap.yaml index 2bc6bfc..af49b89 100644 --- a/charts/terrakube/templates/deployment-openldap.yaml +++ b/charts/terrakube/templates/deployment-openldap.yaml @@ -22,7 +22,7 @@ spec: spec: containers: - name: terrakube-openldap - image: bitnami/openldap:2.6.4-debian-11-r4 + image: {{ .Values.openldap.image }}:{{ .Values.openldap.version }} env: - name: LDAP_ADMIN_USERNAME value: "admin" diff --git a/charts/terrakube/values.yaml b/charts/terrakube/values.yaml index 5045294..7e0ed1d 100644 --- a/charts/terrakube/values.yaml +++ b/charts/terrakube/values.yaml @@ -18,6 +18,8 @@ security: ## OpenLdap openldap: + image: "bitnami/openldap" + version: "2.6.4-debian-11-r4" podLabels: {} securityContext: {} containerSecurityContext: {}