diff --git a/deploy/helm-chart/kubernetes-replicator/templates/deployment.yaml b/deploy/helm-chart/kubernetes-replicator/templates/deployment.yaml index 462bfe95..218ff845 100644 --- a/deploy/helm-chart/kubernetes-replicator/templates/deployment.yaml +++ b/deploy/helm-chart/kubernetes-replicator/templates/deployment.yaml @@ -4,6 +4,13 @@ metadata: name: {{ include "kubernetes-replicator.fullname" . }} labels: {{- include "kubernetes-replicator.labels" . | nindent 4 }} + {{- if .Values.labels }} + {{- toYaml .Values.labels | nindent 4 }} + {{- end }} + {{- with .Values.annotations }} + annotations: + {{- toYaml . | nindent 4 }} + {{- end }} spec: replicas: 1 {{- with .Values.updateStrategy }} diff --git a/deploy/helm-chart/kubernetes-replicator/values.yaml b/deploy/helm-chart/kubernetes-replicator/values.yaml index 45a702ce..6555026d 100644 --- a/deploy/helm-chart/kubernetes-replicator/values.yaml +++ b/deploy/helm-chart/kubernetes-replicator/values.yaml @@ -59,10 +59,18 @@ tolerations: [] affinity: {} -podLabels: {} +# Deployment annotations +annotations: {} + +# Deployment labels +labels: {} +# Pod annotations podAnnotations: {} +# Pod labels +podLabels: {} + livenessProbe: initialDelaySeconds: 60 periodSeconds: 10