briefcase for documents placed on table
AWS Azure Kubernetes Linux PowerShell Python Scripts Terraform Windows

Coding for Beginners or Advanced – A Standard set files for your projects

This might not apply to your projects but as a DevOps Engineer I think it’s good to have a standard set of files/folders for each of my projects. It keeps things tidy and helps me. This list is based on my projects using Terraform, GitLab, Docker, Packer, git and more. Here’s a brief explanation of […]

Kubernetes

Load Balancing Applications with Minikube: From Simple to Advanced

Minikube is a popular tool for running Kubernetes locally, allowing developers to test and develop applications in a Kubernetes environment on their personal computers. One of the key features of Kubernetes is its ability to load balance traffic across multiple instances of an application, ensuring reliability and availability. This article explores the different ways you […]

AKS Helm Kubernetes

Helm Commands

Action Command to Run To list your releases helm list To install a Release helm install [release] [chart] Upgrade a Release revision helm upgrade [release] [chart] Rollback to a Release revision helm rollback [release] [revision] Display Release history helm history [release] Display Release status helm status [release] Display details of a Release helm get all […]

AKS Azure Kubernetes

Using Key Vault with AKS – System Assigned – CSI Driver – with Pod Identity

Hey, so rather than re-write the same article, before reading and applying this blog, do and read this one – https://realworldit.net/archives/630 This will get you to the point where you can then install and use Pod Identity. Let’s do this!! 6, After you have gone through the link above, now it’s time to install the […]

AKS Azure Kubernetes

Using Key Vault with AKS – System Assigned – CSI Driver

If you are using Azure, and deploying AKS then a good option to store your secrets is to use Key vault. So how do you do that with AKS? There is an open source project which isn’t supported my Azure but does seem to be the prime way to use Key Vault with AKS. The […]

AKS Azcli Azure Kubernetes PowerShell

AKS Azure Kubernetes Services – Private AKS Endpoint.

Check out my github repo for an ARM Template that deploys AKS. https://github.com/PinportLtd/Kubernetes-AKS Private AKS Endpoint. If you enable the AKS private endpoint you can ensure network traffic between your API server and your node pools remains on the private network only. Which is great for security. But it also means your k8s API is […]