Generate the kubeconfig file for your cluster using the Kubeconfig File button in the Cluster view of your cluster.
Save the generated file as $HOME/.kube/config and run kubectl get nodes to verify it works.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # GRUB loading. | |
| # Welcome to GRUB! | |
| # | |
| # error: file `/boot/grub/i386-pc/normal.mod` not found. | |
| # Entering rescue mode... | |
| grub rescue> ls | |
| hd(0) (hd0,msdos1) | |
| grub rescue> set | |
| cmdpath=(hd0) | |
| prefix=(hd0,msdos1)/boot/grub |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| cd /opt | |
| wget http://apache-mirror.rbc.ru/pub/apache/kafka/0.10.1.0/kafka_2.11-0.10.1.0.tgz | |
| tar xvzf kafka_2.11-0.10.1.0.tgz | |
| ln -s kafka_2.11-0.10.1.0/ kafka | |
| vi /etc/systemd/system/kafka-zookeeper.service | |
| [Unit] | |
| Description=Apache Zookeeper server (Kafka) | |
| Documentation=http://zookeeper.apache.org |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| yum install wget | |
| wget https://yum.dockerproject.org/repo/main/centos/7/Packages/docker-engine-1.13.1-1.el7.centos.x86_64.rpm | |
| wget https://yum.dockerproject.org/repo/main/centos/7/Packages/docker-engine-selinux-1.13.1-1.el7.centos.noarch.rpm | |
| #nice site with pckgs: https://pkgs.org/ | |
| #package for docker-engine-selinux | |
| yum install -y policycoreutils-python | |
| rpm -i docker-engine-selinux-1.13.1-1.el7.centos.noarch.rpm |