File tree Expand file tree Collapse file tree 2 files changed +16
-1
lines changed
deploy/helm-chart/kubernetes-replicator Expand file tree Collapse file tree 2 files changed +16
-1
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,13 @@ metadata:
44 name : {{ include "kubernetes-replicator.fullname" . }}
55 labels :
66 {{- include "kubernetes-replicator.labels" . | nindent 4 }}
7+ {{- if .Values.labels }}
8+ {{- toYaml .Values.labels | nindent 4 }}
9+ {{- end }}
10+ {{- with .Values.annotations }}
11+ annotations :
12+ {{- toYaml . | nindent 4 }}
13+ {{- end }}
714spec :
815 replicas : 1
916 {{- with .Values.updateStrategy }}
Original file line number Diff line number Diff line change @@ -59,10 +59,18 @@ tolerations: []
5959
6060affinity : {}
6161
62- podLabels : {}
62+ # Deployment annotations
63+ annotations : {}
64+
65+ # Deployment labels
66+ labels : {}
6367
68+ # Pod annotations
6469podAnnotations : {}
6570
71+ # Pod labels
72+ podLabels : {}
73+
6674livenessProbe :
6775 initialDelaySeconds : 60
6876 periodSeconds : 10
You can’t perform that action at this time.
0 commit comments