You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: registry/coder/templates/kubernetes-devcontainer/main.tf
+23-19Lines changed: 23 additions & 19 deletions
Original file line number
Diff line number
Diff line change
@@ -40,7 +40,7 @@ variable "use_kubeconfig" {
40
40
41
41
variable"namespace" {
42
42
type=string
43
-
default="default"
43
+
default="coder"
44
44
description="The Kubernetes namespace to create workspaces in (must exist prior to creating workspaces). If the Coder host is itself running as a Pod on the same Kubernetes cluster as you are deploying workspaces to, set this to the same namespace."
45
45
}
46
46
@@ -62,7 +62,7 @@ data "coder_parameter" "cpu" {
62
62
display_name="CPU"
63
63
description="CPU limit (cores)."
64
64
default="2"
65
-
icon="/emojis/1f5a5.png"
65
+
icon="/icon/memory.svg"
66
66
mutable=true
67
67
validation {
68
68
min=1
@@ -161,6 +161,8 @@ locals {
161
161
# ENVBUILDER_GIT_URL and ENVBUILDER_CACHE_REPO will be overridden by the provider
0 commit comments