diff --git a/README.md b/README.md index d87e78d..71b4a00 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ Apply the Helm chart to start streaming logs into your Coder instance: helm repo add coder-logstream-kube https://helm.coder.com/logstream-kube helm install coder-logstream-kube coder-logstream-kube/coder-logstream-kube \ --namespace coder \ - --set url= + --set url= ``` > **Note** @@ -32,6 +32,7 @@ Your Coder template should be using a `kubernetes_deployment` resource with `wai ```hcl resource "kubernetes_deployment" "hello_world" { + count = data.coder_workspace.me.start_count wait_for_rollout = false ... } diff --git a/values.yaml b/values.yaml index 8dc01b9..b94fd42 100644 --- a/values.yaml +++ b/values.yaml @@ -1,4 +1,4 @@ -# url -- The URL of your Coder deployment. +# url -- The URL of your Coder deployment. Must prefix with http or https url: "" # namespace -- The namespace to searching for Pods within.