helmfile/pkg/app
KUOKA Yusuke 68b95f14d4
change the nest level of envvals overrides for nested state files(sub-helmfiles) (#635)
We added envvals overrides in the state file via #622 two days ago:

```
helmfiles:
- name: sub.helmfile.yaml
  environment:
    values:
    - mykey: myvalue
```

This change removes the `environment` level in the above cofig, so that it looks like:

```
helmfiles:
- name: sub.helmfile.yaml
  values:
  - mykey: myvalue
``

This is an inevitable breaking change towards #361. But I wanted to break it earlier so that less folks are affected.`

Ref https://github.com/roboll/helmfile/issues/361#issuecomment-497530819
2019-06-01 12:39:31 +09:00
..
app.go feat: specify env values from the parent to the nested state (#622) 2019-05-29 19:08:51 +09:00
app_test.go change the nest level of envvals overrides for nested state files(sub-helmfiles) (#635) 2019-06-01 12:39:31 +09:00
constants.go feat: "bases" for easier layerina 2019-05-13 21:48:00 +09:00
constants_test.go Various U/X improvements for `helmfile apply` (#586) 2019-05-12 16:26:11 +09:00
context.go feat: Opt-out dep-builds and repo-updates (#463) 2019-02-04 12:07:25 +09:00
desired_state_file_loader.go feat: specify env values from the parent to the nested state (#622) 2019-05-29 19:08:51 +09:00
errors.go feat: Opt-out dep-builds and repo-updates (#463) 2019-02-04 12:07:25 +09:00
two_pass_renderer.go Fix panic related to env values from files and sprig dict funcs (#625) 2019-05-30 15:41:00 +09:00
two_pass_renderer_test.go feat: optionally allow missing environment values/secrets files (#620) 2019-05-28 15:33:45 +09:00