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
The service support is awesome, thanks!
The --alias argument to link is awesome to that apps don't need to have dokku-specific environment variable names.
--alias
link
It would be great to be able to specify the alias to the dokku_service_link task e.g.
- name: App is linked to rabbitmq instance dokku_service_link: app: "{{ app_name }}" name: "{{ app_name }}" service: rabbitmq alias: CELERY_BROKER_URL
would effectively be
dokku redis:link writeinpublic writeinpublic --alias CELERY_BROKER_URL
The text was updated successfully, but these errors were encountered:
Can I suggest a more generic approach for link-flags? Something like the following:
link-flags
- name: App is linked to rabbitmq instance dokku_service_link: app: "{{ app_name }}" name: "{{ app_name }}" service: rabbitmq flags: alias: CELERY_BROKER_URL querystring "pool=5"
Which would be executed as:
dokku redis:link writeinpublic writeinpublic --alias "CELERY_BROKER_URL" --querystring "pool=5"
This would allow any custom flag for third party plugins and might make the feature a bit more future proof.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Description of problem
The service support is awesome, thanks!
The
--alias
argument tolink
is awesome to that apps don't need to have dokku-specific environment variable names.It would be great to be able to specify the alias to the dokku_service_link task
e.g.
would effectively be
The text was updated successfully, but these errors were encountered: