Verify Installation

After performing a helm install you can use the kubectl tool to verify the installation. The following resources are some of the items to verify within your kubernetes cluster.
  • pods

  • services

  • deployments

  • statefulsets

kubectl get pods 
kubectl get services 
kubectl get deployments
kubectl get statefulsets

These commands will show the status of each of these resources. For example, the pods need to be in a running state. If any of these resources are not in a functioning running state you can use kubectl to diagnose. See the kubernetes documentation for more information on kubectl.