NSNishant Sharmainnishantsharma.hashnode.dev路Apr 28, 2023 路 3 min readKubernetes Services and Service Discovery馃搶 Exposing Kubernetes Workloads using Services 馃敼Create a Deployment configuration for the Application named deployment.yaml apiVersion: apps/v1 kind: Deployment metadata: name: myapp labels: app: myapp spec: replicas: 3 selector: ma...00
NSNishant Sharmainnishantsharma.hashnode.dev路Apr 27, 2023 路 5 min readKubernetes WorkloadsIntroduction Kubernetes is one of the most popular container orchestration platforms used by developers worldwide. It provides a variety of features to manage, deploy, and scale containerized applications efficiently. Deployments, DaemonSets, and Sta...00
NSNishant Sharmainnishantsharma.hashnode.dev路Apr 25, 2023 路 7 min readKubernetes NetworkingKubernetes Services Why do we need services? Pods are ephemeral meaning they can be seamlessly destroyed and replaced if using a Deployment. Or they can be scaled at some point when using Horizontal Pod Autoscaling (HPA). This means we can鈥檛 rely on ...00
NSNishant Sharmainnishantsharma.hashnode.dev路Apr 24, 2023 路 3 min readKubernetes Installation and ConfigurationLaunch 2 instances master and worker, in this installation guide we will be installing kubeadm so we need atleast t2.medium for master meanwhile worker node can be t2.micro Install docker on both master and worker node. sudo apt install docker.io...01A
NSNishant Sharmainnishantsharma.hashnode.dev路Apr 24, 2023 路 8 min readJenkins Interview QuestionsWhat鈥檚 the difference between continuous integration, continuous delivery, and continuous deployment? Continuous Integration (CI): Merging code changes into a single codebase multiple times a day to quickly find and fix any problems. It is the practi...00