Skip to content

Commit 61d0f24

Browse files
committed
feat: added untaint nodes
1 parent a5a1ad8 commit 61d0f24

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

agentic_rag/articles/kubernetes_rag.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,13 @@ Then, we can start setting up the solution in our cluster by following these ste
146146
kubectl apply -n agentic-rag -f local-deployment/service.yaml
147147
```
148148
149+
If for some reason, after applying these, there's a `NoSchedule` policy being triggered, you can untaint the nodes and try again:
150+
151+
```bash
152+
kubectl taint nodes -l node.kubernetes.io/instance-type=VM.GPU.A10.1 nvidia.com/gpu:NoSchedule-
153+
# make sure to select your own instance shape if you're using a different type than A10 GPU.
154+
```
155+
149156
5. Monitor the Deployment
150157
151158
With the following commands, we can check the status of our pod:

0 commit comments

Comments
 (0)