aboutsummaryrefslogtreecommitdiff
path: root/content/blog/kubernetes/single-node-cluster-taint.md
diff options
context:
space:
mode:
Diffstat (limited to 'content/blog/kubernetes/single-node-cluster-taint.md')
-rw-r--r--content/blog/kubernetes/single-node-cluster-taint.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/content/blog/kubernetes/single-node-cluster-taint.md b/content/blog/kubernetes/single-node-cluster-taint.md
index 5b80598..bd7ddb2 100644
--- a/content/blog/kubernetes/single-node-cluster-taint.md
+++ b/content/blog/kubernetes/single-node-cluster-taint.md
@@ -10,11 +10,11 @@ tags:
## The solution
On a single node cluster, control plane nodes are tainted so that the cluster never schedules pods on them. To change that run :
-{{< highlight sh >}}
+```sh
kubectl taint nodes --all node-role.kubernetes.io/master-
-{{< /highlight >}}
+```
Getting dns in your pods :
-{{< highlight sh >}}
+```sh
add --cluster-dns=10.96.0.10 to /etc/conf.d/kubelet
-{{< /highlight >}}
+```