This commit is contained in:
Waylon Walker 2025-11-22 22:20:32 -06:00
parent 8c0277c8f3
commit 9e2c30af22
60 changed files with 8853 additions and 232 deletions

View file

@ -0,0 +1,45 @@
apiVersion: v1
kind: Pod
metadata:
name: configmap-inspector
namespace: authelia
spec:
containers:
- image: registry.wayl.one/devtainer:slim
name: pvc-inspector
command: ["sleep", "300"]
volumeMounts:
- mountPath: /configmap
name: configmap
- mountPath: /config
name: config
volumes:
- name: configmap
projected:
sources:
- configMap:
name: configuration
- configMap:
name: users
- name: config
persistentVolumeClaim:
claimName: config
---
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
creationTimestamp: null
labels:
io.kompose.service: config
name: config
namespace: authelia
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 100Mi
status: {}