-
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
Docker Module not Built - Cannot Use without Kube #43
Comments
And adding the following makefile stanza causes the build process to blow up with:
go install command-line-arguments: mkdir /plugins/: permission denied And when manually making the docker plugin, it basically doesn't function...recognizes the primary is down, never attempts to do anything and never recognizes multiple attempts...which is obvious given the lack of code in the docker plugin. If this is only going to work with Kubernetes, why have any examples or information about running this in a normal non-kube environment in your projects at all? |
@Illydth you misspelled BUILD_DIR ... |
@Illydth - Thanks for the feedback. The original intent was to have it work with multiple platforms and environments. Specifically, this is the reason for the 'plugin' architecture to facilitate extending functionality. Kubernetes was the priority use case, however, docker was initially one of the targets. Unfortunately, it wasn't completed (though PR's are always welcome. ;-) ). In the meantime, I'll push to remove references to 'docker' and will add completing the docker support to the list. |
@davecramer Yep, you are 100% correct on the misspelled "Build" in the Makefile. It still doesn't function however since the docker.so file has no code in it. :) But yea, the misspelling is most definitely a problem on my part. |
The Makefile does not have a build path for building the docker.so module for this container.
Therefor use of attempted use of
CRUNCHY_WATCH_PLATFORM=docker
results in a Seg Fault.The text was updated successfully, but these errors were encountered: