summaryrefslogtreecommitdiff
path: root/f3s/registry/deployment.yaml
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2025-08-07 09:37:29 +0300
committerPaul Buetow <paul@buetow.org>2025-08-07 09:37:29 +0300
commite70b2730de420a84b5da9501bc705913aba3e289 (patch)
tree413cf1c47446dda5d410ec462ae6f76c9934bb5d /f3s/registry/deployment.yaml
parent1b204bffe48809c6695ce22d6e05851e22e3cc5d (diff)
modify regtistry to be a helm chart as well and some refactor
Diffstat (limited to 'f3s/registry/deployment.yaml')
-rw-r--r--f3s/registry/deployment.yaml29
1 files changed, 0 insertions, 29 deletions
diff --git a/f3s/registry/deployment.yaml b/f3s/registry/deployment.yaml
deleted file mode 100644
index 70522f8..0000000
--- a/f3s/registry/deployment.yaml
+++ /dev/null
@@ -1,29 +0,0 @@
-apiVersion: apps/v1
-kind: Deployment
-metadata:
- name: docker-registry
- namespace: infra
- labels:
- app: docker-registry
-spec:
- replicas: 1
- selector:
- matchLabels:
- app: docker-registry
- template:
- metadata:
- labels:
- app: docker-registry
- spec:
- containers:
- - name: registry
- image: registry:2
- ports:
- - containerPort: 5000
- volumeMounts:
- - name: registry-storage
- mountPath: /var/lib/registry
- volumes:
- - name: registry-storage
- persistentVolumeClaim:
- claimName: docker-registry-pvc