-
Bug
-
Resolution: Done
-
Major
-
FIS 2.0
-
None
-
%
-
Fuse 7.0 Sprint 18
spring-boot-camel-amq-archetype/src/test/resources/amq.json contains
{ "kind": "ImageStream", "apiVersion": "v1", "metadata": { "name": "jboss-amq-62" }, "spec": { "dockerImageRepository": "registry.access.redhat.com/jboss-amq-6/amq62-openshift", "tags": [ { "name": "1.3" } ] } }
which is wrong, as it doesn't guarantee the 1.3 tag being imported. (openshift will by default import only 5 latest tags from the specified dockerImageRepository )
the proper way to define this image stream would be:
{ "kind": "ImageStream", "apiVersion": "v1", "metadata": { "name": "jboss-amq-62" }, "spec": { "tags": [ { "name": "1.3", "from": { "kind": "DockerImage", "name": "registry.access.redhat.com/jboss-amq-6/amq62-openshift:1.3" } } ] } }
- is related to
-
ENTESB-8769 Update documentation / quickstarts to use AMQ 6.3 image instead of the deprecated AMQ 6.2 image
- Closed