Update README.md
This commit is contained in:
parent
92ba347d6f
commit
c881544255
10
README.md
10
README.md
|
|
@ -753,6 +753,8 @@ environments:
|
||||||
default:
|
default:
|
||||||
production:
|
production:
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
releases:
|
releases:
|
||||||
- name: newrelic-agent
|
- name: newrelic-agent
|
||||||
installed: {{ eq .Environment.Name "production" | toYaml }}
|
installed: {{ eq .Environment.Name "production" | toYaml }}
|
||||||
|
|
@ -776,6 +778,8 @@ environments:
|
||||||
values:
|
values:
|
||||||
- production.yaml
|
- production.yaml
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
releases:
|
releases:
|
||||||
- name: myapp
|
- name: myapp
|
||||||
values:
|
values:
|
||||||
|
|
@ -818,6 +822,8 @@ environments:
|
||||||
- production.yaml # bare .yaml file, content will be used verbatim
|
- production.yaml # bare .yaml file, content will be used verbatim
|
||||||
- other.yaml.gotmpl # template directives with potential side-effects like `exec` and `readFile` will be honoured
|
- other.yaml.gotmpl # template directives with potential side-effects like `exec` and `readFile` will be honoured
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
releases:
|
releases:
|
||||||
- name: myapp-{{ .Values.releaseName }} # release name will be one of `dev` or `prod` depending on selected environment
|
- name: myapp-{{ .Values.releaseName }} # release name will be one of `dev` or `prod` depending on selected environment
|
||||||
values:
|
values:
|
||||||
|
|
@ -852,6 +858,8 @@ environments:
|
||||||
- git::https://git.company.org/helmfiles/global/gcp.yaml?ref=master
|
- git::https://git.company.org/helmfiles/global/gcp.yaml?ref=master
|
||||||
- git::https://git.company.org/helmfiles/global/europe-west.yaml?ref=master
|
- git::https://git.company.org/helmfiles/global/europe-west.yaml?ref=master
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
releases:
|
releases:
|
||||||
- ...
|
- ...
|
||||||
```
|
```
|
||||||
|
|
@ -882,6 +890,8 @@ environments:
|
||||||
secrets:
|
secrets:
|
||||||
- environments/production/secrets.yaml
|
- environments/production/secrets.yaml
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
releases:
|
releases:
|
||||||
- name: myapp
|
- name: myapp
|
||||||
chart: mychart
|
chart: mychart
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue