feat: add container registry and mini ca (#3,#4)

This commit is contained in:
Stephan Lüscher 2023-04-27 17:20:18 +00:00
parent d5d03e710f
commit 0714214247
No known key found for this signature in database
GPG key ID: 445779060FF3D3CF
3 changed files with 54 additions and 0 deletions

38
forge-pod.yml Normal file
View file

@ -0,0 +1,38 @@
# uBlue-OS forge podman deployment
---
apiVersion: v1
kind: Pod
metadata:
name: ublue-os_forge
spec:
restartPolicy: Always
volumes:
- name: ublue-os_forge-minica-pvc
persistentVolumeClaim:
claimName: ublue-os_forge-minica
- name: ublue-os_forge-registry-pvc
persistentVolumeClaim:
claimName: ublue-os_forge-registry
containers:
- name: registry.ublue.local
image: registry
resources:
limits:
memory: 512Mi
cpu: 200m
volumeMounts:
- mountPath: /certs
name: ublue-os_forge-minica-pvc
subPath: _.ublue.local
- mountPath: /var/lib/registry
name: ublue-os_forge-registry-pvc
ports:
- containerPort: 5000
hostPort: 9001
protocol: TCP
initContainers:
- name: minica.ublue.local
image: minica
volumeMounts:
- mountPath: /certs
name: ublue-os_forge-minica-pvc