Versions Compared

Key

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

...

        root@localhost:~# kubectl cluster-info   kubernetes-dashboard is running at ...
   monitoring-grafana is running at ....
   monitoring-influxdb is running at ...
   tiller-deploy is running

    Kubernetes master is running at ....
    Heapster is running at....
    KubeDNS is running at ....
    kubernetes-dashboard is running at ...
    monitoring-grafana is running at ....
    monitoring-influxdb is running at ...
    tiller-deploy is running at....

...

 7.2 

...

on  Client from

...

Where Kubernetes

...

cluster can be managed Remotely  

        root@localhost:~# kubectl  version

          Client Version: version.Info{Major:"1", Minor:"7", GitVersion:"v1.7.0", GitCommit:"d3ada0119e776222f11ec7945e6d860061339aad", GitTreeState:"clean", BuildDate:"2017-06-29T23:15:59Z", GoVersion:"go1.8.3",

            Compiler:"gc", Platform:"linux/amd64"}

          Server Version: version.Info{Major:"1", Minor:"7+", GitVersion:"v1.7.7-rancher1", GitCommit:"a1ea37c6f6d21f315a07631b17b9537881e1986a", GitTreeState:"clean", BuildDate:"2017-10-02T21:33:08Z",GoVersion:"go1.8.3"             Compiler:"gc", Platform:"linux/amd64"}


Step 8 Verifying that kubernetes config is good 

     8.1  on Kubernetes  Cluster  

    8.1 on Kubernetes Cluster      root@localhost:~# cat  ~/.kube/config 

        root@localhost:~# kubectl cluster-info

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

...

 apiVersion: v1

        kind: Config
        clusters:
         - cluster:
         api-version: v1
         insecure-skip-tls-verify: true
         server: "<SERVER_IP_ADDRESS:8080/r/projects/CLUSTER_NAME/kubernetes:SERVER_PORT_NUMBER"
         name: "(CLUSTER_NAME)"
         contexts: 
          - context:
         cluster: "(CLUSTER_NAME)"
          user: "(CLUSTER_NAME)"
          name: "(CLUSTER_NAME)"
          current-context: "(CLUSTER_NAME)"
          users:
          - name: "(CLUSTER_NAME/USER_NAME)"
          user:
           token: "<SECURITY_TOKEN>"


     8.2  on  Client from Where Kubernetes cluster can be managed Remotely  

         root@localhost:~# cat  ~/.kube/config 

         current-context: default-context

        apiVersion: v1
        clusters:
         - cluster:
       api-version: v1
       server: https://SERVER_IP_ADDRESS:SERVER_PORT_NUMBER/
       insecure-skip-tls-verify: true
       name: CLUSTER_NAME

       contexts:
       - context:
      cluster: CLUSTER_NAME 
      namespace: default
      user: user1
       name: default-context
      users:
      - name: user1
       user:
       username: "<USERNAME>"
       password: "<PASSWORD"
       kind: Config
       preferences:
       colors: true

Step 9 Installing Helm 

 9.1 - Download the helm  using below command  

...