añadido gitea y medio argos

This commit is contained in:
2025-08-18 10:29:04 +02:00
parent f37ed27613
commit 8e09b2e33e
40 changed files with 929 additions and 0 deletions

17
gitea/copypod.yaml Normal file
View File

@@ -0,0 +1,17 @@
apiVersion: v1
kind: Pod
metadata: { name: loader, namespace: gitea }
spec:
restartPolicy: Never
containers:
- name: sh
image: alpine:latest
command: ["sh","-c","sleep 36000"]
volumeMounts:
- { name: gitea, mountPath: /mnt/gitea }
- { name: mysql, mountPath: /mnt/mysql }
volumes:
- name: gitea
persistentVolumeClaim: { claimName: gitea-data }
- name: mysql
persistentVolumeClaim: { claimName: gitea-db }