Sahil Prasadsailorworks.hashnode.dev·Jan 12, 2025Devops for decoupled architectureDecoupled architecture is when you have frontend and backend in two separate folders, and this is when you design e-commerce application, social media app etc. Below is a hands on tutorial on how you can upload your backend on the internet(https) an...AWS
Cheedge Leenotes-renovation.hashnode.dev·Jan 10, 2025Typo caused difference in NetworkPolicy yaml fileCheck following two networkpolicy yaml file, np1.yaml and np2.yaml: # np1.yaml apiVersion: networking.k8s.io/v1 kind: NetworkPolicy metadata: name: np namespace: space1 spec: podSelector: {} policyTypes: - Egress egress: - to: - nam...Kubernetes NetworkingKubernetes
Cheedge Leenotes-renovation.hashnode.dev·Jan 10, 2025CKA Quick Check Points -- NetworkQuick recap for network. Details can click the title link or check the official doc. SVC 1. create # target port: listening port inside container # port: service internal port # NodePort: expose external port kubectl expose deployment nginx --name n...CKA Quick Check PointsKubernetes
Cheedge Leenotes-renovation.hashnode.dev·Jan 3, 2025CKA Recap -- Ingress & NetworkPolicyIngress ingress to make external to access: domain_name:port/path Field: rules.ingressClassName path -> path backend.service.name -> service port -> service port host -> domain name apiVersion: networking.k8s.io/v1 kind: Ingress metadata: ...Kubernetes CKA RecapKubernetes
Yash Israniyashisrani.hashnode.dev·Jan 3, 2025Ingress : Your Gateway to Cluster Traffic 🚪Kubernetes is a game-changer for container orchestration, but managing external access to services can be a challenge. Enter Ingress*—a powerful feature that simplifies traffic routing in your Kubernetes cluster. In this blog, we’ll break down everyt...Kubernetes
Cheedge Leenotes-renovation.hashnode.dev·Jan 2, 2025Kubernetes Network (5)Last article we talk about the two main traffic control in Kubernetes: Ingress and the NetworkPolicy. However for expose to external this point, I want to make a comparision here, and also give more Ingress examples. Comparision Ingress: Designed to...Kubernetes NetworkingKubernetes
Jayesh Nalawadejayeshdevops.hashnode.dev·Dec 29, 2024Mastering Kubernetes Traffic: Ingress, Controllers, and Gateway API ExplainedIngress - Make your HTTP (or HTTPS) network service available using a protocol-aware configuration mechanism, that understands web concepts like URIs, hostnames, paths, and more. The Ingress concept lets you ==map traffic to different backends base...1 likeDevops LearningKubernetes
Harshit Sahuharshitsahu2311.hashnode.dev·Dec 26, 2024Kubernetes Service - CKAIn Kubernetes, a Service is an abstraction that defines a logical set of Pods and a policy for accessing them. This allows you to expose a network application running in one or more Pods in your cluster. One of the primary goals of Kubernetes Service...Certified Kubernetes Administratornode-port
Divya vasant satputelearnwithdivya.hashnode.dev·Dec 20, 2024🚀Deploy a Reddit Clone with Kubernetes Ingress🚀Kubernetes (K8s) has become the go-to tool for deploying and managing containerized applications at scale. Today, we'll take a fun journey to deploy a Reddit clone using Kubernetes Ingress — with emojis to make it extra engaging! 😉 📊 Prerequisites ...140 readsProjectsingress
Neeraj Guptaminex.hashnode.dev·Dec 11, 2024Securing Todo Apps: Implement Kubernetes Ingress with SSL/TLSThis blog will use ingress to manage routing rules, load balance traffic, and enable SSL/TLS. Pre-requisite Kindly refer to the following blog series, before this for better understanding.Todo App in K8s Also, refer to the recent blog on the Ingress....1 like·27 readsPython-based Todo App in Kubernetesingress