As I want to debug kapitan as ARGOCD Plugin, I (after 2.4) need to see the ENVS and their content in debug mode.
Therfore I'd like to dump every ENV + VALUE kapitan has loaded to stdout.
@ramaro any suggestion where it should be added?
My initial thought was to extend the logger.debug for all ref engines.
Current workaround:
$ python -c "import json, os;print(json.dumps(dict(os.environ)))"
As I want to debug kapitan as ARGOCD Plugin, I (after 2.4) need to see the ENVS and their content in debug mode.
Therfore I'd like to dump every ENV + VALUE kapitan has loaded to stdout.
@ramaro any suggestion where it should be added?
My initial thought was to extend the
logger.debugfor all ref engines.Current workaround: