Skip to content

Commit

Permalink
add nodeSelector, affinity and tolerations on test connection pod (#262)
Browse files Browse the repository at this point in the history
  • Loading branch information
riupie authored Sep 13, 2024
1 parent 2d37ef9 commit 4df850d
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 4df850d

Please sign in to comment.