Chetan Mohanrao Mohoddevops-concepts-by-chetan.hashnode.dev·an hour agoKubernetes Basics: Step-by-Step Creation of Pods, Namespaces, and Clusters + Key Interview QuestionsWhen planning to set up a cluster, you should first decide how many nodes you want to create. The first should be the control plane and the worker nodes. We will create one control plane and two worker nodes. By the way, the control plane includes th...DiscussKubernetes
Shah Abul Kalam A Kiamshah.hashnode.dev·Nov 17, 2024Understanding KubernetesWhat is Kubernetes ? (or K8s for short) Definition Before diving into the definition, let's take a moment to appreciate the weird-ass name "Kubernetes." It comes from the Greek word "κυβερνήτης" (kubernētēs), meaning helmsman or pilot - the one who s...DiscussKubernetes
Jayesh Nalawadejayeshdevops.hashnode.dev·Nov 16, 2024Docker Commands (part-1)Beginner Commands: docker --version Check the Docker version installed on your system. Example: docker --version docker pull <image> Download a Docker image from Docker Hub. Example: docker pull ubuntu docker build -t <tag> <path> Build a...Discuss·1 likeDevops LearningAWS
Rahul Bansodcompile.hashnode.dev·Nov 14, 2024Mastering Node Placement in Kubernetes: Node Selectors vs. Node AffinityIn Kubernetes, controlling where your Pods are scheduled can be essential for managing workloads, ensuring resource optimization, and maintaining availability. Kubernetes provides two powerful mechanisms for this: Node Selectors and Node Affinity. Wh...Discussnode
Avinash TietlerforConcept of Kubernetesconcept-of-kubernetes.hashnode.dev·Nov 12, 2024What is Kubernetes? Why it's essential in modern DevOpsWhat is Kubernetes? Kubernetes is a portable, extensible, open source platform for managing containerized workloads and services, that facilitates both declarative configuration and automation. It has a large, rapidly growing ecosystem. Kubernetes se...DiscussDevops
Subbu Tech Tutorialssubbutechtutorials.hashnode.dev·Nov 9, 2024Secrets Management in K8sUsing credentials directly in the Helm chart's values.yaml file is convenient for testing and development, but it's not recommended for production or real-world scenarios due to security risks. In real-world deployments, sensitive information like da...DiscussKubernetes Basics: A Beginner’s GuideKubernetes
Rahul Bansodcompile.hashnode.dev·Nov 8, 2024Understanding REST and its Role in the Kubernetes APIWhen working with Kubernetes, one of the foundational components that developers interact with is the Kubernetes API, a RESTful API. REST (Representational State Transfer) APIs are widely used across various web applications due to their many benefit...DiscussKubernetes
Ashwinashwinrajendran.hashnode.dev·Nov 7, 2024Important Docker Interview QuestionsWhy and when to use Docker? Why: Docker provides a consistent and reproducible environment, ensuring that applications run consistently across different environments. It simplifies deployment, scaling, and management of applications. When: Use Docker...DiscussDockerDocker
Vidhi ChadhaforVidhi Chadhavidhichadha25.hashnode.dev·Nov 5, 2024🔍 Unlocking the Power of Linux: Mastering grep and File Permissions 🚀Introduction Welcome to another deep dive into the vast world of Linux! 🌌 Have you ever felt like finding something in your files was like searching for a needle in a haystack? Or perhaps you’ve struggled to manage file permissions in a shared envir...DiscussLinux
Md. Musfikur Rahman Sifarsifarsblog.hashnode.dev·Nov 4, 2024Kubernetes ArchitectureArchitecture: Video reference: https://youtube.com/watch?v=NYsEPjk4SsU&si=kHo-iindAyVP3yNA 1. Cluster Analogy: A cluster is like a whole organization where multiple teams work together. Explanation: A Kubernetes cluster is the fundamental unit, ma...Discuss#kubernetes #container