61 lines
1.2 KiB
Django/Jinja
61 lines
1.2 KiB
Django/Jinja
service:
|
|
ssh:
|
|
type: NodePort
|
|
nodePort: 32022
|
|
|
|
ingress:
|
|
enabled: true
|
|
hosts:
|
|
- host: code.icb4dc0.de
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
|
|
resources:
|
|
limits:
|
|
cpu: 500m
|
|
memory: 768Mi
|
|
requests:
|
|
cpu: 250m
|
|
memory: 256Mi
|
|
|
|
persistence:
|
|
enabled: true
|
|
size: 10Gi
|
|
storageClass: hcloud-volumes
|
|
|
|
gitea:
|
|
admin:
|
|
existingSecret: gitea-admin-credentials
|
|
config:
|
|
git.timeout:
|
|
migrate: 3600
|
|
default: 3600
|
|
clone: 3600
|
|
pull: 3600
|
|
gc: 300
|
|
log:
|
|
level: Warn
|
|
server:
|
|
PROTOCOL: http
|
|
ROOT_URL: https://code.icb4dc0.de/
|
|
LFS_START_SERVER: 'true'
|
|
storage:
|
|
STORAGE_TYPE: minio
|
|
MINIO_ENDPOINT: minio.minio.svc.cluster.local:9000
|
|
MINIO_ACCESS_KEY_ID: "{{ minio.rootUser }}"
|
|
MINIO_SECRET_ACCESS_KEY: "{{ minio.rootPassword }}"
|
|
MINIO_BUCKET: gitea
|
|
MINIO_LOCATION: us-east-1
|
|
MINIO_USE_SSL: 'false'
|
|
database:
|
|
DB_TYPE: postgres
|
|
HOST: default-postgres-postgresql.postgres.svc.cluster.local:5432
|
|
NAME: gitea
|
|
USER: gitea
|
|
PASSWD: "{{ gitea.dbPassword }}"
|
|
log_sql: "false"
|
|
|
|
|
|
postgresql:
|
|
enabled: false
|