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
|
LANDING_PAGE: explore
|
||||||
ENABLE_GZIP: 'true'
|
ENABLE_GZIP: 'true'
|
||||||
ENABLE_PPROF: 'true'
|
ENABLE_PPROF: 'true'
|
||||||
|
SSH_LISTEN_PORT: 2222
|
||||||
service:
|
service:
|
||||||
DISABLE_REGISTRATION: 'true'
|
DISABLE_REGISTRATION: 'true'
|
||||||
DEFAULT_KEEP_EMAIL_PRIVATE: 'true'
|
DEFAULT_KEEP_EMAIL_PRIVATE: 'true'
|
||||||
|
@ -107,7 +108,6 @@ gitea:
|
||||||
metrics:
|
metrics:
|
||||||
ENABLED: true
|
ENABLED: true
|
||||||
|
|
||||||
|
|
||||||
redis-cluster:
|
redis-cluster:
|
||||||
enabled: false
|
enabled: false
|
||||||
|
|
||||||
|
|
|
@ -36,6 +36,18 @@ spec:
|
||||||
- containerPort: 3000
|
- containerPort: 3000
|
||||||
protocol: TCP
|
protocol: TCP
|
||||||
name: web
|
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:
|
securityContext:
|
||||||
allowPrivilegeEscalation: false
|
allowPrivilegeEscalation: false
|
||||||
capabilities:
|
capabilities:
|
||||||
|
|
Loading…
Reference in a new issue