Files
archrepo/k8s/deploy.archrepo.yaml
ytshih 44a0227ab1
All checks were successful
release-tag / release-image (push) Successful in 1m49s
initial commit
2024-10-15 03:50:35 +00:00

38 lines
789 B
YAML

---
apiVersion: apps/v1
kind: Deployment
metadata:
name: archrepo
namespace: archrepo
labels:
app: archrepo
spec:
replicas: 1
selector:
matchLabels:
app: archrepo
template:
metadata:
labels:
app: archrepo
spec:
containers:
- name: repo
image: 'gitea.konchin.com/services/archrepo:latest'
ports:
- name: http
containerPort: 80
env:
- name: MINIO_ACCESSKEY
valueFrom:
secretKeyRef:
name: archrepo
key: MINIO_ACCESSKEY
- name: MINIO_SECRETKEY
valueFrom:
secretKeyRef:
name: archrepo
key: MINIO_SECRETKEY
imagePullSecrets:
- name: regcred