Skip to content

docs: add steps to configure supportLinks in Helm chart #11612

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 3 commits into from
Jan 15, 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
make: fmt
  • Loading branch information
ericpaulsen committed Jan 14, 2024
commit 9e091a02f53809d6b162dfecb6b8c35dc1242a2a
21 changes: 11 additions & 10 deletions docs/admin/appearance.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,12 +69,13 @@ The link icons are optional, and limited to: `bug`, `chat`, and `docs`.

### Kubernetes configuration

To pass in the `supportLinks` YAML file above into your Coder Kubernetes deployment,
follow the steps below.
To pass in the `supportLinks` YAML file above into your Coder Kubernetes
deployment, follow the steps below.

#### 1. Create Kubernetes Secret From File

Run the below commmand to create the YAML file as a Kubernetes secret in your cluster:
Run the below commmand to create the YAML file as a Kubernetes secret in your
cluster:

```console
kubectl create secret generic coder-support-links -n <coder-namespace> --from-file=config.yaml
Expand All @@ -87,15 +88,15 @@ Next, update your Helm chart values as follows:
```yaml
coder:
env:
- name: CODER_CONFIG_PATH
value: /etc/coder/config.yaml
- name: CODER_CONFIG_PATH
value: /etc/coder/config.yaml
volumes:
- name: coder-config
secret:
secretName: coder-support-links
- name: coder-config
secret:
secretName: coder-support-links
volumeMounts:
- name: coder-config
mountPath: /etc/coder/
- name: coder-config
mountPath: /etc/coder/
```

#### 3. Upgrade Coder
Expand Down