Hey guys, I'm trying to pass environment variables to my pods. I'm using flyte-binary deployment. For some reason, the task pods are getting the environment variables with their name 
lowercased. Other environment values passed by Flyte to the pod are not lowercased, only the added values via the k8s plugin.
This is the relevant snippet from the `values.yaml`:
...
configuration
  ...
  inline:
    plugins:
      k8s:
        inject-finalizer: false
        default-env-vars:
          FLYTE_AWS_ACCESS_KEY_ID: "foo"
          FLYTE_AWS_SECRET_ACCESS_KEY: "secret-bar"
          FLYTE_AWS_ENDPOINT: "custom-endpoint"
I logged into the binary pod and located the inline config: 
/etc/flyte/config.d/100-inline-config.yaml
 . I can clearly see that the 
default-env-vars
 is not lowercased.
I tried a little to locate the relevant Go code but didn't find anything that lower-case the env var names.
Thanks for your help!