Containerized version of https://github.com/operator-framework/operator-sdk provided as is.
436
A Docker Image to run the CoreOS Operator-Framework/Operator-SDK in a Container.
If you want to change the versions of the Operator SDK or Kubectl, etc.: https://gitlab.com/com.figaw.util/operator-sdk
docker run --rm -it \
-w /go/src \
-v operator-sdk:/go/pkg \
-v $(pwd):/go/src \
-v //var/run/docker.sock:/var/run/docker.sock \
--privileged \
figaw/operator-sdk
-v operator-sdk:/go/pkg reuses the dependencies, if you're going to run it a lot. (The first operator-sdk new app-operator downloads ~2.9G dependencies.)
-v $(pwd):/go/src if your operator is in your "current folder."
Running docker in docker, giving access to the docker daemon running on the host:
-v //var/run/docker.sock:/var/run/docker.sock \
--privileged \
Content type
Image
Digest
Size
270.6 MB
Last updated
about 7 years ago
docker pull figaw/operator-sdk