-
Notifications
You must be signed in to change notification settings - Fork 936
feat: add helm README, install guide, linters #3268
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
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
0aadebe
feat: add helm README, install guide, linters
deansheather 64eee00
Add Helm and k8s version requirements to helm install guide
deansheather 0285c7a
Add commands for installing bitnami postgres
deansheather 54d8e92
Merge branch 'main' into helm-docs
deansheather 8a9522f
fixup! Merge branch 'main' into helm-docs
deansheather 532f42f
fixup! Merge branch 'main' into helm-docs
deansheather File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,3 +21,4 @@ | |
.idea/ | ||
*.tmproj | ||
.vscode/ | ||
Makefile |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Use a single bash shell for each job, and immediately exit on failure | ||
SHELL := bash | ||
.SHELLFLAGS = -ceu | ||
.ONESHELL: | ||
|
||
# This doesn't work on directories. | ||
# See https://stackoverflow.com/questions/25752543/make-delete-on-error-for-directory-targets | ||
.DELETE_ON_ERROR: | ||
|
||
all: lint | ||
.PHONY: all | ||
|
||
lint: lint/helm | ||
.PHONY: lint | ||
|
||
lint/helm: | ||
helm lint --strict . | ||
.PHONY: lint/helm |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
# Coder Helm Chart | ||
|
||
This directory contains the Helm chart used to deploy Coder onto a Kubernetes | ||
cluster. It contains the minimum required components to run Coder on Kubernetes, | ||
and notably (compared to Coder Classic) does not include a database server. | ||
|
||
## Getting Started | ||
|
||
> ⚠️ **Warning**: The main branch in this repository does not represent the | ||
> latest release of Coder. Please reference our installation docs for | ||
> instructions on a tagged release. | ||
View | ||
[our docs](https://coder.com/docs/coder-oss/latest/install#kubernetes-via-helm) | ||
for detailed installation instructions. | ||
|
||
## Values | ||
|
||
Please refer to [values.yaml](values.yaml) for available Helm values and their | ||
defaults. | ||
|
||
A good starting point for your values file is: | ||
|
||
```yaml | ||
coder: | ||
# You can specify any environment variables you'd like to pass to Coder | ||
# here. Coder consumes environment variables listed in | ||
# `coder server --help`, and these environment variables are also passed | ||
# to the workspace provisioner (so you can consume them in your Terraform | ||
# templates for auth keys etc.). | ||
# | ||
# Please keep in mind that you should not set `CODER_ADDRESS`, | ||
# `CODER_TLS_ENABLE`, `CODER_TLS_CERT_FILE` or `CODER_TLS_KEY_FILE` as | ||
# they are already set by the Helm chart and will cause conflicts. | ||
env: | ||
- name: CODER_ACCESS_URL | ||
value: "https://coder.example.com" | ||
- name: CODER_PG_CONNECTION_URL | ||
valueFrom: | ||
secretKeyRef: | ||
# You'll need to create a secret called coder-db-url with your | ||
# Postgres connection URL like: | ||
# postgres://coder:password@postgres:5432/coder?sslmode=disable | ||
name: coder-db-url | ||
key: url | ||
|
||
tls: | ||
secretName: my-tls-secret-name | ||
``` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.