Closed
Description
Hello,
I'm using coder
on kubernetes, and trying to share browser vscode/juptyer between authenticated users.
The user itself can always access his apps, however other users always get -
404 - Application Not Found
The application or workspace you are trying to access does not exist or you do not have permission to access it.
Coder version 2.0.0, installed with helm
.
Here's my vscode config, for example -
resource "coder_app" "code-server" {
agent_id = coder_agent.main.id
slug = "code-server"
display_name = "code-server"
icon = "/icon/code.svg"
url = "http://localhost:13337?folder=/home/coder"
share = "authenticated"
healthcheck {
url = "http://localhost:13337/healthz"
interval = 3
threshold = 10
}
}
Checking further, even the admin user can't access coder apps of other users.
However, the admin can use VSCode Desktop to access everything.