diff --git a/code-server/helm-values.yaml b/code-server/helm-values.yaml index 0e1587d..230ff0c 100644 --- a/code-server/helm-values.yaml +++ b/code-server/helm-values.yaml @@ -40,13 +40,14 @@ service: type: ClusterIP port: 8080 -# Resource limits +# Resource settings (VPA lowerBound/target) resources: requests: cpu: 15m - memory: 215Mi + memory: 225Mi limits: - memory: 215Mi + cpu: 15m + memory: 225Mi # Security context securityContext: diff --git a/docusaurus/helm-values.yaml b/docusaurus/helm-values.yaml index 2259f94..b35e945 100644 --- a/docusaurus/helm-values.yaml +++ b/docusaurus/helm-values.yaml @@ -34,12 +34,14 @@ ingress: hosts: - docusaurus0213.kro.kr +# Resource settings (VPA lowerBound/upperBound) resources: requests: - memory: 100Mi - cpu: 15m + cpu: 10m + memory: 50Mi limits: - memory: 100Mi + cpu: 16m + memory: 50Mi healthCheck: enabled: true diff --git a/headlamp/helm-values.yaml b/headlamp/helm-values.yaml index bf9c59d..120d240 100644 --- a/headlamp/helm-values.yaml +++ b/headlamp/helm-values.yaml @@ -19,11 +19,13 @@ service: type: ClusterIP port: 80 +# Resource settings (VPA lowerBound/target) resources: requests: cpu: 15m memory: 100Mi limits: + cpu: 15m memory: 100Mi ingress: diff --git a/homer/helm-values.yaml b/homer/helm-values.yaml index 5c84cbe..73bc0cd 100644 --- a/homer/helm-values.yaml +++ b/homer/helm-values.yaml @@ -34,11 +34,13 @@ controllers: repository: b4bz/homer tag: latest pullPolicy: IfNotPresent + # Resource settings (VPA lowerBound/upperBound) resources: requests: - cpu: 11m + cpu: 10m memory: 50Mi limits: + cpu: 12m memory: 50Mi pod: # Affinity - Soft Anti-Affinity to spread pods across nodes diff --git a/mas/helm-values.yaml b/mas/helm-values.yaml index 57bd45f..5a09281 100644 --- a/mas/helm-values.yaml +++ b/mas/helm-values.yaml @@ -43,12 +43,14 @@ controllers: POSTGRES_PORT: "5432" POSTGRES_USER: "bluemayne" REDIS_URL: "redis://redis:6379/0" + # Resource settings (VPA lowerBound/target) resources: requests: cpu: 15m - memory: 175Mi + memory: 144Mi limits: - memory: 175Mi + cpu: 15m + memory: 203Mi probes: startup: enabled: true diff --git a/umami/helm-values.yaml b/umami/helm-values.yaml index 25a91ba..e6ee6ca 100644 --- a/umami/helm-values.yaml +++ b/umami/helm-values.yaml @@ -50,12 +50,14 @@ service: type: ClusterIP port: 3000 +# Resource settings (VPA lowerBound/target) resources: requests: cpu: 15m - memory: 283Mi + memory: 271Mi limits: - memory: 283Mi + cpu: 15m + memory: 323Mi replicaCount: 1