kind Kubernetes k8s

Kubernetes in Docker (KIND) Tutorial 'https://www.youtube.com/watch?v=eKr75oClPZ4 Your First Kubernetes Cluster in Minutes! Docker Desktop + KIND 'https://www.youtube.com/watch?v=CkB4px47aVQ How to run local multi-node Kubernetes clusters using kind 'https://www.youtube.com/watch?v=C0v5gJSWuSo Infocommandcreate single node clusterkind create cluster --name my-single-clusterlist the containerdocker container lslist of nodeskubectl get nodesload images into nodekind load --helpdelete clusterkind delete cluster --name my-single-clustercreate multi-node kind … Continue reading kind Kubernetes k8s

Proxmox + Kubernetes

How to Setup Kubernetes on Proxmox 'https://www.youtube.com/watch?v=raIcSbX0AzI 'https://www.youtube.com/watch?v=4pIapR-Ci74 How to get data in and out of Kubernetes locally 'https://www.youtube.com/watch?v=OtnX6kDUxII&list=PLNVfdlaRvkEkO-QH7NJKrVR8Xs4wH1kvN install k8s 'https://www.youtube.com/watch?v=j3a2Sr2n8eQ errors and solutions: Both c24-db and c24-pgadmin use PersistentVolumeClaims (PVCs): postgres-pvc → requested 1Gi pgadmin-pvc → requested 500Mi But by default, on a fresh cluster, there is no default StorageClass to provision volumes … Continue reading Proxmox + Kubernetes

Kubernetes

create two ubuntu machines as master and worker Run below script on both the machines: nano setup-k8s.sh copy and paste below script in the file. change the permissions: chmod +x setup-k8s.sh run the script: ./setup-k8s.sh set -euxo pipefail # declare variables KUBERNETES_VERSION="v1.31" CRIO_VERSION="v1.30" # disable swap sudo swapoff -a # Create the .conf file to … Continue reading Kubernetes