Changeset 0.6.0 (#36)

This commit is contained in:
2026-02-20 22:24:47 +00:00
parent 30d0c11219
commit 925b70f98c
34 changed files with 2575 additions and 637 deletions

View File

@@ -35,6 +35,9 @@ spec:
ports:
- containerPort: 80
name: http
env:
- name: BASE_PATH
value: "${BASE_PATH}"
resources:
requests:
memory: "${FE_MEMORY_REQUEST}"
@@ -44,7 +47,7 @@ spec:
cpu: "${FE_CPU_LIMIT}"
readinessProbe:
httpGet:
path: /
path: /healthz
port: 80
initialDelaySeconds: 3
periodSeconds: 10
@@ -52,7 +55,7 @@ spec:
failureThreshold: 3
livenessProbe:
httpGet:
path: /
path: /healthz
port: 80
initialDelaySeconds: 5
periodSeconds: 30