helmfile/pkg/state
KUOKA Yusuke 3710f6233e
feat: state values (#647)
This adds `values` to state files as proposed in #640.

```yaml
values:
- key1: val1
- defaults.yaml

environments:
  default:
  - values:
    - environments/default.yaml
  production:
  - values:
    - environments/production.yaml

```

`{{ .Valuese.key1 }}` evaluates to `val1` if and only if it is not overrode via the production or the default env, or command-line args.

Resolves #640
2019-06-04 16:34:02 +09:00
..
chart_dependency.go chore: tidy up pkgs (#636) 2019-06-01 13:36:05 +09:00
create.go feat: state values (#647) 2019-06-04 16:34:02 +09:00
create_test.go chore: tidy up pkgs (#636) 2019-06-01 13:36:05 +09:00
environment.go chore: tidy up pkgs (#636) 2019-06-01 13:36:05 +09:00
environment_values_loader.go feat: state values (#647) 2019-06-04 16:34:02 +09:00
release.go feat: state values (#647) 2019-06-04 16:34:02 +09:00
release_error.go chore: tidy up pkgs (#636) 2019-06-01 13:36:05 +09:00
release_filters.go chore: tidy up pkgs (#636) 2019-06-01 13:36:05 +09:00
state.go feat: state values (#647) 2019-06-04 16:34:02 +09:00
state_exec_tmpl.go feat: state values (#647) 2019-06-04 16:34:02 +09:00
state_exec_tmpl_test.go chore: tidy up pkgs (#636) 2019-06-01 13:36:05 +09:00
state_run.go chore: tidy up pkgs (#636) 2019-06-01 13:36:05 +09:00
state_test.go chore: tidy up pkgs (#636) 2019-06-01 13:36:05 +09:00
storage.go chore: tidy up pkgs (#636) 2019-06-01 13:36:05 +09:00
testfs.go chore: tidy up pkgs (#636) 2019-06-01 13:36:05 +09:00
types.go feat: state values (#647) 2019-06-04 16:34:02 +09:00