Validation

Validate Core after the installer completes and before you continue with post-install tasks.

Prerequisites

  • Core installation completed.
  • You can access the platform Web UI address shown by the installer.
  • You can run kubectl from the installation node.

Validate Web UI Access

After the installation is complete, the installer displays the platform access URL. Click Access to open the platform Web UI and verify that the platform login page is reachable.

Validate Core Applications and Pods

Run the following commands on the installation node:

# Check if there are any failed Charts
kubectl get apprelease --all-namespaces
# Check if there are any Pods not in Running or Completed status
kubectl get pod --all-namespaces | awk '{if ($4 != "Running" && $4 != "Completed")print}' | awk -F'[/ ]+' '{if ($3 != $4)print}'

The installation is ready for post-install tasks when the platform Web UI is accessible, core applications are not failed, and Pods are in the expected Running or Completed states.

Next Step

After validation succeeds, continue with Next Steps.