Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

4.5 - Fill the details in User & Group page

                 


        Image Added


4.6 - Click on FINISH Step4and wait for few minutes for the kubernetes cluster to get created .


Image Added



Step5. Verifying the VIO Kubernetes Cluster - If everything in step 3.1 to step 3.6 has been done successfully .The Summary information for the cluster will be filled as given in the example below .


Step5Step6. How to get Kubernetes Host IP Address and login to Kubernetes Host  . 

56.1 - Login via console window  to  BLUESHIFT_MGMT_IP_ADDRESS . user name and password is same as used in step1 .

56.2 - Once logged into  BLUESHIFT_MGMT_IP_ADDRESS  session  use the command  "vkube  login --insecure" . use the user name and password same as in step1 .

56.3 - Get the list of clusters using command  "vkube cluster list --insecure" . make a note of cluster Id in the output of the command 

56.4 - Get the cluster node details using command "vkube cluster show <cluster Id > --insecure "  .make note of worker ip address .Worker IP Address KUBERNETES_HOST_IP.

56.5 - Login to app-api docker using docker exec it app-api bash

56.6 - Once inside the app-api docker go to /var/lib/vrc/terraform/<cluserId>

56.7 - ssh to KUBERNETES_HOST_IP_ADDRESS using below command

                  ssh -i private.key -F ssh.bastion.conf ubuntu@KUBERNETES_HOST_IP_ADDRESS

56.8 - Once inside KUBERNETES_HOST_IP_ADDRESS (to be reviewed)

Step6Step7. Installing kubectl to manage Kubernetes cluster 

  TBC20171207   

67.1 - Download the kubectl using below command 

curl -LO https://storage.googleapis.com/kubernetes-release/release/v1.7.0/bin/linux/amd64/kubectl

67.2 - Make the kubectl binary executable.

chmod +x ./kubect

67.3 - Move the kubectl to PATH 

sudo mv ./kubectl /usr/local/bin/kubectl 

Step7Step8. Verifying that kubernetes config is good 

...

Kubernetes master is running at https://10.110.208.207:443/
dnsmasq is running at https://10.110.208.207:443//api/v1/namespaces/kube-system/services/dnsmasq/proxy
kubedns is running at https://10.110.208.207:443//api/v1/namespaces/kube-system/services/kubedns/proxy

Step8Step9. Installing Helm 

89.1 - Download the helm  using below command  

wget http://storage.googleapis.com/kubernetes-helm/helm-v2.3.0-linux-amd64.tar.gz

89.2 - Untar the  file

tar -zxvf helm-v2.3.0-linux-amd64.tar.gz

89.3 - Move the helm to /usr/local/bin

...