Skip to content

For Volt MX Go v2.0.4 or earlier

Install Domino REST API

Guides you in installing Domino REST API.

Before you begin

Important

Make sure to check version compatibility between Volt MX Go and Domino REST API.

Procedure

  1. Download the Domino REST API installer. For more information, see Download the Domino REST API link image in the HCL Domino REST API documentation.

  2. Follow the links to the installation procedure based on your preferred installation platform:

  3. Complete all the post-installation tasks link image.

For more information, see the Installation and configuration link image page in the HCL Domino REST API documentation link image.

Install Volt MX Go Foundry

Volt MX Go Foundry supports the following installation mechanisms:

  • Use the Windows or Linux installers that use Install Anywhere to do the installation. It allows you to install a bundled Tomcat or JBoss app server or install it onto an existing app server (JBOSS single or multi-node, or WebLogic).
  • Use the Command Line installer for advanced deployments.
  • Use helm charts on one of the supported Kubernetes platforms, including OpenShift, AKS (Azure), EKS (AWS), and GKE (Google).

For using an installer

Before you begin

You have downloaded the latest version of Volt MX Go Foundry installer based on your preferred installation platform/option. For more information, see Download HCL Volt MX Go installers.

Procedure

For installing Volt MX Go Foundry, click the link to the installation guide corresponding to your installation platform and follow the installation steps.

Important

  • The installation guides indicate installation files and installation file download locations. You must use the installer you downloaded as indicated in the Before you begin section.
  • Make sure to check all the details and complete all the applicable procedures indicated in the sections in the installation guides.

For using helm charts on a supported Kubernetes platform

Before you begin

Procedure

  1. Create a namespace and a temp directory for the charts.

    Run the following commands to create a namespace, set the current context to mxgo, create a temp directory for downloading the charts, and make it the current directory:

    kubectl create namespace mxgo
    kubectl config set-context --current --namespace=mxgo
    mkdir ~/mxgo
    cd ~/mxgo
    

    Note

    You must run the kubectl config set-context --current --namespace=mxgo command to set the current namespace context after each restart of Windows or Rancher Desktop.

  2. Configure Helm to pull from HCL Container Repository.

    The procedure sets up Helm with the details necessary to authenticate with the HCL Container Repository. You will need your email and authentication token used with the HCL Container Repository.

    • Run the following command to set up Helm:

      helm repo add hclcr https://hclcr.io/chartrepo/voltmxgo --username <your hclcr username> --password <your hclcr password>
      

      Example

      helm repo add hclcr https://hclcr.io/chartrepo/voltmxgo --username user.name@example.com --password xx3ds2w

      Note

      Use the CLI secret value you saved from obtaining authentication token from HCL Container Repository as your authentication token or password.

      If you get an error message similar to the following:

      Error: looks like https://hclcr.io/chartrepo/voltmxgo is not a valid chart repository or cannot be reached: failed to fetch https://hclcr.io/chartrepo/voltmxgo/index.yaml : 401 Unauthorized
      

      Most likely, you haven't specified your username or authentication token correctly. Make sure the case and content matches exactly what's listed on the HCL Container Repository site and retry.

  3. Download Foundry charts.

    1. Run the following command to make sure that the chart information for the repositories is up-to-date.

      helm repo update
      

      See Volt MX Go and Helm chart version compatibility to know the latest Helm chart version.

    2. Run the following commands to download the Foundry charts, unpack the files, and move the values.yaml file to the current directory:

      mkdir foundry
      cd foundry
      helm pull hclcr/voltmx-dbupdate
      helm pull hclcr/voltmx-foundry
      tar -xzf voltmx-foundry-1.n.n.tgz
      tar -xzf voltmx-dbupdate-1.n.n.tgz
      mv voltmx-foundry/values.yaml  ./
      mv voltmx-foundry/init-guids.sh  ./
      chmod +x init-guids.sh
      

      Note

      The foundry and dbupdate chart names have a version string in the filename. The helm pull command will pull down the latest version of the charts. Ensure your tar command uses the correct matching file names.

    3. Volt MX Go Foundry uses several Global Unique IDs to distinguish different installations of Volt MX Go Foundry. Invoke the init-guids script to generate the IDs using the following command:

      ./init-guids.sh --new
      

    4. Edit the values.yaml file to update the imageCredentials by replacing your-email and your-authentication-token with your email and authentication token used with the HCL Container Repository.

      imageCredentials:
      username: your-email
      password: your-authentication-token
      

      Note

      Use the CLI secret value you saved from obtaining authentication token from HCL Container Repository as your authentication token or password.

    5. Locate the following line in the file and add your Volt MX Go Foundry server domain name setting:

      serverDomainName:
      

      Whatever server domain name you specify here, you need to ensure that it's resolvable. There is no additional work if you have already registered your server domain name in DNS. However, if you haven't registered it, you must add it to the server's /etc/hosts file, substituting your server domain name. Additionally, you must make the same updates in k3s's coredns config map and substituting your server domain name.

    6. Locate the following lines in the file and add your Volt MX Go Foundry database details:

      ### Database details ###
      
      # Database type which you want to use for Volt MX Go Foundry (String)
      # Possible values:
      #   "mysql" for MySQL DB server
      #   "sqlserver" for Azure MSSQL or SQLServer
      #   "oracle" for Oracle DB server
      dbType:
      
      # Database server hostname (String)
      dbHost:
      
      # Database server port number (Number). This can be empty for cloud managed service.
      dbPort:
      
      # Database User and password - you may set a single general userid/password here,
      # or you may set specific userid/password combinations below.  If set, the
      # specific values override the general dbUser/dbPass.
      
      # Database server user (String)
      dbUser:
      
      # Database server password (String) enclosed in quotes
      dbPass:
      
    7. For more advanced configuration options, see Configuration link image in the Installation Guide for Volt MX Foundry Containers Helm Installation.

    8. Save the file and exit.

  4. (Optional) Perform advanced scenario procedures.

    Perform the procedures under Advanced Scenarios link image.

  5. Deploy Foundry's dbupdate to create the databases.

    1. Run the following Helm install command to deploy Foundry's dbupdate:

      helm install dbupdate voltmx-dbupdate -f values.yaml
      
    2. Run the following command to verify deployment completion of Foundry's dbupdate:

      kubectl get pods -o wide -w
      

      The output should be similar to the following and will update over time:

      NAME                            READY   STATUS      RESTARTS   AGE
      domino-drapi-6d755b68df-2sfhb   3/3     Running     0          6m13s
      mysql-0                         1/1     Running     0          2m37s
      foundry-db-update-dzdrx         1/1     Running     0          24s
      foundry-db-update-dzdrx         0/1     Completed   0          65s
      foundry-db-update-dzdrx         0/1     Completed   0          67s
      foundry-db-update-dzdrx         0/1     Completed   0          68s
      
    3. Once the foundry-db-update pod shows Completed in the STATUS column, the databases have been created. Press Ctrl-c to stop the kubectl command.

  6. Install Volt MX Go Foundry.

    1. Run the following Helm install command to deploy Volt MX Go Foundry:

      helm install foundry voltmx-foundry -f values.yaml
      
    2. Run the following command to verify when the Volt MX Go Foundry install is ready:

      kubectl get pods -o wide -w
      

      The output should be similar to the following and will update over time:

      output

    3. Monitor all the foundry pods except for the foundry-db-update pod as it has already been completed. Once the other foundry pods have a 1/1 state in the READY column, press Ctrl-c to stop the kubectl command.

    Volt MX Go Foundry is now available at http://foundry.mymxgo.com/mfconsole/.

    Note

  7. (Optional) Perform monitoring procedures.

    Perform the procedures under Monitoring link image in the HCL Volt MX documentation.

    Note

    The procedures are for enabling important monitoring features such as Metrics Server, Elastic Stack, Kuberhealthy.

  8. (Optional) Perform post installation tasks.

    Perform the procedures under the Post Installation Tasks link image in the HCL Volt MX documentation.

Next step

After completing the installation of Domino REST API and Volt MX Go Foundry, proceed to Install Volt MX Go Iris.