22 lines
608 B
YAML
22 lines
608 B
YAML
|
|
# PersistentVolumeClaim for LLDAP (namespace: sso)
|
||
|
|
#
|
||
|
|
# lldap-data — /data
|
||
|
|
# Holds: LLDAP's SQLite database (users, groups, keys).
|
||
|
|
# LLDAP can also be configured to use PostgreSQL
|
||
|
|
# (set LLDAP_DATABASE_URL=postgresql://...) if you want it on the shared
|
||
|
|
# CloudNativePG cluster. SQLite on a PVC is sufficient for the lightweight mode.
|
||
|
|
|
||
|
|
apiVersion: v1
|
||
|
|
kind: PersistentVolumeClaim
|
||
|
|
metadata:
|
||
|
|
name: lldap-data
|
||
|
|
namespace: sso
|
||
|
|
labels:
|
||
|
|
app.kubernetes.io/part-of: net-kingdom-sso-mfa
|
||
|
|
net-kingdom/component: sso
|
||
|
|
spec:
|
||
|
|
accessModes: [ReadWriteOnce]
|
||
|
|
resources:
|
||
|
|
requests:
|
||
|
|
storage: 1Gi
|