8000 docs: add new best practice doc to speed up templates and workspaces by EdwardAngert · Pull Request #15296 · coder/coder · GitHub
[go: up one dir, main page]

Skip to content

docs: add new best practice doc to speed up templates and workspaces #15296

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 22 commits into from
Nov 1, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
md tweak to k8s doc
  • Loading branch information
EdwardAngert committed Oct 31, 2024
commit 869ac35ddfb3b0482a7531d64b07323f437c8f8b
34 changes: 17 additions & 17 deletions docs/install/kubernetes.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Install Coder on Kubernetes

You can install Coder on Kubernetes using Helm. We run on most Kubernetes
You can install Coder on Kubernetes (K8s) using Helm. We run on most Kubernetes
distributions, including [OpenShift](./openshift.md).

## Requirements
Expand Down Expand Up @@ -121,27 +121,27 @@ coder:
We support two release channels: mainline and stable - read the
[Releases](./releases.md) page to learn more about which best suits your team.

For the **mainline** Coder release:
- **Mainline** Coder release:

<!-- autoversion(mainline): "--version [version]" -->
<!-- autoversion(mainline): "--version [version]" -->

```shell
helm install coder coder-v2/coder \
--namespace coder \
--values values.yaml \
--version 2.15.0
```
```shell
helm install coder coder-v2/coder \
--namespace coder \
--values values.yaml \
--version 2.15.0
```

For the **stable** Coder release:
- **Stable** Coder release:

<!-- autoversion(stable): "--version [version]" -->
<!-- autoversion(stable): "--version [version]" -->

```shell
helm install coder coder-v2/coder \
--namespace coder \
--values values.yaml \
--version 2.15.1
```
```shell
helm install coder coder-v2/coder \
--namespace coder \
--values values.yaml \
--version 2.15.1
```

You can watch Coder start up by running `kubectl get pods -n coder`. Once Coder
has started, the `coder-*` pods should enter the `Running` state.
Expand Down
Loading
0