Chef Node BootstrapThe Chef server works as a mediator between the workstation and node, there is a need to interconnect for both the workstation and node should be in the same AZ. Two actions will be done while bootstrapping, Adding a node to the chef server Install...Jun 17, 2024·4 min read
Day 9: Kubernetes ServicesWhat is a Service in Kubernetes? For Kubernetes, a service is an abstraction that represents a set of logical pods where an application or component is running, as well as embedding an access policy to those pods. Actual pods are ephemeral, Kubernete...Mar 19, 2024·4 min read
Day 8: K8s NamespaceIn Kubernetes, namespaces provides a mechanism for isolating groups of resources within a single cluster. Names of resources need to be unique within a namespace, but not across namespaces. Namespace-based scoping is applicable only for namespaced ob...Mar 14, 2024·4 min read
DAY 7 : ReplicaSetA Replica Set's purpose is to maintain a stable set of replica Pods running at any given time. It is responsible for monitoring the health of the modules it manages and ensuring that the required number of replicas are always running, thus providing ...Mar 12, 2024·5 min read
DAY 6: Kubernetes DeploymentWhat is a Kubernetes Deployment? Kubernetes deployment is a high-level resource object by which you can manage the deployment and scaling of the applications while maintaining the desired state of the application. You can scale the containers with th...Mar 6, 2024·5 min read
DAY 5: NodesWhat are Kubernetes Nodes ? A Kubernetes node is a machine that runs containerized workloads as part of a Kubernetes cluster. A node can be a physical machine or a virtual machine, and can be hosted on-premises or in the cloud. A Kubernetes cluster c...Mar 4, 2024·4 min read
DAY 4 : PodsPods are the smallest deployable units of computing that you can create and manage in Kubernetes. A Pod is a group of one or more containers, with shared storage and network resources, and a specification for how to run the containers. A Pod's conten...Mar 1, 2024·3 min read