ashald / EnvFile

EnvFile 3.x is a plugin for JetBrains IDEs that allows you to set environment variables for your run configurations from one or multiple files.
MIT License
545 stars 129 forks source link

Allow Kubernetes yaml style #218

Open girafi opened 1 year ago

girafi commented 1 year ago

We have lots of Kubernetes config files in yaml that list the env vars in the following style:

env:
- name: MY_KEY_1
  value: "value1"
- name: MY_KEY_2
  value: "value2"

We would love to also use the same yaml locally for running with your gorgeous and awesome fancy envVar plugin. Converting them to yaml dictionary is unfornunately quite a step always

Thanks for your care!