From 567e93dd7f9f9f3b0fadbb9c7247efa85f5b3578 Mon Sep 17 00:00:00 2001 From: Hyun <114461362+rla8127@users.noreply.github.com> Date: Tue, 7 Apr 2026 13:34:00 +0900 Subject: [PATCH 1/2] Add support for AWS LoadBalancer service annotations feat: add service annotations support for AWS LoadBalancer Signed-off-by: Hyun <114461362+rla8127@users.noreply.github.com> --- helm/kagent/templates/ui-service.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/helm/kagent/templates/ui-service.yaml b/helm/kagent/templates/ui-service.yaml index 526aa2464..eb8c51574 100644 --- a/helm/kagent/templates/ui-service.yaml +++ b/helm/kagent/templates/ui-service.yaml @@ -5,6 +5,10 @@ metadata: namespace: {{ include "kagent.namespace" . }} labels: {{- include "kagent.ui.labels" . | nindent 4 }} + {{- with .Values.ui.service.annotations }} + annotations: + {{- toYaml . | nindent 4 }} + {{- end }} spec: type: {{ .Values.ui.service.type }} ports: From 71106ad5d205a28f3c1254d060f4722adf74466d Mon Sep 17 00:00:00 2001 From: Hyun <114461362+rla8127@users.noreply.github.com> Date: Tue, 7 Apr 2026 13:35:41 +0900 Subject: [PATCH 2/2] Add support for AWS LoadBalancer service annotations feat: add service annotations support for AWS LoadBalancer Signed-off-by: Hyun <114461362+rla8127@users.noreply.github.com> --- helm/kagent/values.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/helm/kagent/values.yaml b/helm/kagent/values.yaml index e06adbdb4..ce8b0517c 100644 --- a/helm/kagent/values.yaml +++ b/helm/kagent/values.yaml @@ -234,6 +234,7 @@ ui: ports: port: 8080 targetPort: 8080 + annotations: {} env: {} # Additional configuration key-value pairs for the ui ConfigMap # -- Pod-level security context for the UI pod. Overrides the global podSecurityContext. # @default -- (uses global podSecurityContext)