In Debian the standard SSL cert directory is /etc/ssl/certs. Certs whose hash is symlinked here (format: XXXXXXXX.n | X in hex, n in N) will be found system-wide. When a look-up for a domain is done, then this domain is hashed in the same way to determine the file the […]
Month: March 2018
export import kubeconfig
export kubernetes config: # start a minikube adding external adresses to ssl certs cloud$ ips=”$(ip addr show | grep “inet ” | awk ‘{print $2}’ | sed ‘s/\/.*//’ | xargs | sed -e ‘s/ /,/g’)” cloud$ minikube start –apiserver-ips=”$ips” <other options> # export the config cloud$ kubectl config view –flatten […]
install kubernetes on debian sid
install distribution provided run-time-dependencies used by minikube: apt-get install qemu-kvm libvirt-daemon-system virtualbox virtualbox-dkms install minikube and dependencies: curl -Lo minikube https://storage.googleapis.com/minikube/releases/v0.25.0/minikube-linux-amd64 chmod +x minikube mv minikube /usr/local/bin/ latest=”$(curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)” curl -LO “https://storage.googleapis.com/kubernetes-release/release/${latest}/bin/darwin/amd64/kubectl” chmod +x kubectl mv kubectl /usr/local/bin/ # kvm only curl -LO https://storage.googleapis.com/minikube/releases/latest/docker-machine-driver-kvm2 chmod +x docker-machine-driver-kvm2 mv docker-machine-driver-kvm2 […]