Posts

Showing posts from January, 2016

Kubernetes with UI installation on Ubuntu 14.04

Kubernetes with UI over Docker 1. Install prerequisite software packages on both $apt-get update $apt-get install ssh curl vim 2.  Docker installation sudo apt-get update sudo apt-key adv --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys 58118E89F3A912897C070ADBF76221572C52609D touch /etc/apt/sources.list.d/docker.list echo deb https://apt.dockerproject.org/repo ubuntu-trusty main > /etc/apt/sources.list.d/docker.list sudo apt-get update sudo apt-get purge lxc-docker sudo apt-cache policy docker-engine sudo apt-get install docker-engine -y 3.ssh-keygen -t rsa 4.Copy the ssh id_rsa key locally ///  optional for passwordless auth $ ssh-copy-id -i /root/.ssh/id_rsa.pub 127.0.0.1 5. In case this command fails please use this alternative solution in order to add the key //optional $ cat /root/.ssh/id_rsa.pub >> /root/.ssh/authorized_keys 6.Validate the password-less ssh-login // optional passwordless auth test $