Upgrading

After completing the deployment process of HCL Workload Automation, you can upgrade or customize the chart.

In this topic you can find information about how to upgrade your HCL Workload Automation environment, either to a new version of the product or with new HCL Workload Automation components.

To upgrade the release <workload_automation_release_name> to a new version of the chart, run the following commands:

  1. Export the HELM_EXPERIMENTAL_OCI variable
    export HELM_EXPERIMENTAL_OCI=1
  2. Authenticate to your AWS account.
    aws ecr get-login-password --region us-east-1 | docker login --username AWS --password-stdin ******.dkr.ecr.us-east-1.amazonaws.com
  3. Pull the chart.
    helm pull oci://*****.dkr.ecr.us-east-1.amazonaws.com/hcl-technologies/hcl-workload-automation-prod
  4. Get the current deployment values.
    helm get values <RELEASE_NAME>

    The output of the helm get values command is file named values.yaml. You can customize the values of this file according to the configuration parameters listed here.

  5. Upgrade the chart.
    helm upgrade release_name //*****.dkr.ecr.us-east-1.amazonaws.com/hcl-technologies/hcl-workload-automation-prod -f values.yaml -n <workload_automation_namespace>
    

    For more information about this command, see: Upgrading the Chart