This is an automated email from the ASF dual-hosted git repository.

qiuxiafan pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/skywalking-showcase.git


The following commit(s) were added to refs/heads/main by this push:
     new 8a28189  Correct resources config format (#235)
8a28189 is described below

commit 8a28189a29eef5a2ea1315d0497f5f4e5d9b3579
Author: Fine0830 <[email protected]>
AuthorDate: Mon Jan 26 15:56:42 2026 +0800

    Correct resources config format (#235)
---
 deploy/platform/kubernetes/values.yaml | 24 ++++++++----------------
 1 file changed, 8 insertions(+), 16 deletions(-)

diff --git a/deploy/platform/kubernetes/values.yaml 
b/deploy/platform/kubernetes/values.yaml
index 5ef6448..3dc422b 100644
--- a/deploy/platform/kubernetes/values.yaml
+++ b/deploy/platform/kubernetes/values.yaml
@@ -315,27 +315,19 @@ skywalking:
         agent:
           resources:
             requests:
-            - key: cpu
-              value: 200m
-            - key: memory
-              value: 128Mi
+              cpu: 200m
+              memory: 128Mi
             limits:
-            - key: cpu
-              value: 500m
-            - key: memory
-              value: 256Mi
+              cpu: 500m
+              memory: 256Mi
         proxy:
           resources:
             requests:
-            - key: cpu
-              value: 200m
-            - key: memory
-              value: 128Mi
+              cpu: 200m
+              memory: 128Mi
             limits:
-            - key: cpu
-              value: 500m
-            - key: memory
-              value: 256Mi
+              cpu: 500m
+              memory: 256Mi
     storage:
       liaison:
         enabled: true

Reply via email to