-
Notifications
You must be signed in to change notification settings - Fork 183
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
Allow to install plugins in docker image #542
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks @sumo-drosiek !
deploy/docker/entrypoint.sh
Outdated
@@ -25,4 +25,13 @@ if [ "$1" = "fluentd" ]; then | |||
fi | |||
fi | |||
|
|||
# Install custom plugins if specified by user | |||
if [ -n "${ADDITIONAL_PLUGINS}" ] | |||
then |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please follow the https://google.github.io/styleguide/shellguide.html#loops
Put ; do and ; then on the same line as the while, for or if.
It'll also be consistent throughout the file this way.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please fix the style for deploy/docker/entrypoint.sh
, otherwise 👍
b251aff
to
69f2170
Compare
f864765
to
73324fc
Compare
@drduke1 I updated documentation related to code changes. Could you take a look? :) |
73324fc
to
65f6d20
Compare
Description
Allow to install plugins basing on values.yaml
Solves #139 for simple plugins (which do not require additional libraries)
Testing performed