wip
This commit is contained in:
parent
8c0277c8f3
commit
9e2c30af22
60 changed files with 8853 additions and 232 deletions
45
authelia/configmap-inspector.yml
Normal file
45
authelia/configmap-inspector.yml
Normal 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: {}
|
||||
Loading…
Add table
Add a link
Reference in a new issue