Skip to content

phosae/kube-setup

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

35 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

k8s-setup

the hard way: Kubernetes The Hard Way

the easy way: Creating a cluster with kubeadm

development and testing way (local clusters IN Docker):

  • KinD, run Kubernetes using Docker container "nodes"
  • K3D, run K3s in Docker

Pick a network plugin and start play

Multiple CNI support

Useful Policies

helm cli

on debian/ubuntu

{
curl https://baltocdn.com/helm/signing.asc | gpg --dearmor | sudo tee /usr/share/keyrings/helm.gpg > /dev/null
sudo apt-get install apt-transport-https --yes
echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/helm.gpg] https://baltocdn.com/helm/stable/debian/ all main" | sudo tee /etc/apt/sources.list.d/helm-stable-debian.list
sudo apt-get update
sudo apt-get install helm
}

or with bash shell

{
curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3
chmod 700 get_helm.sh
./get_helm.sh
}