diff --git a/charts/lakefs/Chart.yaml b/charts/lakefs/Chart.yaml index 0467e1a..faabd8a 100644 --- a/charts/lakefs/Chart.yaml +++ b/charts/lakefs/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 name: lakefs description: A Helm chart for running LakeFS on Kubernetes type: application -version: 1.3.25 +version: 1.3.26 appVersion: 1.45.0 home: https://lakefs.io diff --git a/charts/lakefs/templates/deployment.yaml b/charts/lakefs/templates/deployment.yaml index cb41932..52b1cc0 100644 --- a/charts/lakefs/templates/deployment.yaml +++ b/charts/lakefs/templates/deployment.yaml @@ -18,6 +18,9 @@ spec: {{- end }} labels: {{- include "lakefs.selectorLabels" . | nindent 8 }} + {{- with .Values.podLabels }} + {{- toYaml . | nindent 8 }} + {{- end }} spec: serviceAccountName: {{ include "lakefs.serviceAccountName" . }} securityContext: diff --git a/charts/lakefs/values.yaml b/charts/lakefs/values.yaml index 1ff4aaa..0762bb3 100644 --- a/charts/lakefs/values.yaml +++ b/charts/lakefs/values.yaml @@ -32,7 +32,12 @@ ingress: # - chart-example.local +# Extra annotations to add to the pod podAnnotations: {} + +# Extra labels to add to the pod +podLabels: {} + jobPodAnnotations: sidecar.istio.io/inject: "false"