Add: archrepo
Some checks failed
Lint yaml / build-package (push) Failing after 9s

This commit is contained in:
2024-11-06 09:29:27 +00:00
parent 111882e511
commit 1c6c639c91
6 changed files with 100 additions and 0 deletions

View File

@@ -0,0 +1,36 @@
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: archrepo
labels:
app: archrepo
spec:
replicas: 1
selector:
matchLabels:
app: archrepo
template:
metadata:
labels:
app: archrepo
spec:
containers:
- name: repo
image: gitea.konchin.com/service/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