This is an automated email from the ASF dual-hosted git repository. lburgazzoli pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/camel-k.git.
from e5384b6 Option to create an Integration Context from an existing image #316 new 54da3a7 Fix #312: add predefined image published and builder new a69f5fd Fix #312: add flag to enable predefined image published and builder new ac31685 Fix #312: add a none context to avoid creating any if needed new a4494ce Fix #312: fix logging new 49ebee4 Fix #312: add publisher to release phase new 4390c77 Fix #312: refactor platform image lookup into its own package new 9c9305e Fix #312: make linter happy new a114beb Fix #312: add more testcases and catalog guard new 3387b5e Fix #312: move lookup logic to the images trait The 9 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: .gitignore | 1 + cmd/util/publisher/publisher.go | 199 ++++++++++++++++++++++++ pkg/builder/s2i/s2i.go | 4 +- pkg/controller/integration/build_context.go | 8 +- pkg/controller/integration/util.go | 12 +- pkg/controller/integrationcontext/initialize.go | 12 +- pkg/controller/integrationplatform/create.go | 15 +- pkg/{metadata => platform/images}/doc.go | 4 +- pkg/platform/images/images.go | 92 +++++++++++ pkg/platform/images/images_test.go | 80 ++++++++++ pkg/platform/resources.go | 3 + pkg/trait/catalog.go | 6 + pkg/trait/{debug.go => images.go} | 37 +++-- script/Makefile | 12 +- script/publish_base_images.sh | 12 ++ 15 files changed, 463 insertions(+), 34 deletions(-) create mode 100644 cmd/util/publisher/publisher.go copy pkg/{metadata => platform/images}/doc.go (88%) create mode 100644 pkg/platform/images/images.go create mode 100644 pkg/platform/images/images_test.go copy pkg/trait/{debug.go => images.go} (54%) create mode 100755 script/publish_base_images.sh