Posts tagged 'kubernetes' Page 1 of 1

A Kubernetes Walkthrough

Here are all the notes I need to get me from zero to installation, to deployment, ingress, encryption and monitoring of a service! Create a Cluster You can use various k8s implementations: Miniku...

Switching Contexts with Kubectx

Kubectx is a tiny cli shortcut to aid in k8s management and switching between contexts and namespaces. Normally you would control this sort of thing with a more complicated command. To set the def...

Kubernetes Application Scaling

Here are some thoughts on Kubernetes application scaling, both manual and autoscaling. You can set scaling for a service, to ensure that an appropriate number of pods are available to fulfil reque...

Kubernetes Secrets

Kubernetes secrets allow you to manage sensitive information like credentials or security certification. Possibly the best way to deal with secrets is with kubeseal. $ kubectl --namespace default ...

Kubernetes Configuration Management Methods

There are three different modes of Kubernetes configuration management: Imperative Commands Imperative Configuration files Declarative Configuration files When creating a k8s cluster from ...

Kubernetes Load Balancing

My notes on Kubernetes services and load balancing solutions for cloud and bare metal infrastructure.