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 9e7a630 chore(regen): regenerate defaults new f312d55 Fix #703: automatically configure global build strategy new ebf1d62 Fix #703: fix warming cache and affinity to work in global mode new 318c206 Fix #703: fix add reduced permissions to pod builder new cd71e8e Fix #703: add initial SNAPSHOT CSV new 134d844 Fix #703: add CRDs to manifest new b2d2abd Fix #703: fix olm new 8728513 Fix #703: add license headers The 7 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: deploy/builder-role-binding.yaml | 13 + deploy/builder-role-kubernetes.yaml | 34 ++ deploy/builder-role-openshift.yaml | 78 +++++ deploy/builder-service-account.yaml | 6 + deploy/olm-catalog/camel-k.package.yaml | 2 +- .../camel-k.v0.3.3.clusterserviceversion.yaml | 0 ...el-k.v0.3.4-SNAPSHOT.clusterserviceversion.yaml | 380 +++++++++++++++++++++ .../camel-k/0.3.4-SNAPSHOT}/crd-build.yaml | 17 - .../camel-k/0.3.4-SNAPSHOT/crd-camel-catalog.yaml | 25 ++ .../0.3.4-SNAPSHOT/crd-integration-context.yaml | 32 ++ .../0.3.4-SNAPSHOT/crd-integration-platform.yaml | 24 ++ .../camel-k/0.3.4-SNAPSHOT/crd-integration.yaml | 28 ++ deploy/olm-catalog/csv-config.yaml | 2 +- deploy/operator-role-kubernetes.yaml | 15 + ...-role-openshift.yaml => operator-role-olm.yaml} | 72 +++- deploy/operator-role-openshift.yaml | 15 + deploy/resources.go | 363 ++++++++++++++++++++ pkg/builder/kaniko/publisher.go | 36 +- pkg/cmd/install.go | 12 +- pkg/controller/build/schedule_pod.go | 54 ++- pkg/controller/integrationplatform/initialize.go | 32 +- pkg/install/builder.go | 58 ++++ pkg/platform/operator.go | 41 ++- script/Makefile | 10 +- script/{package_examples.sh => build_olm.sh} | 9 +- .../{publish_base_images.sh => unsnapshot_olm.sh} | 23 +- 26 files changed, 1287 insertions(+), 94 deletions(-) create mode 100644 deploy/builder-role-binding.yaml create mode 100644 deploy/builder-role-kubernetes.yaml create mode 100644 deploy/builder-role-openshift.yaml create mode 100644 deploy/builder-service-account.yaml rename deploy/olm-catalog/{ => camel-k/0.3.3}/camel-k.v0.3.3.clusterserviceversion.yaml (100%) create mode 100644 deploy/olm-catalog/camel-k/0.3.4-SNAPSHOT/camel-k.v0.3.4-SNAPSHOT.clusterserviceversion.yaml copy deploy/{ => olm-catalog/camel-k/0.3.4-SNAPSHOT}/crd-build.yaml (51%) create mode 100644 deploy/olm-catalog/camel-k/0.3.4-SNAPSHOT/crd-camel-catalog.yaml create mode 100644 deploy/olm-catalog/camel-k/0.3.4-SNAPSHOT/crd-integration-context.yaml create mode 100644 deploy/olm-catalog/camel-k/0.3.4-SNAPSHOT/crd-integration-platform.yaml create mode 100644 deploy/olm-catalog/camel-k/0.3.4-SNAPSHOT/crd-integration.yaml copy deploy/{operator-role-openshift.yaml => operator-role-olm.yaml} (64%) create mode 100644 pkg/install/builder.go copy script/{package_examples.sh => build_olm.sh} (75%) copy script/{publish_base_images.sh => unsnapshot_olm.sh} (66%)