Skip to main content

Pentaho+ documentation has moved!

The new product documentation portal is here. Check it out now at docs.hitachivantara.com

 

Hitachi Vantara Lumada and Pentaho Documentation

Troubleshooting

Parent article

You may receive errors while installing or uninstalling on Kubernetes.

Resolve installation errors

If you receive errors (like the following example) during the installation of the catalog solution, these errors might be caused by a previous installation of the catalog solution that was not cleanly uninstalled (or failed to uninstall):

Error: rendered manifests contain a resource that already exists.

Unable to continue with install: existing resource conflict: ...

...

...

Perform the following step to delete existing resources manually before re-installing:

  • Enter the following command, replacing <ldc> with your Helm instance name:

    kubectl delete all -l "app.kubernetes.io/instance=<ldc>-test" -l "release=<ldc>"

Resolve uninstallation errors

If using the helm uninstall <instance-name> uninstall solution does not work as expected, you can uninstall without hooks, then manually delete orphaned or incomplete jobs manually.

Perform the following steps to uninstall without hooks, replacing <ldc> with your Helm instance name:

Procedure

  1. Use the following example command to uninstall:

    helm uninstall <ldc> --no-hooks
  2. Use the following example command to determine if any orphaned or incomplete jobs exist:

    kubectl get jobs -o name | grep <ldc>
  3. Use the kubectl delete command to delete any orphaned or incomplete jobs.