-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
67 additions
and
2 deletions.
There are no files selected for viewing
This file contains 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,14 @@ | ||
# See https://pre-commit.com for more information | ||
# See https://pre-commit.com/hooks.html for more hooks | ||
repos: | ||
- repo: https://github.com/norwoodj/helm-docs | ||
rev: v1.13.1 | ||
hooks: | ||
- id: helm-docs-container | ||
args: | ||
# Make the tool search for charts only under the `example-charts` directory | ||
- --chart-search-root=gpt-survey-summarizer | ||
|
||
# The `./` makes it relative to the chart-search-root set above | ||
- --template-files=README.md.gotmpl | ||
|
This file contains 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,51 @@ | ||
{{ template "chart.header" . }} | ||
{{ template "chart.deprecationWarning" . }} | ||
|
||
{{ template "chart.badgesSection" . }} | ||
|
||
{{ template "chart.description" . }} | ||
|
||
{{ template "chart.homepageLine" . }} | ||
|
||
{{ template "chart.maintainersSection" . }} | ||
|
||
{{ template "chart.sourcesSection" . }} | ||
|
||
{{ template "chart.requirementsSection" . }} | ||
|
||
## Prerequisites | ||
|
||
Before using this Helm chart, you should have the following prerequisites: | ||
|
||
- Access to Kubernetes cluster (If needed contact your friendly neighbourhood DevOps engineer) | ||
- Helm >= v3.14.3 | ||
- (**Optional**) helmfile >= v0.162.0 to install this chart | ||
|
||
## Installation | ||
|
||
> Note: **examples** can be found in the repository | ||
|
||
To install this Helm chart, the easiest is to create a helmfile.yaml with needed values and run: | ||
|
||
``` | ||
helmfile template | ||
helmfile apply | ||
``` | ||
|
||
Or use helmfile only to generate resources and apply them with kubectl like so: | ||
|
||
``` | ||
helmfile template | kubectl -f - | ||
``` | ||
|
||
Verify that the chart is deployed successfully: | ||
|
||
> Note: `kubectl` is a better suited tool for this | ||
|
||
``` | ||
helmfile status | ||
``` | ||
|
||
{{ template "chart.valuesSection" . }} | ||
|
||
{{ template "helm-docs.versionFooter" . }} |
This file contains 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 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