This commit is contained in:
parent
b877e6ec84
commit
f0391da09e
19 changed files with 590 additions and 1009 deletions
80
templates/gitea/helm-value.yaml.j2
Normal file
80
templates/gitea/helm-value.yaml.j2
Normal file
|
|
@ -0,0 +1,80 @@
|
|||
service:
|
||||
http:
|
||||
port: 3000
|
||||
ssh:
|
||||
port: 2222
|
||||
# externalIPs: []
|
||||
#persistence:
|
||||
# storageClass: true
|
||||
ingress:
|
||||
enabled: true
|
||||
hosts:
|
||||
- gitea.reslinger.net
|
||||
annotations: {}
|
||||
# kubernetes.io/ingress.class: nginx
|
||||
# kubernetes.io/tls-acme: "true"
|
||||
tls: []
|
||||
resources: {}
|
||||
# limits:
|
||||
# cpu: 100m
|
||||
# memory: 128Mi
|
||||
# requests:
|
||||
# cpu: 100m
|
||||
# memory: 128Mi
|
||||
nodeSelector: {}
|
||||
securityContext: {}
|
||||
statefulset:
|
||||
env: []
|
||||
# - name: USER_UID
|
||||
# value: 1000
|
||||
# - name: USER_GID
|
||||
# value: 1000
|
||||
gitea:
|
||||
admin:
|
||||
username: "adrien"
|
||||
password: "AReallyAwesomeGiteaPassword"
|
||||
email: "adrien@reslinger.net"
|
||||
database:
|
||||
builtIn:
|
||||
postgresql:
|
||||
enabled: false
|
||||
cache:
|
||||
builtIn:
|
||||
enabled: false
|
||||
config:
|
||||
database:
|
||||
DB_TYPE: postgres
|
||||
HOST: 127.0.0.1:5432
|
||||
NAME: gitea
|
||||
USER: gitea
|
||||
PASSWD: gitea
|
||||
cache:
|
||||
ENABLED: true
|
||||
ADAPTER: memory
|
||||
INTERVAL: 60
|
||||
HOST: 127.0.0.1:9090
|
||||
APP_NAME: "Gitea: With a cup of tea."
|
||||
RUN_MODE: prod
|
||||
server:
|
||||
SSH_PORT: 2222
|
||||
SSH_DOMAIN: gitea.reslinger.net
|
||||
DOMAIN: gitea.reslinger.net
|
||||
ROOT_URL: https://gitea.reslinger.net/
|
||||
# repository:
|
||||
# ROOT: "~/gitea-repositories"
|
||||
# repository.pull-request:
|
||||
# WORK_IN_PROGRESS_PREFIXES: "WIP:,[WIP]:"
|
||||
security:
|
||||
SECRET_KEY: ObMUfQkBE6CK2o7DJABYAJhH05oTbm3T1vtfFL441GhC5Qzwnl07UT5CF5wUfTwl
|
||||
INTERNAL_TOKEN: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJuYmYiOjE1MzcyMDM1MTd9.TpyYl-PMxptBU58ZUF3X9cx6dev9PEGLg4AGe2CYPGQ
|
||||
oauth2:
|
||||
JWT_SECRET: Dw1ivW1wxrURBLLcxJK2MJAYBDsXAaCSkB2DSylddSg
|
||||
mailer:
|
||||
ENABLED: true
|
||||
MAILER_TYPE: smtp
|
||||
HOST: mail.reslinger.net:587
|
||||
HELO_HOSTNAME: gitea.reslinger.net
|
||||
FROM: gitea@reslinger.net
|
||||
USER: gitea
|
||||
PASSWD: 32370989dae4add8ef8159d311c2dbe3
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue