Verifying the IBM® Sterling Control Center Monitor Deployment

After the deployment procedure is complete, verify the deployment to ensure that everything is working as expected:
  1. Invoke the following command to list all the services:
    $ kubectl get services
  2. Invoke the following command to list all Persistence Volumes:
    $ kubectl get pv
    
    NAME            CAPACITY   ACCESS MODES   RECLAIM POLICY   STATUS   CLAIM                        STORAGECLASS   REASON   AGE
    cc-pv-volume    500Mi      RWX            Retain           Bound    default/cc-pvc-volume        manual                  6d2h
  3. Invoke the following command to list all Persistence Volume Claims:
    $ kubectl get pvc
    
    NAME                 STATUS   VOLUME          CAPACITY   ACCESS MODES   STORAGECLASS   AGE
    cc-pvc-volume        Bound    cc-pv-volume    500Mi      RWX            manual         6d2h
  4. Invoke the following command to list all deployments:
    $ kubectl get statefulset
    
    
    NAME     READY   AGE
    cc-app   1/1     3s
  5. Invoke the following command to view the pod status:
    $ kubectl get pods -o wide
    
    NAME       READY   STATUS    RESTARTS   AGE   IP          NODE         NOMINATED NODE   READINESS GATES
    cc-app-0   1/1     Running   0          35s   10.40.0.0   ccrdock-01   <none>           <none>

    The deployment is successful if the pods status displays READY.