initial git commit saving configs

This commit is contained in:
Adrien
2026-03-31 15:30:40 +00:00
commit 7770e9859c
64 changed files with 2866 additions and 0 deletions

92
gitea/values.yaml Normal file
View File

@@ -0,0 +1,92 @@
# gitea-values.yaml
image:
rootless: true
strategy:
type: Recreate
postgresql:
enabled: false
postgresql-ha:
enabled: false
valkey-cluster:
enabled: false
redis-cluster:
enabled: false
persistence:
enabled: true
create: false
claimName: pvc-gitea-data
size: 20Gi
accessModes:
- ReadWriteOnce
gitea:
admin:
username: giteaadmin
password: "51aad51@#zé"
email: "admin@immich-ad.ovh"
config:
server:
DOMAIN: git.immich-ad.ovh
ROOT_URL: https://git.immich-ad.ovh/
SSH_DOMAIN: git.immich-ad.ovh
PROTOCOL: http
START_SSH_SERVER: false
database:
DB_TYPE: sqlite3
service:
DISABLE_REGISTRATION: true
REQUIRE_SIGNIN_VIEW: false
REGISTER_MANUAL_CONFIRM: false
session:
PROVIDER: memory
cache:
ADAPTER: memory
queue:
TYPE: level
service:
http:
type: ClusterIP
port: 3000
ssh:
enabled: false
ingress:
enabled: true
className: traefik
annotations:
cert-manager.io/cluster-issuer: letsencrypt-prod
traefik.ingress.kubernetes.io/router.entrypoints: websecure
hosts:
- host: git.immich-ad.ovh
paths:
- path: /
pathType: Prefix
tls:
- secretName: gitea-tls
hosts:
- git.immich-ad.ovh
resources:
requests:
cpu: 100m
memory: 256Mi
limits:
cpu: 1000m
memory: 1Gi
test:
enabled: false