You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In some cases, for example in disconnected mode, it's unable to download image from docker.io
It wold be nice to have an option for 'kamel install' to define image name, location and version. @nicolaferraro , what do you think about it?
The text was updated successfully, but these errors were encountered:
@dmvolod when you're connected or disconnected you can always attach to the same docker daemon used by Minishift/Minikube and build a image as docker.io/apache/camel-k:0.0.2-SNAPSHOT or tag a different image with that name (this is what these two lines are doing).
The Deployment resource that instantiates the operator is set with a imagePullPolicy: IfNotPresent, meaning that it will try to contact Docker Hub only when there are no corresponding images in the local store. This means that docker hub will never be contacted if you provide a image for docker.io/apache/camel-k:0.0.2-SNAPSHOT. I think there's no need to use a different name...
What if access to docker.io is blocked and I want to use an intermediate docker repository as a proxy (f.e. Nexus)? IMO providing a "custom" location would be a good solution.
In some cases, for example in disconnected mode, it's unable to download image from docker.io
It wold be nice to have an option for 'kamel install' to define image name, location and version.
@nicolaferraro , what do you think about it?
The text was updated successfully, but these errors were encountered: