-
Notifications
You must be signed in to change notification settings - Fork 2.3k
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
BusyBox find does not support -printf #1556
Comments
Closed via #1558. Anyone experiencing this problem can update to v0.25.0 |
Hmm, what am I missing? I am seeing a similar error on CentOS 7.3 with Docker 1.11.2 using CAdvisor v0.25.0 still.
Docker log for CAdvisor shows:
Also tried, with |
My bad, it looks like this issue was separate from the one solved in #1558. |
@timstclair should we add GNUfind utils as a dependency? |
I think that's a reasonable fix until we get #1576 in |
I'm experiencing the same problem with 0.25.0 |
I'm having the same problem with v0.25.0-17543be |
I have the same problem, It seems th problem is in the find version ( not gnu find) in the busybox , there is plans to fix the current official cAdvisor docker image?
Thank you very much |
Use: apk -U add findutils in you container and commit it to your image |
any news on this topic? |
I confirm that using On a side note, google/cadvisor:latest still target v0.25.0 instead of v0.26.1. |
Thanks @blep. @google-admin please add this fix in official image. |
has this been fixed in official image? |
This was fixed in #1698 |
Changes introduced in #1489 (or, more specifically, this line) causes the cAdvisor Docker image to trip up because Alpine/BusyBox
find
does not implement-printf
:Possible fixes include installing GNU findutils (adding about 558k to the base Alpine image), or counting based on lines (supposedly slower).
The text was updated successfully, but these errors were encountered: