This is an automated email from the ASF dual-hosted git repository.
nfilotto pushed a change to branch 3308/add-publish-strategy-option-to-install
in repository https://gitbox.apache.org/repos/asf/camel-k.git
omit 658a744ca feat(cli): Allow to set build publish strategy options from
install cmd
add 35d703c03 test: Use camel-k repo in the test for the add-repo command
(#3630)
add 64290f1c9 fix: release as an action
add 8c21ad659 Updated CHANGELOG.md
add a48f70736 fix(helm): Fix typo
add 6e6aff2e7 feat(cmd/run): secret/configmap as runtime/build-time
properties (#3626)
add eb05d27a2 feat(cli): Allow to set build publish strategy options from
install cmd
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (658a744ca)
\
N -- N -- N
refs/heads/3308/add-publish-strategy-option-to-install (eb05d27a2)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
No new revisions were added by this update.
Summary of changes:
.../{release => release-nightly}/action.yml | 2 +-
.github/workflows/release.yml | 54 ++++++------
CHANGELOG.md | 3 +-
.../pages/configuration/build-time-properties.adoc | 62 +++++++++++++-
.../pages/configuration/runtime-properties.adoc | 62 +++++++++++++-
e2e/global/common/config/config_test.go | 95 ++++++++++++++++++++++
e2e/global/common/kamelet_test.go | 2 +-
e2e/namespace/install/cli/install_test.go | 6 +-
helm/camel-k/templates/operator.yaml | 2 +-
pkg/builder/buildah.go | 12 +++
pkg/builder/builder_support.go | 69 ++++++++++++++++
pkg/builder/kaniko.go | 22 +++++
pkg/cmd/install.go | 48 +++++------
pkg/cmd/install_test.go | 21 +----
pkg/cmd/run.go | 61 +++++++++++---
pkg/cmd/run_help.go | 66 +++++++++------
pkg/cmd/run_help_test.go | 63 --------------
pkg/cmd/run_test.go | 69 +++++++++++++++-
pkg/platform/defaults.go | 2 +-
19 files changed, 542 insertions(+), 179 deletions(-)
rename .github/actions/{release => release-nightly}/action.yml (99%)
create mode 100644 pkg/builder/builder_support.go