Posted in 2026

Vim for Kubernetes Certification Exams (CKA, CKAD & CKS)

Blog Post Publish Date: 2026/07/15

This post focuses on the minimal Vim configuration and the editing techniques I use most frequently when working with Kubernetes YAML manifests. The goal is not to master Vim, but to learn a small set of commands to improve your editing speed during the exam.

Read more ...


Workstation Setup for Kubernetes Exams (CKA, CKAD & CKS)

Blog Post Publish Date: 2026/07/09

This blog post walks through the workstation optimizations I use to work more efficiently during the exam, including Vim configuration, Bash keybindings, shell aliases, and other tweaks that help reduce friction and save valuable time.

Read more ...


Helm Tips: Inspect Your Chart Context with JSON

Blog Post Publish Date: 2026/02/25

Debugging Helm charts can be frustrating when starting out, especially if you come from programming languages with debuggers and IDE auto-completion that provide a smoother development experience. It is common to face issues when you create a template that tries to access a parameter defined in the .Values files, and for any reason, whether a syntax error or typo, the $ helm template command fails, and the stack trace shows confusing messages that don’t point to the root cause. This blog post provides an alternative approach to inspect the Helm Chart context with JSON, helping you understand how to access chart properties for use in your templates.

Read more ...