added storage to openbao

This commit is contained in:
Tim Unkrig
2024-06-09 21:28:19 +02:00
parent 0dfd9bd337
commit d0f0b066c8

View File

@@ -13,4 +13,19 @@ openbao:
serviceType: "LoadBalancer"
serviceNodePort: null
externalPort: 8200
targetPort: 8200
targetPort: 8200
dataStorage:
enabled: true
# Size of the PVC created
size: 10Gi
# Location where the PVC will be mounted.
mountPath: "/openbao/data"
# Name of the storage class to use. If null it will use the
# configured default Storage Class.
storageClass: local-path
# Access Mode of the storage device being used for the PVC
accessMode: ReadWriteOnce
# Annotations to apply to the PVC
annotations: {}
# Labels to apply to the PVC
labels: {}