Запуск кластера Kubernetes on Debian

Как запустить кластер Kubernetes на Debian apt-get update apt-get upgrade Зависимости apt-get install gcc golang-go curl git Ставим ETCD curl -L https://github.com/coreos/etcd/releases/download/v2.0.3/etcd-v2.0.3-linux-amd64.tar.gz -o etcd-v2.0.3-linux-amd64.tar.gz tar xzvf etcd-v2.0.3-linux-amd64.tar.gz cd etcd-v2.0.3-linux-amd64 Проверяем работу – ? ./etcd стопаем на ctrl+c и копируем в /ust/bin/etcd cp etcd /usr/bin/etcd Теперь вытягиваем сам Kubernates git clone https://github.com/GoogleCloudPlatform/kubernetes.git cd kubernetes make release […]

Читать дальше… from Запуск кластера Kubernetes on Debian