To update proxy details after the gateway has been registered, follow these steps:
- 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
Example: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
- Proxy without credentials
- Verify if the proxy details have been updated in the configmap.
Before upgrade:After upgrade: - Delete the
nextgen-gw-0
pod using following command.
Example:Kubectl delete pod nextgen-gw-0 -n <NameSpace>