Given a dict d sets the key k with value of config v, if the config value v is set
and return the updated dictionary.
The input dictionary d will be mutated.
Parameter
Type
d
dict
k
str
v
typing.Any
flytekit.configuration.file.ConfigEntry
A top level Config entry holder, that holds multiple different representations of the config.
Legacy means the INI style config files. YAML support is for the flytectl config file, which is there by default
when flytectl starts a sandbox
Reads the config Entry from the various sources in the following order,
#. First try to read from the relevant environment variable,
#. If missing, then try to read from the legacy config file, if one was parsed.
#. If missing, then try to read from the yaml file.
The constructor for ConfigFile currently does not allow specification of both the ini and yaml style formats.
Reads the config entry from environment variable, the structure of the env var is current
FLYTE_{SECTION}_{OPTION} all upper cased. We will change this in the future.
:return: