29 lines
777 B
YAML
29 lines
777 B
YAML
apiVersion: v1
|
|
kind: Pod
|
|
metadata:
|
|
name: pvc-inspector
|
|
namespace: registry
|
|
spec:
|
|
containers:
|
|
- image: registry.fokais.com/devtainer:slim
|
|
name: pvc-inspector
|
|
command: ["sleep", "300"]
|
|
volumeMounts:
|
|
- mountPath: /pvc-registry
|
|
name: pvc-registry
|
|
- mountPath: /pvc-registry-auth
|
|
name: pvc-registry-auth
|
|
- mountPath: /pvc-registry-config
|
|
name: pvc-registry-config
|
|
imagePullSecrets:
|
|
- name: fokais-regcred
|
|
volumes:
|
|
- name: pvc-registry
|
|
persistentVolumeClaim:
|
|
claimName: registry
|
|
- name: pvc-registry-auth
|
|
persistentVolumeClaim:
|
|
claimName: registry-auth
|
|
- name: pvc-registry-config
|
|
persistentVolumeClaim:
|
|
claimName: registry-config
|