To update proxy details after the gateway has been registered, follow these steps:

  1. Run the helm upgrade command using the following example:
    • Proxy without credentials
      helm upgrade nextgen-gw oci://us-docker.pkg.dev/opsramp-registry/gateway-cluster-charts/nextgen-gw --version <Chart_Version> --set proxy.ConnectionType=proxy --set proxy.ProxyIp=<Proxy_IP> --set proxy.ProxyPort=<Proxy_IP> -n <NameSpace> --reuse-values
    • Proxy with credentials
      helm upgrade nextgen-gw oci://us-docker.pkg.dev/opsramp-registry/gateway-cluster-charts/nextgen-gw --version <Chart_Version> --set proxy.ConnectionType=proxy --set proxy.ProxyIp=<Proxy_IP> --set proxy.ProxyPort=<Proxy_IP> --set proxy.ProxyUsername=<Proxy_UserName> --set proxy.ProxyPassword=<Proxy_Password> -n <NameSpace> --reuse-values --reuse-values
      Example:
      bootstrap
  2. Verify if the proxy details have been updated in the configmap.

    Before upgrade:
    bootstrap
    After upgrade:
    bootstrap
  3. Delete the nextgen-gw-0 pod using following command.
    Kubectl delete pod nextgen-gw-0 -n <NameSpace>
    Example:
    bootstrap