This repository has been archived by the owner on Jun 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 202
Do not add ImageChange change triggers for Docker images #1037
Labels
Comments
This issue has been automatically marked as stale because it has not had any activity since 90 days. It will be closed if no further activity occurs within 7 days. Thank you for your contributions! |
When we merge this #1202 I think this issue might easiest to implement since after that sidecars containers are clearly separated from autogenerated ones. |
rohanKanojia
added a commit
to nicolaferraro/fabric8-maven-plugin
that referenced
this issue
Jan 17, 2019
Don't add ImageChange triggers to containers other than main application containers. In Openshift mode, ImageStream is used by default. This is just a workaround for fabric8io#1037
rohanKanojia
added a commit
to rohanKanojia/fabric8-maven-plugin
that referenced
this issue
Mar 1, 2019
Don't add ImageChange triggers to containers other than main application containers. In Openshift mode, ImageStream is used by default. This is just a workaround for fabric8io#1037
Hello |
Since Deployment to DeploymentConfig logic has been shifted to enrichers we can check the effective RuntimeMode and add triggers only when runtime mode is openshift(i.e s2i build is used in which we always create imagestream) |
rohanKanojia
added a commit
to nicolaferraro/fabric8-maven-plugin
that referenced
this issue
Mar 11, 2019
Don't add ImageChange triggers to containers other than main application containers. In Openshift mode, ImageStream is used by default. This is just a workaround for fabric8io#1037
rohanKanojia
added a commit
to nicolaferraro/fabric8-maven-plugin
that referenced
this issue
Mar 11, 2019
rohanKanojia
added a commit
to nicolaferraro/fabric8-maven-plugin
that referenced
this issue
Mar 13, 2019
Don't add ImageChange triggers to containers other than main application containers. In Openshift mode, ImageStream is used by default. This is just a workaround for fabric8io#1037
rohanKanojia
added a commit
to nicolaferraro/fabric8-maven-plugin
that referenced
this issue
Mar 13, 2019
rohanKanojia
added a commit
to rohanKanojia/fabric8-maven-plugin
that referenced
this issue
Mar 19, 2019
… images Only add triggers to main application container
rohanKanojia
added a commit
to rohanKanojia/fabric8-maven-plugin
that referenced
this issue
Mar 19, 2019
… images Only add triggers to main application container
rohanKanojia
added a commit
to rohanKanojia/fabric8-maven-plugin
that referenced
this issue
Mar 19, 2019
… images + Only add triggers to main application container + Added ImageChangeTriggerEnricher for handling triggers in separate enricher
rohanKanojia
added a commit
to rohanKanojia/fabric8-maven-plugin
that referenced
this issue
Mar 19, 2019
… images + Only add triggers to main application container + Added ImageChangeTriggerEnricher for handling triggers in separate enricher
rohanKanojia
added a commit
to rohanKanojia/fabric8-maven-plugin
that referenced
this issue
Mar 21, 2019
… images + Only add triggers to main application container + Added ImageChangeTriggerEnricher for handling triggers in separate enricher
rohanKanojia
added a commit
that referenced
this issue
Mar 21, 2019
+ Only add triggers to main application container + Added ImageChangeTriggerEnricher for handling triggers in separate enricher
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Labels
When using a docker image without image stream for a container in Openshift (e.g. to deploy a sidecar) in the
src/main/fabric8/deployment.yml
file (example here), the plugin adds a triggers on ImageStreamTag change, but there's no image stream since we want to use the docker image directly.Fragment of the generated yml.
In this case the docker image is
jaegertracing/jaeger-agent:latest
. We should detect if a container image is a IS or a Docker image and add triggers in the first case only.The text was updated successfully, but these errors were encountered: