Im using the helm kubernetes deployment. The norma...
# replication-ask-ai
t
Im using the helm kubernetes deployment. The normalization jobs arent respecting my JOB_KUBE_TOLERATIONS and my node selector for the pool. All other job pods are respecting my node selector and tolerations
k
A message from kapa.ai
It seems you are facing an issue with the normalization jobs not respecting the
JOB_KUBE_TOLERATIONS
and node selector settings in your Kubernetes deployment using Helm. To resolve this issue, make sure you have properly set the
JOB_KUBE_TOLERATIONS
and
JOB_KUBE_NODE_SELECTORS
in your
values.yaml
file. Here's an example of how to set these values:
Copy code
yaml global:   jobs:     tolerations:       - key: <http://k8s.company.com/node-pool|k8s.company.com/node-pool>         value: data         operator: Equal     nodeSelectors:       key1: value1       key2: value2
After updating your
values.yaml
file, upgrade your Helm chart by running the following command:
Copy code
bash helm upgrade -f path/to/values.yaml %release_name% airbyte/airbyte
If you still face issues, please refer to this [forum discussion](https://discuss.airbyte.io/t/2153) where a user faced a similar issue and resolved it by properly setting the taint on the node and using the
JOB_KUBE_NODE_SELECTORS
and
JOB_KUBE_TOLERATIONS
variables. For more information on configuring Airbyte on Kubernetes, you can refer to the [official documentation](https://docs.airbyte.com/operator-guides/configuring-airbyte).