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: diff --git a/helm/kagent/values.yaml b/helm/kagent/values.yaml index 858c6467b..00fbfef3f 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)