Config/init: do NOT get global variables from env
Problem: Some global variables are set using os.environ.get()
which is problematic as user's session env. variables can be used instead of the values specified in the config file.
This renders some of the parameters in the config file partly superfluous, makes the configuration more complicated and obscure.
TODO: Remove os.environ.get()
from the pipeline configuration files.