Blog Section
-
Recent Posts
Recent Comments
Archive
- May 2022
- February 2022
- April 2021
- January 2021
- December 2020
- November 2020
- July 2020
- June 2020
- March 2020
- February 2020
- December 2019
- October 2019
- July 2019
- November 2018
- June 2018
- February 2018
- December 2017
- October 2017
- September 2017
- January 2017
- December 2015
- November 2015
- June 2013
- March 2013
- November 2012
- April 2012
- March 2012
Categories
Tags
- Alignment
- Apple
- Apple Mail
- aws
- Chroma Caps
- Damper
- DevOps
- Docker
- Driver
- Fix
- Formula
- German
- Hinge
- iMac
- iOS
- iPad
- iPhone
- Keynote
- kops
- Korg
- kubernetes
- LaTeX
- Mac
- MacBook
- MacOS
- MIDI
- Minilogue XD
- Monologue
- Monterrey
- Repair
- Roland
- Roland XV-5050
- Rotary Encoder
- Secret
- Swarm
- Synth
- Universal Clipboard
- Upgrade
- USB
- Utrusta
- Värde
- XV-5050
- XV3080
- XV5080
Monthly Archives: September 2017
Kubernetes & Kops: Make Your Own Encrypted Debian AMI
Kops is the most popular solution to install Kubernetes on AWS in a highly-available way. Debian is the preferred Linux distro for kops, which is somewhat annoying if you see that CoreOS is the preferred container Linux. Moreover, the Debian … Continue reading
Posted in DevOps
Tagged kops, kube-deploy, kubernetes
Comments Off on Kubernetes & Kops: Make Your Own Encrypted Debian AMI
Kubernetes: Make Pods Run on Your Master Nodes
Some pods you might want to run on your master nodes, too. This may be because they are exporting master node metrics or even to save resources: say you want many instances of a specific pod. In that case (and … Continue reading
Kubernetes: How to Make Your Node a Master
Under some circumstances Kubernetes is forgetting its master nodes (kops version < 1.8.0 and canal). If this happens, your masters will get scheduled full of pods. If this is the case the following command might help you: kubectl taint master1.compute.internal … Continue reading
Kubernetes: How to Delete all Taints from a Node
kubectl patch node node1.compute.internal -p ‘{“spec”:{“taints”:[]}}’