-
Notifications
You must be signed in to change notification settings - Fork 198
New issue
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
Config file issues #406
Comments
This sounds like several distinct issues with reconciling env vars vs CLI flags vs documentation:
Is that a fair summary? |
Can you also try Actually, the docs are inconsistent. Most of the |
Yup using
Looks like you were able to fix the docs do reflect the correct parameter/env variable name, so now the only issue is the error indicating the nil pointer when using the config file. |
A patch went in yesterday to address specific issues there. Since you are using the container, try the tag |
I'm trying to apply a config file using the following template, but I've been unable to do so with a variety of configurations.
My mysql-backup.yaml file contains the following:
But the logs show an "access denied" as if neither the user nor password has been applied.
If I instead apply the config file via
command
per the docs likeI get this "unknown flag" error
If I change the paramater from
--config
to--config-file
as in the followingI instead get the following runtime error:
Everything works when I set the
DB_USER
andDB_PASS
environmental variables, but I'd like to avoid these.The text was updated successfully, but these errors were encountered: