This repository has been archived by the owner on Jul 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: add complex value documentation to generic chart
- Loading branch information
1 parent
85fa8ea
commit b60f6ae
Showing
3 changed files
with
48 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 |
---|---|---|
|
@@ -2,7 +2,7 @@ apiVersion: v2 | |
name: generic | ||
description: A chart for generic applications. Use this if you need to deploy something without wanting to build a fully fledged new helm chart. | ||
type: application | ||
version: 3.0.2 | ||
version: 3.0.3 | ||
maintainers: | ||
- name: morre | ||
email: [email protected] |
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# generic | ||
|
||
![Version: 3.0.2](https://img.shields.io/badge/Version-3.0.2-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) | ||
![Version: 3.0.3](https://img.shields.io/badge/Version-3.0.3-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) | ||
|
||
A chart for generic applications. Use this if you need to deploy something without wanting to build a fully fledged new helm chart. | ||
|
||
|
@@ -10,6 +10,29 @@ A chart for generic applications. Use this if you need to deploy something witho | |
| ---- | ------ | --- | | ||
| morre | [email protected] | | | ||
|
||
## Complex values | ||
|
||
### env | ||
|
||
You can set environment variables directly with: | ||
|
||
```yaml | ||
env: | ||
ENV_VARIABLE_NAME: "value" | ||
``` | ||
### envValueFrom | ||
This enables a simplified syntax to set envirnoment variables from a ConfigMap or Secret: | ||
```yaml | ||
envValueFrom: | ||
USER: | ||
secretKeyRef: | ||
name: secret-name | ||
key: user | ||
``` | ||
## Upgrading | ||
### To 3.0.0 | ||
|
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