kubernetes-the-harder-way
kubernetes-the-harder-way copied to clipboard
A guide to setting up a production-like Kubernetes cluster on a local machine
For the Linux/AMD64 docs, the NAT configuration systemd service in 02_Preparing_Environment_for_a_VM_Cluster.md does not execute the kubenet-nat.sh script properly. I was able to fix by changing the ExecStart line to `ExecStart=sh...
Update to 04_Bootstrapping_Kubernetes_Security.md to include the copying of the ca.pem file to the gateway which is referenced later when configuring the LB.
On Ubuntu the NFS service is provided by `nfs-kernel-server`. To update the exports configuration the command should be `exportfs -a` , I believe. The instructions seem correct only for MacOS....
The script to write out the control and worker car files has the "seq" starting at 1 instead of 0. This results in control0-csr.json not getting created. Additionally the next...