mirror of
https://github.com/ublue-os/forge.git
synced 2025-07-19 08:05:45 +03:00
feat: add container registry and mini ca (#3,#4)
This commit is contained in:
parent
d5d03e710f
commit
0714214247
3 changed files with 54 additions and 0 deletions
38
forge-pod.yml
Normal file
38
forge-pod.yml
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue