We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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.
logger.debug
Current workaround:
$ python -c "import json, os;print(json.dumps(dict(os.environ)))"
The text was updated successfully, but these errors were encountered:
Potentially somewhere after this line should be good https://github.com/kapicorp/kapitan/blob/master/kapitan/cli.py#L568
Sorry, something went wrong.
This issue is stale because it has been open 90 days with no activity. Remove stale label or comment or this will be closed in 7 days.
@Moep90 I'm proposing this PR now: #1099, it will add support for setting all kinds of logger errors. Would it help?
No branches or pull requests
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:
The text was updated successfully, but these errors were encountered: