fix(forgejo): SSH_LISTEN_PORT
All checks were successful
Renovate / renovate (push) Successful in 22s
All checks were successful
Renovate / renovate (push) Successful in 22s
This commit is contained in:
parent
cdc6e1f504
commit
d56ccb2fa6
2 changed files with 13 additions and 1 deletions
|
@ -54,6 +54,7 @@ gitea:
|
|||
LANDING_PAGE: explore
|
||||
ENABLE_GZIP: 'true'
|
||||
ENABLE_PPROF: 'true'
|
||||
SSH_LISTEN_PORT: 2222
|
||||
service:
|
||||
DISABLE_REGISTRATION: 'true'
|
||||
DEFAULT_KEEP_EMAIL_PRIVATE: 'true'
|
||||
|
@ -107,7 +108,6 @@ gitea:
|
|||
metrics:
|
||||
ENABLED: true
|
||||
|
||||
|
||||
redis-cluster:
|
||||
enabled: false
|
||||
|
||||
|
|
|
@ -36,6 +36,18 @@ spec:
|
|||
- containerPort: 3000
|
||||
protocol: TCP
|
||||
name: web
|
||||
livenessProbe:
|
||||
httpGet:
|
||||
path: /api/heartbeat
|
||||
port: 3000
|
||||
initialDelaySeconds: 15
|
||||
periodSeconds: 20
|
||||
readinessProbe:
|
||||
httpGet:
|
||||
path: /api/heartbeat
|
||||
port: 3000
|
||||
initialDelaySeconds: 5
|
||||
periodSeconds: 10
|
||||
securityContext:
|
||||
allowPrivilegeEscalation: false
|
||||
capabilities:
|
||||
|
|
Loading…
Reference in a new issue