registry is working!!

This commit is contained in:
Waylon Walker 2023-11-05 09:33:53 -06:00
parent 2fb1980e28
commit c9864124e1
No known key found for this signature in database
GPG key ID: 66E2BF2B4190EFE4
6 changed files with 431 additions and 0 deletions

View file

@ -0,0 +1,27 @@
apiVersion: v1
kind: Pod
metadata:
name: pvc-inspector
namespace: registry
spec:
containers:
- image: registry.wayl.one/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
volumes:
- name: pvc-registry
persistentVolumeClaim:
claimName: registry
- name: pvc-registry-auth
persistentVolumeClaim:
claimName: registry-auth
- name: pvc-registry-config
persistentVolumeClaim:
claimName: registry-config