WBR_K
WBR_K
CCoder.com
Created by WBR_K on 1/17/2025 in #help
Envbox in kubernetes, cgroup permission issue.
When I create workspace with the Kubernetes (Envbox) template it throws errors about not being able to write to cgroup. I haven't changed anything in the template. https://registry.coder.com/templates/kubernetes-envbox?tab=source
6 replies
CCoder.com
Created by WBR_K on 1/17/2025 in #help
Define custom subdomain for app to use with vars.
I want my app to use a specific subdomain. More specificly the workspace name. Is something like that posible?
resource "coder_app" "open-web" {
agent_id = coder_agent.main.id
slug = "open-web"
display_name = "Website"
icon = "/icon/globe_with_meridians.svg"
url = "http://localhost:80"
subdomain = true

healthcheck {
url = "http://localhost:80/healthz"
interval = 10
threshold = 30
}
}
resource "coder_app" "open-web" {
agent_id = coder_agent.main.id
slug = "open-web"
display_name = "Website"
icon = "/icon/globe_with_meridians.svg"
url = "http://localhost:80"
subdomain = true

healthcheck {
url = "http://localhost:80/healthz"
interval = 10
threshold = 30
}
}
13 replies