Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 40a94f1

Browse files
EdwardAngertEdwardAngert
EdwardAngert
authored and
EdwardAngert
committed
md fixes
1 parent 9f14438 commit 40a94f1

File tree

8 files changed

+22
-22
lines changed

8 files changed

+22
-22
lines changed

docs/admin/networking/workspace-proxies.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ connecting with their workspace over SSH, a workspace app, port forwarding, etc.
1414
Dashboard connections and API calls (e.g. the workspaces list) are not served
1515
over workspace proxies.
1616

17-
# Deploy a workspace proxy
17+
## Deploy a workspace proxy
1818

19-
Each workspace proxy should be a unique instance. At no point should 2 workspace
20-
proxy instances share the same authentication token. They only require port 443
21-
to be open and are expected to have network connectivity to the coderd
19+
Each workspace proxy should be a unique instance. At no point should two
20+
workspace proxy instances share the same authentication token. They only require
21+
port 443 to be open and are expected to have network connectivity to the coderd
2222
dashboard. Workspace proxies **do not** make any database connections.
2323

2424
Workspace proxies can be used in the browser by navigating to the user

docs/admin/provisioners.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ This is illustrated in the below table:
227227
> **Note to maintainers:** to generate this table, run the following command and
228228
> copy the output:
229229
>
230-
> ```
230+
> ```go
231231
> go test -v -count=1 ./coderd/provisionerdserver/ -test.run='^TestAcquirer_MatchTags/GenTable$'
232232
> ```
233233

docs/admin/security/secrets.md

+6-4
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,17 @@
11
# Secrets
22

3-
<blockquote class="info">
3+
<blockquote class="admonition note">
4+
45
This article explains how to use secrets in a workspace. To authenticate the
5-
workspace provisioner, see <a href="../users">this</a>.
6+
workspace provisioner, see the [provisioners](../provisioners.md) documentation.
7+
68
</blockquote>
79

810
Coder is open-minded about how you get your secrets into your workspaces.
911

10-
## Wait a minute...
12+
## Before you begin
1113

12-
Your first stab at secrets with Coder should be your local method. You can do
14+
Your first attempt at secrets with Coder should be your local method. You can do
1315
everything you can locally and more with your Coder workspace, so whatever
1416
workflow and tools you already use to manage secrets may be brought over.
1517

docs/admin/templates/extending-templates/parameters.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ data "coder_parameter" "security_groups" {
9090
> For the above example, to override the default values of the `security_groups`
9191
> parameter, you will need to pass the following argument to `coder create`:
9292
>
93-
> ```
93+
> ```shell
9494
> --parameter "\"security_groups=[\"\"DevOps Security Group\"\",\"\"Backend Security Group\"\"]\""
9595
> ```
9696
>

docs/admin/templates/extending-templates/variables.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -53,15 +53,15 @@ variables, you can employ a straightforward solution:
5353

5454
1. Create a `terraform.tfvars` file in in the template directory:
5555

56-
```tf
57-
coder_image = newimage:tag
58-
```
56+
```tf
57+
coder_image = newimage:tag
58+
```
5959

60-
2. Push the new template revision using Coder CLI:
60+
1. Push the new template revision using Coder CLI:
6161

62-
```
63-
coder templates push my-template -y # no need to use --var
64-
```
62+
```shell
63+
coder templates push my-template -y # no need to use --var
64+
```
6565

6666
This file serves as a mechanism to override the template settings for variables.
6767
It can be stored in the repository for easy access and reference. Coder CLI

docs/admin/templates/managing-templates/devcontainers/add-devcontainer.md

-4
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,3 @@ Lifecycle scripts are managed by project developers.
144144
## Next steps
145145

146146
- [Dev container security and caching](./devcontainer-security-caching.md)
147-
148-
```
149-
150-
```

docs/admin/templates/managing-templates/devcontainers/devcontainer-security-caching.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Ensure Envbuilder can only pull pre-approved images and artifacts by configuring
44
it with your existing HTTP proxies, firewalls, and artifact managers.
55

6-
### Configure registry authentication
6+
## Configure registry authentication
77

88
You may need to authenticate to your container registry, such as Artifactory, or
99
Git provider such as GitLab, to use Envbuilder. See the

docs/changelogs/v0.25.0.md

+2
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,11 @@
2323
[--block-direct-connections](https://coder.com/docs/cli/server#--block-direct-connections)
2424
(#7936)
2525
- Search for workspaces based on last activity (#2658)
26+
2627
```text
2728
last_seen_before:"2023-01-14T23:59:59Z" last_seen_after:"2023-01-08T00:00:00Z"
2829
```
30+
2931
- Queue position of pending workspace builds are shown in the dashboard (#8244)
3032
<img width="1449" alt="Queue position" src="https://github.com/coder/coder/assets/22407953/44515a19-ddfb-4431-8c2a-203487c4efe8">
3133
- Enable Terraform debug mode via deployment configuration (#8260)

0 commit comments

Comments
 (0)