We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent57c9d49 commit958f86dCopy full SHA for 958f86d
README.md
@@ -26,13 +26,13 @@ helm install coder-logstream-kube coder-logstream-kube/coder-logstream-kube \
26
27
>**Note**
28
>For additional customization (such as customizing the image, pull secrets, annotations, etc.), you can use the
29
->[values.yaml](https://github.com/coder/coder-logstream-kube/blob/main/values.yaml) file directly.
+>[values.yaml](helm/values.yaml) file directly.
30
31
Your Coder template should be using a`kubernetes_deployment` resource with`wait_for_rollout` set to`false`.
32
33
```hcl
34
resource "kubernetes_deployment" "hello_world" {
35
- count = data.coder_workspace.me.start_count
+ count = data.coder_workspace.me.start_count
36
wait_for_rollout = false
37
...
38
}