Skip to main content
Feedback

Installing Quickstart

The following is an example of running Quickstart in Tethered mode. Follow the steps below to synchronize your Local Edition cluster with your Boomi Cloud API Management (SaaS) area.

Procedure

  1. After downloading and extracting the Boomi Cloud API Management - Local Edition 6.2.0 package, open the terminal to navigate to the downloaded directory using the following command.

    note

    For guidance on how to access and download the Boomi Cloud API Management - Local Edition 6.2.0 package, contact the Boomi Account Representative.

    $ cd <camle_extract-location>/
  2. Run quickstart using the following command:

    ./quickstart/quickstart.sh <options and parameters>
    important

    Provide all option and parameter values in double quotes ("") when running the command.

    Refer to Install OPTIONS for more information about installing quickstart.sh required parameters, optional parameters, and flags command options.

  3. Verify the pod status by running the following command:

    kubectl get pods -n <namespace>

    For example;

    kubectl get pods -n camleqs
    NAME                                    READY     STATUS        RESTARTS    AGE 
    cache-deploy-5f74c6db46-g4r5d 2/2 Running 0 91s
    configui-deploy-84874b5cf7-bjr67 1/2 Running 0 91s
    loader-deploy-579bfc9788-svw9p 2/2 Running 0 91s
    platformapi-deploy-67546c47bd-nv8jf 2/2 Running 0 91s
    postinstall-dataload-job-v6-2-0-74hpg. 1/1 Running 0 91s
    trafficmanager-deploy-77776dd574-9gch2 1/2 Running 0 91s

  4. Verify the status of the pods. On successful deployment, the pod status will show as READY 2/2, as shown below:

    NAME                                    READY     STATUS        RESTARTS    AGE 
    cache-deploy-5f74c6db46-g4r5d 2/2 Running 0 112s
    configui-deploy-84874b5cf7-bjr67 2/2 Running 0 112s
    loader-deploy-579bfc9788-svw9p 2/2 Running 0 112s
    platformapi-deploy-67546c47bd-nv8jf 2/2 Running 0 112s
    postinstall-dataload-job-v6-2-0-74hpg. 2/2 Running 0 112s
    trafficmanager-deploy-77776dd574-9gch2 2/2 Running 0 112s
    NAME NAMESPACE REVISION UPDATED STATUS CHART APP VERSION
    camlequickstart camleqs 1 2025-04-10 21:22:34.426583 +0530 IST deployed apim-6.2.0 1.1.0
    Boomi Cloud API Management-Local Edition 6.2.0 is running.

    info

    The installation log can be found in the quickstart directory at: <cam le extract location>/quickstart/logs/cam-quickstart.log

Exposing Boomi Cloud API Management - Local Edition Services

Minikube provides access to the Kubernetes services via the minikube tunnel. This tunnel binds the Kubernetes ports to the Docker host. Users can then access these services through a web client such as Curl or a browser.

Procedure

  1. Enable the tunnel option for each service available in the minikube cluster by running the following command:

    minikube -p minikube -n <namespace>  service [<service name> ...]

    For example;

    minikube -p minikube -n camleqs service [configui-svc platformapi-svc trafficmanager-svc]
    $ minikube -p minikube -n camleqs service configui-svc
    |-----------|--------------|----------------|---------------------------|
    | NAMESPACE | NAME | TARGET PORT | URL |
    |-----------|--------------|----------------|---------------------------|
    | camleqs | configui-svc | http-port/80 | http://192.168.49.2:3XXX |
    | | | https-port/443 | http://192.168.49.2:3XXX |
    |-----------|--------------|----------------|---------------------------|
    🏃 Starting tunnel for service configui-svc.
    |-----------|--------------|-------------|------------------------|
    | NAMESPACE | NAME | TARGET PORT | URL |
    |-----------|--------------|-------------|------------------------|
    | camleqs | configui-svc | | http://127.0.0.1:60XXX |
    | | | | http://127.0.0.1:60XXX |
    |-----------|--------------|-------------|------------------------|
    [camleqs configui-svc http://127.0.0.1:60735
    http://127.0.0.1:60XXX]

    As a result, the local tunnelling option is enabled for each minikube cluster, and you get a URL for each service to connect to the local IP.

  2. Click on the service URL link corresponding to the service to open the ConfigUI quickstart environment.

    For example, to launch the ConfigUI that is bound to the configui-svc service, click http://127.0.0.1:60XXX.

On this Page