To give you a context about our Mendix deployment, we have a deployment of Mendix(Private Cloud - Cluster Manager) version 2.20.0 in Global Mode with the status “Connected” from the Mendix dashboard, deployed in a specific k8s namespace: mdx-global-operator. In this Cluster, we have a namespace “mdx-app-helloworld” in a “pending configuration” status for an initial test environment. Following the command in the “Configuration” tab, our team started: ./mxpc-cli installer -n mdx-app-helloworld -i cluster_id_uuid_value -s secret_value –global After checking the mendix-agent pod, we got this log message: {"level":"warning","msg":"Retrying Websocket connection...","time":"2025-02-18T19:03:51.358003334Z"} {"level":"info","msg":"Shutdown triggered","time":"2025-02-18T19:03:51.358130402Z"} {"level":"info","msg":"Establishing websocket connection...","time":"2025-02-18T19:03:51.35845422Z"} {"level":"info","msg":"Websocket connection established","time":"2025-02-18T19:03:51.970020645Z"} {"level":"info","msg":"Starting Websocket authentication handshake...","time":"2025-02-18T19:03:51.970065214Z"} {"error":"invalid handshake response: (Error) invalid credentials","level":"warning","msg":"Failed Websocket authentication handshake.","time":"2025-02-18T19:03:52.337521843Z"} Checking the secrets used by the pod, we can see the secrets match with the data from the command from the Mendix dashboard: $ kubectl -n mdx-app-helloworld describe pod mendix-agent-6744957bb5-xs9vn | grep cluster- AGENT_CLUSTER_ID: <set to the key 'cluster-id' in secret 'mendix-agent'> Optional: false AGENT_SECRET: <set to the key 'cluster-secret' in secret 'mendix-agent'> Optional: false $ kubectl -n mdx-app-helloworld get secrets mendix-agent -o jsonpath="{['data']['cluster-secret']}" | base64 --decode secret_value $ kubectl -n mdx-app-helloworld get secrets mendix-agent -o jsonpath="{['data']['cluster-id']}" | base64 --decode ; echo cluster_id_uuid_value What should I look next to fix this authentication issue? How to improve this troubleshooting? Thanks.