is it possible to add to kubernetes chart the node...
# replication-ask-ai
h
is it possible to add to kubernetes chart the nodeSelector and tolerations for airbyte-db.yaml and minio.yaml ?
k
A message from kapa.ai
Based on the information provided in the extracts, it's not explicitly mentioned how to add
nodeSelector
and
tolerations
to the
airbyte-db.yaml
and
minio.yaml
Kubernetes charts. However, there are mentions of how to set
nodeSelector
and
tolerations
for Job pods in Airbyte. For example, you can define one or more Job pod tolerations using the
JOB_KUBE_TOLERATIONS
environment variable. Tolerations are separated by ';'. Each toleration contains k=v pairs mentioning some/all of key, effect, operator, and value and separated by
,
. Similarly, you can define one or more Job pod node selectors using the
JOB_KUBE_NODE_SELECTORS
environment variable. Each k=v pair is separated by a
,
. Here is an example of how to set these variables:
Copy code
bash JOB_KUBE_TOLERATIONS: key=<http://k8s.bodyguard.ai/node-pool,operator=Equal,value=data|k8s.bodyguard.ai/node-pool,operator=Equal,value=data> JOB_KUBE_NODE_SELECTORS: key1=value1,key2=value2
Please note that these settings are for Job pods and may not directly apply to
airbyte-db.yaml
and
minio.yaml
. For more specific configuration, you might need to refer to the Kubernetes documentation or the specific chart documentation for Airbyte DB and Minio. Sources: - [Configuring Airbyte](https://docs.airbyte.com/operator-guides/configuring-airbyte) - [Forum Discussion](https://discuss.airbyte.io/t/2153) - [Forum Discussion](https://discuss.airbyte.io/t/4533)