Installing as an OpenShift application#

The ID that you use to install the product must be able to make changes to the host environment. The tools required by all installation scenarios include the following items:

Note: The installation files used for offline installation are not the same as those used for internet-connected installation. Ensure that you download the right file for you installation environment.

If you are performing an offline installation of HCL Accelerate, GraphQL Playground will not load for use.

In addition to the requirements for all installation scenarios, you need the following items:

Get a key. The key enables you to complete installation. Visit the HCL Accelerate web portal to obtain your key. After completing the form, you will receive a confirmation email with an access key. Store the key in a readily-available location; you use it during installation.

You will install HCL Accelerate into a OpenShift project. During installation, you configure a MongoDB for your project, add the HCL Accelerate service to your OpenShift project catalog, and create a route that makes the HCL Accelerate application publicly accessible.

If you need to change project parameters, modify the velocity-se-<version number>-openshift.yaml file. HCL Accelerate uses this file to configure the OpenShift project. The velocity-se-<version number>-openshift.yaml file is copied to your local environment during installation.

  1. Download the installation file for your environment.

    Note: For macOS and Linux installations, set the appropriate permissions before running the file: sudo chmod +x.

    Visit the FlexNet download center and select the file for your environment. Or you can download the installation file directly from the following URLs:

  2. At the Please enter your Velocity access key prompt, enter your SE version access key.

    If you previously installed an SE version, the already-configured key is the default value.

    Note: Make sure that you enter the key for the right version.

    1. To enforce limits on resources, set the values for the resource flags for all containers and use the customConfigFile flag to set the path of the JSON file that contains values that are specified for individual services.

      An example of an install command using the new flags follows:

      /velocity-ibm-install-1-5-5-macos --resourcesRequestsCpu 60m --customConfigFile resources.json

      You can use the following flags in the command:

      • resourceLimitsMemory
      • resourceLimitscpu
      • resourceRequestMemory
      • resourceRequestcpu
      • customConfigFile Note: A resources.json code example follows.

      { "resources": { "limits": { "memory": { "default": "1Gi", "application-api": "3Gi" }, "cpu": { "application-api": "2" }, }, "requests": { "memory": { "release-events-ui": "256Mi" }, "cpu": { "multi-app-pipeline-api": "45m", "release-events-ui": "55m" } } } }

  3. Complete local installation by responding to the prompts described in the following steps.

    When the script starts, you are prompted to accept the license. You can explicitly accept the license without viewing it by appending the following parameter to the command:

    ./<velocity-installation-file\> **--license=accept**

    1. At the Choose the platform prompt, select OpenShift.

    2. At the Enter the location where the Velocity files will be installed prompt, specify where to put the installation files.

    3. At the Openshift Project Name prompt, enter the name of the project you created earlier.

    4. At the Name of installation user prompt, enter your OpenShift ID.

    5. At the Choose one prompt, select Install new instance.

      If you are upgrading, see Upgrading OpenShift installations.

    Files that you use to complete installation are copied to the specified directory.

  4. From the directory where you installed the product files, run the oc apply -f pre-install.yaml.

    The user property in the pre-install.yaml file defaults to 'admin.' Make sure the user property contains the correct OpenShift user ID.

  5. From the OpenShift dashboard, create a project for HCL Accelerate.

    When the project is created, in the My Projectsarea, select the project, and then click Browse Catalog.

  6. Install the HCL Accelerate service template in the project catalog by completing the following steps:.

    1. From the OpenShift project catalog, use the Add to Project > Import YAML/JSON command, and then import the velocity-se-<version number>-openshift.yaml file.

      The yaml was installed in the previous step.

    2. Select Create, and then uncheck Process the Templateand check Save Template.

      After refreshing the browser, you see the HCL Accelerate service in the OpenShift project catalog.

  7. Create a MongoDB service for the project by completing the following steps:

    1. From the OpenShift project catalog, select MongoDB.

    2. On the MongoDB configuration page, click Next, and then, in the MongoDB Admin Password field, enter a password for admin user.

      You can accept the default values for the other parameters.

      Note: The user must be the admin user, not the MongoDB user.

    3. Click Create.

    4. On the MogoDB has been created page, copy the Connection URL string and store it in a readily-accessible location, then close configuration window.

      You use the connection string to configure your HCL Accelerate project.

  8. Create an HCL Accelerate service by completing these steps.

    1. From project catalog, select Velocity OpenShift Catalog.

      The Velocity configuration window is displayed.

    2. Click Next, and then, in the Name field, enter a service name.

    3. In the Hostname field, enter the service host name.

      The host name must resolve to a name on your DNS server, or in the server's hosts file. On Linux, the file location is etc/hosts; on Windows, the location is C:\Windows\System32\drivers\etc\hosts.

      Note: The Hostname cannot be an IP address.

    4. In the Access Key field, paste the HCL Accelerate access key received earlier.

    5. In the Mongo URL field, paste MongoDB connection string for the MongoDB service.

      Do not use the default user or database name. Use the admin user and password you created for the admin. For example:

      mongodb://admin:password@mongodb

      Note: When you copy the sample connection code, make sure that you delete the sampleDB part from the copied code.

      If you connect to an authenticated MongoDB database, you can use authSource to specify the database where authenticated users are defined. For example, if the admin user is defined in the admin database, you can use mongodb://root:password@velocity-mongo-mongodb?authSource=admin. If you do not want to use the admin user, log on to the MongoDB and use a command similar to this one to grant admin permissions to the user:

      ```

      db.grantRolesToUser( "mongo", ["readWriteAnyDatabase", "dbAdminAnyDatabase", "clusterAdmin"] ) ```

    6. Accept the default values for the other parameters and click Create.

  9. Create a route by completing the following steps:

    1. From project dashboard, click Applications > Routes > Create Route.

    2. In the Name field, provide a name for the route.

    3. In the Hostname field, enter the host name you specified earlier for HCL Accelerate.

    4. In the Service field, select the velocity-router service.

    5. Check Secure route.

    6. From the TLS Termination list, select Edge.

    7. Upload your PEM-format certificate or, on the Insecure Traffic list, select Allow.

    8. Click Create.

    The new route is listed on the Routes page.

After the installation is complete, open HCL Accelerate by clicking the route name link. The default user name is admin and the default password is admin.

Parent topic: Installation