From e8ad0611729f9de41327fd647691e0a833de4fed Mon Sep 17 00:00:00 2001 From: Silas Hansen Date: Tue, 29 Dec 2020 21:04:19 +0100 Subject: [PATCH] Add required toleration As the example sets a taint on the gpu-node, a toleration is required for the *gpu-feature-discovery* (gfd) daemonset to be able to run. --- docs/gpu.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/gpu.md b/docs/gpu.md index 8b8dc76c432de..3196b8a2b1f89 100644 --- a/docs/gpu.md +++ b/docs/gpu.md @@ -61,6 +61,10 @@ dcgmExporter: gfd: nodeSelector: kops.k8s.io/instancegroup: gpu-nodes + tolerations: + - key: nvidia.com/gpu + operator: Exists + effect: NoSchedule node-feature-discovery: worker: @@ -78,4 +82,4 @@ spec: tolerations: - key: nvidia.com/gpu operator: Exists -``` \ No newline at end of file +```