Primer commit

This commit is contained in:
2025-04-27 15:57:11 +00:00
commit aac30bfe77
18 changed files with 310 additions and 0 deletions

30
deployments/core.yaml Normal file
View File

@ -0,0 +1,30 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: harbor-core
namespace: harbor
spec:
replicas: 1
selector:
matchLabels:
app: harbor-core
template:
metadata:
labels:
app: harbor-core
spec:
containers:
- name: core
image: goharbor/harbor-core:v2.10.0
env:
- name: CORE_SECRET
value: "notasecret"
ports:
- containerPort: 8080
volumeMounts:
- name: core-data
mountPath: /data
volumes:
- name: core-data
persistentVolumeClaim:
claimName: core-pvc