faq This bundle requires the following product version - padogrid/padogrid GitHub Wiki

I'm getting the PadoGrid error message, "ERROR: This bundle requires the following product version(s) configured for the workspace."

You are seeing an error message similar to the following.

ERROR: This bundle requires the following product version(s) configured for the workspace.
          hazelcast=3

       Use the following commands to verify and install products.
          show_padogrid, update_padogrid, install_padogrid

       Command aborted.
  • This error message indicates that the bundle you are trying to install requires the specified product version. You can install the product by running the install_padogrid command.

    Example:

    install_padogrid -product hazelcast
    
  • If you see this error message despite you have the correct version of the product already installed, then your workspace needs to be updated with that product version. This can be achieve by running the update_padogrid command.

    Example:

    update_padogrid -product hazelcast
    
  • If you see this error message despite you have updated the product version, then you do not have a cluster created with that product version in the current workspace. You can run the create_cluster -product <product_name> command to create a temporary cluster. Once a cluster is created, switch to that cluster by running switch_cluster <cluster_name> to set the cluster context.

    Example:

    make_custer -product hazelcast -cluster myhz
    switch_cluster myhz
    

    Once you have your bundle installed, you can remove the the temporary cluster by running the remove_cluster command.

    remove_cluster -cluster myhz