refactor(k8s): Reorganize into 5-layer structure with production kustomizations

This commit is contained in:
Story Crater Bot
2026-08-18 15:08:01 -07:00
parent 563f720d09
commit 0f30d77288
214 changed files with 405 additions and 885 deletions
+42
View File
@@ -0,0 +1,42 @@
# logging/minio-values.yaml
# Official MinIO chart (minio/minio from https://charts.min.io).
# Single pod with console built-in on port 9001.
# rootUser and rootPassword are injected via --set at install time from .env.
mode: standalone
rootUser: "" # injected via --set
rootPassword: "" # injected via --set
persistence:
enabled: true
storageClass: longhorn
accessMode: ReadWriteOnce
size: 100Gi
resources:
requests:
cpu: 100m
memory: 256Mi
limits:
cpu: 500m
memory: 512Mi
service:
type: ClusterIP
port: 9000
consoleService:
type: ClusterIP
port: 9001
# Disable ingress — access via kubectl port-forward
ingress:
enabled: false
consoleIngress:
enabled: false
metrics:
serviceMonitor:
enabled: false