Skip to content

Commit a41c03a

Browse files
authored
docs: clarify http or https required in url; count in deployment resource (#7)
1 parent 6f9f887 commit a41c03a

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Apply the Helm chart to start streaming logs into your Coder instance:
2121
helm repo add coder-logstream-kube https://helm.coder.com/logstream-kube
2222
helm install coder-logstream-kube coder-logstream-kube/coder-logstream-kube \
2323
--namespace coder \
24-
--set url=<your-coder-url>
24+
--set url=<your-coder-url-including-http-or-https>
2525
```
2626

2727
> **Note**
@@ -32,6 +32,7 @@ Your Coder template should be using a `kubernetes_deployment` resource with `wai
3232

3333
```hcl
3434
resource "kubernetes_deployment" "hello_world" {
35+
count = data.coder_workspace.me.start_count
3536
wait_for_rollout = false
3637
...
3738
}

values.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# url -- The URL of your Coder deployment.
1+
# url -- The URL of your Coder deployment. Must prefix with http or https
22
url: ""
33

44
# namespace -- The namespace to searching for Pods within.

0 commit comments

Comments
 (0)