This guide provide step-by-step instructions, how to enable and disable the squid proxy post NextGen gateway registartion.

Enable Squid Proxy

Follow the below steps to enable squid-proxy.

  1. Retrieve the existing chart version by running the following command:
    helm list -n <namespace>
    Replace <namespace> with your gateways namespace. If you don’t have a custom namespace, use default.

    Example Output
    ISO download
    In this output, the chart version is located under the CHART section. For example, if it says nextgen-gw-18.0.5, the version is 18.0.5.

  2. To enable Squid Proxy, use the following command, replacing <Chart_version> with the version you retrieved and <namespace> with your gateway namespace:
    helm upgrade nextgen-gw oci://us-docker.pkg.dev/opsramp-registry/gateway-cluster-charts/nextgen-gw --version <Chart_version> --set squidproxy=enable --reuse-values -n <namespace> 
    After enabling squid-proxy
    ISO download

Disable Squid Proxy

Follow the below steps to disable squid-proxy.

  1. Retrieve the existing chart version by running the following command:
    helm list -n <namespace>
    Replace <namespace> with your gateways namespace. If you don’t have a custom namespace, use default.

    Example Output
    ISO download
    In this output, the chart version is located under the CHART section. For example, if it says nextgen-gw-18.0.5, the version is 18.0.5.

  2. To disable Squid Proxy, use the following command, replacing <Chart_version> with the version you retrieved and <namespace> with your gateway namespace:
    helm upgrade nextgen-gw oci://us-docker.pkg.dev/opsramp-registry/gateway-cluster-charts/nextgen-gw --version <Chart_version> --set squidproxy=disable --reuse-values -n <namespace> 
    After disabling squid-proxy
    ISO download