-
Notifications
You must be signed in to change notification settings - Fork 13
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
Added logging of bindings & fixed bindings bug #75
Added logging of bindings & fixed bindings bug #75
Conversation
e3f30df
to
a27b023
Compare
For what it's worth, the driving factor behind this is that people really struggle with bindings. In many cases, users don't get the binding format correct, but the buildpack doesn't output anything in either case so it's not clear if a buildpack sees or does not see them. This makes debugging difficult. This change moves them front and center, so it's obvious when they're being read by a buildpack which makes debugging easier. |
eec9540
to
a70681f
Compare
…gs from hidden files/dirs Signed-off-by: David O'Sullivan <davidos@vmware.com>
2254126
to
afb92db
Compare
Closing in favour of #79 which only fixes the bug mentioned in this PR |
Fixes a bug where Bindings are silently created from hidden dirs. These were ignored when ConfigMap were being created but not for Bindings themselves.
This PR also logs bindings as pairs of 'name & keys' that are identified during the build, since it can be difficult to know whether bindings have been found as expected during the build process. It also prints a line to indicate if no bindings were identified, for the same reason.