Browse our collection of articles on various topics related to IT technologies. Dive in and explore something new!
I recently passed the Certified Kubernetes Administrator (CKA) exam, and I want to share my journey...
Recap of Previous Days Day 1: We explored Docker fundamentals, the issues before...
Introduction Welcome to our comprehensive blog series designed to help you master...
When you're running a Kubernetes cluster, it's critical to ensure your Pods are evenly distributed...
Hello everyone, welcome back to my blog series on CKA 2024 in this seventh entry of the series, we'll...
If you’ve spent any time setting up or managing Kubernetes, you might have come across the...
In this note, I picked up some examples for each catogry. And the resource are list in Reference...
My experiences publishing my first challenge on labs.iximiuz.com and how the platform enables creating learning materials for users
Kubeadm is a tool designed to simplify the process of creating Kubernetes clusters by providing...
To understand Kubernetes, we should understand the concept of containers. In the traditional way of...
Ingress ingress to make external to access:...
Kubernetes is now a crucial tool for developers. Regardless of the field of software development,...
Thinking of taking the CKA exam? Here's a friendly breakdown of what to expect, plus the best resources I used to pass.
Quick recap for logs & configs. Details can click the title link or check the official doc. ...
Hello everyone! Welcome back to the eighth instalment in the CK 2024 series. Today we'll be delving...
In my previous post, shows the basic concepts for Storage in kubernetes, here I want to use some...
Deployment Basic CMD # Create kubectl create deploy NAME --image=IMAGE...
This is a quick recap for RBAC, more details can check the official doc or click the tiltle...
The storage in cka is mainly about the way how to store the data, as the container is used for...
Quick recap for network. Details can click the title link or check the official doc. ...
ClusterIP kubectl expose deployment nginx --name nginx-svc --port 8080 --target-port 80 ...