diff --git a/apps/gitea.yaml b/apps/gitea.yaml index 99f4cfb..c5b3283 100644 --- a/apps/gitea.yaml +++ b/apps/gitea.yaml @@ -52,7 +52,7 @@ spec: - name: GITEA__packages__ENABLED value: "true" - name: GITEA__log__LEVEL - value: trace + value: warn - name: GITEA__log__MODE value: file - name: GITEA__log__ROUTER @@ -63,6 +63,8 @@ spec: #value: redis #- name: GITEA__queue__CONN_STR #value: redis://redis-standalone.live-env.svc.cluster.local:6397/0 + - name: GITEA__server__ROOT_URL + value: http://git-ui.lan/ volumeMounts: - name: gitea mountPath: /data @@ -73,18 +75,18 @@ spec: - name: ssh containerPort: 22 protocol : TCP - #livenessProbe: - # initialDelaySeconds: 300 - # periodSeconds: 10 - # httpGet: - # path: / - # port: http - #readinessProbe: - # initialDelaySeconds: 300 - # periodSeconds: 10 - # httpGet: - # path: / - # port: http + livenessProbe: + initialDelaySeconds: 300 + periodSeconds: 10 + httpGet: + path: / + port: http + readinessProbe: + initialDelaySeconds: 300 + periodSeconds: 10 + httpGet: + path: / + port: http resources: requests: memory: "300Mi" diff --git a/apps/redis.yaml b/apps/redis.yaml index a166f4e..f4949a9 100644 --- a/apps/redis.yaml +++ b/apps/redis.yaml @@ -5,6 +5,7 @@ metadata: namespace: live-env data: redis.conf: |- + bind * -::* appendonly yes maxmemory 5mb ---