Aditya Dhopadecodemyworld.hashnode.dev·Sep 22, 2023Setting up Kubernetes the Hard-way using Kubeadm, Kubectl, KubeletLet's cut to the chase and get some ideas about the following terminologies used in the Title. What is Kubelet? Kubelet is more of a process that helps create or disintegrate pods. Kubelet is the process that works on each node in the master and slav...Discuss·1 like·57 readsEvery DevOps Novice must knowKubernetes
Shishir Tambecoldman22.hashnode.dev·Jan 14, 2023Setting up of Kubernetes master & node on AWS- Login to aws- launch 3 instance- ubuntu 16.04 (t2 medium)- use puttygen, create private key and save- access all the 3 instance (1 master, 2 nodes)Commands common for master & node- sudo su- apt-get update- apt-get install apt-transport-https This ...Discuss·29 readsKubernetes
Shishir Tambecoldman22.hashnode.dev·Jan 13, 2023Architecture of kubernetesWorking with kubernetes- We create manifest (.yml file)- Apply this to cluster (to master) to bring into desired state- Pod runs on node, which is controlled by master Roles of Master NodeKubernetes cluster contains containers running on bare metal/ ...Discuss·120 readsKubernetes
Sandeep Dhunganadevopsandcloud.hashnode.dev·Jan 4, 2023Creating the first pod in KubernetesTo create the pod let's first install the Minikube from here. Let's start with the basic pod. vi first-pod.yml kind: Pod apiVersion: v1 metadata: name: my-pod spec: containers: - name: container1 image: ubuntu command: ["/bin/bas...Discuss·91 reads#Pods
Sadeq Aramidehsmallworld.hashnode.dev·Nov 28, 2022Failed to run kubelet" err="failed to run Kubelet: misconfiguration: kubelet cgroup driver: \"cgroupsd\" is different from docker cgroup driverRecently I was using vagrant to bootstrap a Kubernetes environment (version 1.21.1 ), and noticed that when I modified the docker daemon to use the systemd instead of the cgroupsd, the request to the API server was rejected. With checking journalctl...Discuss·227 readscgroupsd