Versions Compared

Key

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

...

 OOM Software Requirements

Release

Kubernetes

Helm

Kubectl

Docker

Amsterdam1.7.x2.3.x1.7.x1.12.x
Beijing/Master1.8.102.8.21.8.1017.03

Minimum Hardware Configuration:

 OOM Hardware Requirements

RAM

HD

vCores

Ports

128 GB160 GB160.0.0.0/0 (All Open)

Procedure:

Step 1: Login to VMware Intergrated OpenStack 4.1 with Kubernetes

...

  1. SSH into the VMware Integrated OpenStack with Kubernetes.

  2. Once you are logged into VMware Integrated OpenStack with Kubernetes, use the following command with the same username and password used during SSH:

    #vkube  login --insecure

  3. Get the list of all the clusters along with their Cluster ID, use the following command:

    #vkube cluster list --insecure

    Make a note of the Cluster ID of the cluster you want to access or know more about.

  4. Get the detailed information about the nodes running on a particular cluster, use the following command:

    #vkube cluster show <Cluster ID> --insecure

    Make a note of the IP of the Master and Worker Nodes.



  5. Get a list of all the docker containers running in background.

    #docker ps -a

  6. Get an interactive shell of the docker container with the name app-api.

    #docker exec -it <Container ID or Name> /bin/bash

    After this command, you'll get a shell of a running container.

  7. Once we are inside a running container, change the directory and go the cluster location using the following command:

    #cd /var/lib/vrc/terraform/<ClusterID>

  8. Once we are inside a running container, change the directory and go the cluster location using the following command:

    #cd /var/lib/vrc/terraform/<ClusterID>

  9. Once you are inside the Kubernetes Nodes, you can deploy ONAP, or troubleshoot an error as per your requirements.

...