Haim Beyhan
06/29/2023, 8:49 AMkapa.ai
06/29/2023, 8:49 AMkapa.ai
06/29/2023, 8:50 AMnodeSelector 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: 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)