Skip to content

feat: publish helm chart to helm.coder.com #4793

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 4 commits into from
Nov 4, 2022
Merged
Show file tree
Hide file tree
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
pr comments
  • Loading branch information
sreya committed Nov 4, 2022
commit 12f77e7b445e4400323675999d46bcb89dd496cc
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,6 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Authenticate to Google Cloud
id: auth
uses: google-github-actions/auth@v0
with:
workload_identity_provider: ${{ secrets.GCP_WORKLOAD_ID_PROVIDER }}
Expand All @@ -181,6 +180,7 @@ jobs:

- name: Publish Helm Chart
run: |
set -euo pipefail
version="$(./scripts/version.sh)"
mkdir -p build/helm
cp "build/coder_helm_${version}.tgz" build/helm
Expand Down
6 changes: 3 additions & 3 deletions docs/install/kubernetes.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ to log in and manage templates.
1. Add the Coder Helm repo:

```console
helm repo add coder https://helm.coder.com/v2
helm repo add coder-v2 https://helm.coder.com/v2
```

1. Create a secret with the database URL:
Expand Down Expand Up @@ -118,7 +118,7 @@ to log in and manage templates.
1. Run the following command to install the chart in your cluster.

```sh
helm install coder coder/coder \
helm install coder coder-v2/coder \
--namespace coder \
--values values.yaml
```
Expand All @@ -142,7 +142,7 @@ you can run the following command:

```sh
helm repo update
helm upgrade coder coder/coder \
helm upgrade coder coder-v2/coder \
--namespace coder \
-f values.yaml
```
Expand Down