writer://
November 23, 2024
Install a Kubernetes Ingress
This is for my own understanding. It might be wrong but reflects my current understanding.
(using kind
)
This setup maps ports 80 and 443 from localhost to the ingress. It's like...
November 23, 2024
Difference Between Kubernetes yaml and Helm Chart
This is for my own understanding. Please don't assume it is 100% correct. A helm chart is an abstraction that allows you to group multiple k8s configuration files into one package and deploy...
ReadNovember 23, 2024
Kubernetes Helm Releases
This is for my own understanding. Please don't assume it is 100% correct. When releasing with helm, the release name typically stays the same when you then upgrade a Helm chart. The release name...
ReadNovember 14, 2024
Kubernetes `Rollout`
In k8s, you don't "deploy", you "rollout". But, you don't "rollout" either. You either apply a deployment (or do it through helm, preferably), or kubectl create deployment <name>
....
November 13, 2024
Kubernetes Scaling
CA - Cluster Autoscaling. VPA - Vertical Pod Autoscaling. HPA - Horizontal Pod Autoscaling. To me, using VPA/HPA alone can’t be much cost savings. At best, it can rearrange the resources you are...
ReadNovember 13, 2024
Kubernetes Helm Basics
This is for my own understanding. It might be wrong but reflects my current understanding. Helm is a package manager and templater. It stores whatever info it has about the configuration in the...
ReadNovember 13, 2024
Kubernetes Cluster Management
This reflects how I currently understand this, and may be incorrect: kops: create k8s clusters that you manage yourself, on whatever provider (AWS, Azure, etc) eksctl: create k8s clusters managed...
ReadNovember 6, 2024
How to Find What Resource to List for `kind:`
When creating an application in kubernetes, there are a lot of values for the kind:
field. This is how to find those, and explain them so you know what values should be there.
Example:...