36 lines
875 B
YAML
36 lines
875 B
YAML
name: gitea
|
|
is: gitea
|
|
description: Gitea is a painless self-hosted Git service written in Go
|
|
version: 1.24.3-1
|
|
icon: https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/svg/gitea.svg
|
|
requires:
|
|
- name: postgres
|
|
- name: smtp
|
|
defaultConfig:
|
|
namespace: gitea
|
|
externalDnsDomain: '{{ .cloud.domain }}'
|
|
appName: Gitea
|
|
domain: gitea.{{ .cloud.domain }}
|
|
tlsSecretName: wildcard-wild-cloud-tls
|
|
storage: 10Gi
|
|
adminUser: admin
|
|
adminEmail: "{{ .operator.email }}"
|
|
db:
|
|
name: gitea
|
|
user: gitea
|
|
host: '{{ .apps.postgres.host }}'
|
|
port: '{{ .apps.postgres.port }}'
|
|
smtp:
|
|
host: '{{ .apps.smtp.host }}'
|
|
port: '{{ .apps.smtp.port }}'
|
|
user: '{{ .apps.smtp.user }}'
|
|
from: '{{ .apps.smtp.from }}'
|
|
defaultSecrets:
|
|
- key: adminPassword
|
|
- key: dbPassword
|
|
- key: secretKey
|
|
- key: jwtSecret
|
|
- key: smtpPassword
|
|
requiredSecrets:
|
|
- postgres.password
|