45 lines
850 B
YAML
45 lines
850 B
YAML
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: {}
|