from databricks.sdk import WorkspaceClient
w = WorkspaceClient()
ValueError: default auth: cannot configure default credentials ...
I'm trying to instantiate a WorkspaceClient in a notebook on a cluster running a Docker image, but authentication fails.
The Docker image is based on databricksruntime/python:13.3-LTS, and databricks-sdk 0.24.0 is installed during build.
Running the same code on a non-Docker cluster works, after updating the databricks-sdk.
What else can I do to make this work?