fix some openldap issues

This commit is contained in:
kjeld Schouten-Lebbing
2021-08-31 23:21:38 +02:00
parent f774a9012c
commit e11f559579
3 changed files with 47 additions and 20 deletions
+1 -1
View File
@@ -26,4 +26,4 @@ sources:
- https://github.com/jp-gouin/helm-openldap - https://github.com/jp-gouin/helm-openldap
- https://github.com/osixia/docker-openldap - https://github.com/osixia/docker-openldap
type: application type: application
version: 1.7.12 version: 1.7.13
+44 -17
View File
@@ -737,7 +737,7 @@ questions:
description: "Path inside the container the storage is mounted" description: "Path inside the container the storage is mounted"
schema: schema:
type: string type: string
default: "/var/lib/ldap" default: "/var/lib/ldap/"
hidden: true hidden: true
- variable: medium - variable: medium
label: "EmptyDir Medium" label: "EmptyDir Medium"
@@ -771,7 +771,7 @@ questions:
type: string type: string
default: "100Gi" default: "100Gi"
- variable: slapd - variable: slapd
label: "slapd Storage" label: "App slapd Storage"
description: "Stores the Application slapd." description: "Stores the Application slapd."
schema: schema:
type: dict type: dict
@@ -782,26 +782,12 @@ questions:
type: boolean type: boolean
default: true default: true
hidden: true hidden: true
- variable: noMount
label: "Do not mount this storage inside the main pod"
schema:
type: boolean
default: true
hidden: true
- variable: forceName
label: "Override PVC Name (advanced)"
description: "Forces a certain name for the PVC"
schema:
type: string
default: "db"
hidden: true
- variable: type - variable: type
label: "(Advanced) Type of Storage" label: "(Advanced) Type of Storage"
description: "Sets the persistence type" description: "Sets the persistence type"
schema: schema:
type: string type: string
default: "pvc" default: "pvc"
hidden: true
enum: enum:
- value: "pvc" - value: "pvc"
description: "pvc" description: "pvc"
@@ -812,12 +798,53 @@ questions:
show_if: [["type", "=", "pvc"]] show_if: [["type", "=", "pvc"]]
type: string type: string
default: "SCALE-ZFS" default: "SCALE-ZFS"
- variable: setPermissions
label: "Automatic Permissions"
description: "Automatically set permissions on install"
schema:
show_if: [["type", "=", "hostPath"]]
type: boolean
default: true
- variable: readOnly
label: "readOnly"
schema:
type: boolean
default: false
- variable: hostPath
label: "hostPath"
description: "Path inside the container the storage is mounted"
schema:
show_if: [["type", "=", "hostPath"]]
type: hostpath
- variable: hostPathType
label: "hostPath Type"
schema:
show_if: [["type", "=", "hostPath"]]
type: string
default: ""
enum:
- value: ""
description: "Default"
- value: "DirectoryOrCreate"
description: "DirectoryOrCreate"
- value: "Directory"
description: "Directory"
- value: "FileOrCreate"
description: "FileOrCreate"
- value: "File"
description: "File"
- value: "Socket"
description: "Socket"
- value: "CharDevice"
description: "CharDevice"
- value: "BlockDevice"
description: "BlockDevice"
- variable: mountPath - variable: mountPath
label: "mountPath" label: "mountPath"
description: "Path inside the container the storage is mounted" description: "Path inside the container the storage is mounted"
schema: schema:
type: string type: string
default: "/etc/ldap/slapd.d" default: "/etc/ldap/slapd.d/"
hidden: true hidden: true
- variable: medium - variable: medium
label: "EmptyDir Medium" label: "EmptyDir Medium"
+2 -2
View File
@@ -78,11 +78,11 @@ envFrom:
volumeClaimTemplates: volumeClaimTemplates:
data: data:
enabled: true enabled: true
mountPath: "/var/lib/ldap" mountPath: "/var/lib/ldap/"
accessMode: ReadWriteOnce accessMode: ReadWriteOnce
size: "100Gi" size: "100Gi"
slapd: slapd:
enabled: true enabled: true
mountPath: "/etc/ldap/slapd.d" mountPath: "/etc/ldap/slapd.d/"
accessMode: ReadWriteOnce accessMode: ReadWriteOnce
size: "100Gi" size: "100Gi"