From e5204adc33f3277323cfb2f273fc080b75a009d8 Mon Sep 17 00:00:00 2001 From: Curtis Ruck Date: Fri, 11 Mar 2022 19:45:17 -0500 Subject: [PATCH] add socket directory for ldapi:// --- charts/openldap/Chart.yaml | 2 +- charts/openldap/templates/deployment.yaml | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/charts/openldap/Chart.yaml b/charts/openldap/Chart.yaml index cfabb5f..7f379e2 100644 --- a/charts/openldap/Chart.yaml +++ b/charts/openldap/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: 1.0.14 +version: 1.0.15 # 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/openldap/templates/deployment.yaml b/charts/openldap/templates/deployment.yaml index a94c489..744a06d 100644 --- a/charts/openldap/templates/deployment.yaml +++ b/charts/openldap/templates/deployment.yaml @@ -86,6 +86,8 @@ spec: mountPath: "/data" - name: tmp mountPath: "/tmp" + - name: socket + mountPath: "/opt/openldap/var/run" - name: ldif-configs mountPath: "/ldifs/config" - name: ldif-objects @@ -99,6 +101,8 @@ spec: - name: data persistentVolumeClaim: claimName: {{ include "openldap.fullname" . }}-data + - name: socket + emptyDir: {} - name: tmp emptyDir: {} - name: ldif-configs