QuestionQ20

UiPath Platform components and integrations

Which command should you run to obtain the password for accessing the monitoring tools?

  • A kubectl get secrets/dex-static-credential -n uipath -o “jsonpath={.data[‘password’]}” | base64 -d
  • B kubectl get deployment/dex-static-credential -n uipath -o “jsonpath={.data[‘password’]}” | base64 -d
  • C kubectl get password/dex-static-credential -n uipath -o “jsonpath={.data[‘password’]}” | base64 -d
  • D kubectl get config/dex-static-credential -n uipath -o “jsonpath={.data[‘password’]}" | base64 -d
Explanation

The monitoring-tools password is stored in the dex-static-credential Kubernetes Secret in the uipath namespace. Reading its data.password JSONPath value and Base64-decoding it returns the password. UiPath documents this command using base64 --decode, which is equivalent to base64 -d.

Learn more

Community Discussion

No comments yet. Be the first to start the discussion!