Skip to content

Commit

Permalink
add nodeSelector, affinity and tolerations on test connection pod
Browse files Browse the repository at this point in the history
  • Loading branch information
riupie committed Sep 13, 2024
1 parent 463192b commit b5426da
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions charts/openmetadata/templates/tests/test-connection.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,14 @@ spec:
command: ['wget']
args: ['{{ include "OpenMetadata.fullname" . }}:{{ .Values.service.port }}']
restartPolicy: Never
nodeSelector:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.affinity }}
affinity:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.tolerations }}
tolerations:
{{- toYaml . | nindent 8 }}
{{- end }}

0 comments on commit b5426da

Please sign in to comment.