From 80472d6f782fad1ad5b369683e27f7ece25b8c6e Mon Sep 17 00:00:00 2001 From: Abhinandan Baheti Date: Wed, 27 Dec 2023 18:05:30 +0530 Subject: [PATCH] feat: add pod annotations to deployment manifest Signed-off-by: Abhinandan Baheti --- charts/capsule-proxy/templates/deployment.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/charts/capsule-proxy/templates/deployment.yaml b/charts/capsule-proxy/templates/deployment.yaml index 183b3f5..7f34e31 100644 --- a/charts/capsule-proxy/templates/deployment.yaml +++ b/charts/capsule-proxy/templates/deployment.yaml @@ -5,6 +5,12 @@ metadata: name: {{ include "capsule-proxy.fullname" . }} labels: {{- include "capsule-proxy.labels" . | nindent 4 }} + {{- if .Values.podAnnotations }} + {{- with .Values.podAnnotations }} + annotations: + {{- toYaml . | nindent 4 }} + {{- end }} + {{- end }} spec: strategy: type: RollingUpdate