Code2Deploy
← All articles

Kubernetes Basic

17 articles in this category.

Installing Rancher on K3s with Ingress, Domain, and SSL Configuration
Kubernetes Basic

Installing Rancher on K3s with Ingress, Domain, and SSL Configuration

In this tutorial, we’ll walk through the process of setting up Rancher on a K3s cluster. We’ll cover prerequisites like setting up an Ingress Controller, configuring a Domain Name, enabling SSL with Let’s Encrypt, and editing the agent-tls-mode before registering your existing cluster to Rancher. Prerequisites Step 1: Install K3s If you don’t already have…

K8s Kubernetes

Kubernetes Persistent Volumes: A Comprehensive Guide

Persistent Volumes (PVs) are a critical part of Kubernetes for managing durable storage. This blog explains the concepts of PVs, their types, and how to set up NFS and AWS EBS-backed PVs. We also highlight the necessary access privileges and detailed steps for setting up and connecting various components. Steps Overview Understanding Persistent Volumes and…

K8s Kubernetes

StatefulSets

StatefulSets in Kubernetes provide a unique and robust solution for managing stateful applications. They offer a set of Pods with distinct identities and stable hostnames, ensuring stable network identifiers, persistent storage, and ordered deployment and scaling. Let’s dive deeper into understanding StatefulSets and how to effectively manage them. What are StatefulSets? StatefulSets are ideal for…

Kubernetes Cheatsheet
Kubernetes Basic

Kubernetes Cheatsheet

Let's learn k8s all commands from this Kubernetes Cheatsheet

kubernetes Roadmap
Cluster Maintenance

Kubernetes Roadmap: A Comprehensive Guide to Securing and Managing Your Cluster

Let’s dive into each aspect of Kubernetes and explore how to implement best practices and tools for security, infrastructure management, application deployment, package management, monitoring, observability, and networking. Index: 🔒 Security and Identity Management: Example: apiVersion: rbac.authorization.k8s.io/v1kind: Rolemetadata:  name: pod-reader  namespace: defaultrules:– apiGroups: [“”]  resources: [“pods”]  verbs: [“get”, “list”]—apiVersion: rbac.authorization.k8s.io/v1kind: RoleBindingmetadata:  name: read-pods  namespace: defaultsubjects:–…

Self-Managed Kubernetes Cluster Setup with bash script
Kubernetes

Setting Up a Self-Managed Kubernetes Cluster on Ubuntu 22.04 with Kubeadm and Bash Script

Self-Managed Kubernetes Cluster Setup with bash script

CKA EXAM Prep
K8s Kubernetes

Mastering Kubernetes: A Guide to CKA Exam Practice

Introduction: Welcome to our comprehensive guide for mastering Kubernetes, specifically tailored for those preparing to take the Certified Kubernetes Administrator (CKA) exam. The CKA certification is a testament to your proficiency in managing Kubernetes clusters, making you a sought-after professional in the field of cloud-native technologies. Understanding the CKA Exam: The CKA exam is a…

kubernetes commands
Kubernetes Basic

Mastering Kubernetes: A Comprehensive Guide to Every Command

Introduction: Welcome to our comprehensive guide on Kubernetes commands! Kubernetes has become the de facto standard for container orchestration, empowering developers and operations teams to efficiently manage containerized applications at scale. However, mastering Kubernetes commands can be a daunting task due to its vast ecosystem and extensive feature set. In this blog, we’ll break down…