aboutsummaryrefslogtreecommitdiff
path: root/content/blog
diff options
context:
space:
mode:
authorJulien Dessaux2021-03-12 19:36:17 +0100
committerJulien Dessaux2021-03-12 19:36:17 +0100
commit652becdaaaa09c6ee9cb0b8bcf4bec50d246dcaa (patch)
treecb2788aae124e8b928dc6b3b428b28269a8aa060 /content/blog
parentNew hugo article (diff)
downloadwww-652becdaaaa09c6ee9cb0b8bcf4bec50d246dcaa.tar.gz
www-652becdaaaa09c6ee9cb0b8bcf4bec50d246dcaa.tar.bz2
www-652becdaaaa09c6ee9cb0b8bcf4bec50d246dcaa.zip
Some more articles reformatting
Diffstat (limited to 'content/blog')
-rw-r--r--content/blog/kubernetes/single-node-cluster-taint.md19
1 files changed, 19 insertions, 0 deletions
diff --git a/content/blog/kubernetes/single-node-cluster-taint.md b/content/blog/kubernetes/single-node-cluster-taint.md
new file mode 100644
index 0000000..67e3f87
--- /dev/null
+++ b/content/blog/kubernetes/single-node-cluster-taint.md
@@ -0,0 +1,19 @@
+---
+title: kubernetes single node cluster taint
+date: 2021-01-06
+description: How to schedule worker pods on your control plane node
+tags:
+ - kubernetes
+---
+
+## 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 >}}
+kubectl taint nodes --all node-role.kubernetes.io/master-
+{{< /highlight >}}
+
+Getting dns in your pods :
+{{< highlight sh >}}
+add --cluster-dns=10.96.0.10 to /etc/conf.d/kubelet
+{{< /highlight >}}