Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions helm/olake/templates/fusion/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,14 @@ spec:
app.kubernetes.io/name: {{ include "olake.name" . }}-fusion
app.kubernetes.io/instance: {{ .Release.Name }}
app.kubernetes.io/component: fusion
{{- with .Values.fusion.podLabels }}
{{- toYaml . | nindent 8 }}
{{- end }}
annotations:
checksum/fusion-config: {{ include (print $.Template.BasePath "/fusion/configmap.yaml") . | sha256sum }}
{{- with .Values.fusion.podAnnotations }}
{{- toYaml . | nindent 8 }}
{{- end }}
spec:
{{- with .Values.fusion.nodeSelector }}
nodeSelector:
Expand Down
8 changes: 7 additions & 1 deletion helm/olake/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -630,7 +630,13 @@ fusion:
nodeSelector: {}
tolerations: []
affinity: {}


# -- Additional pod annotations
podAnnotations: {}

# -- Additional pod labels
podLabels: {}

# --- Amoro config shade properties
shade:
identifier: "default"
Expand Down
Loading