This is an automated email from the ASF dual-hosted git repository.
github-actions[bot] pushed a change to tag v2.12.0-nightly
in repository https://gitbox.apache.org/repos/asf/camel-k.git
*** WARNING: tag v2.12.0-nightly was modified! ***
from 7509f125e (commit)
to 426f96900 (commit)
discard 7509f125e chore(ci): v2.12.0-nightly release updates
add 9a30911d4 Fix #5857: Add cert-manager auto-discovery to the Ingress
trait
add 40b3b082c Fix #5857: Add cert-manager auto-discovery to the Ingress
trait
add eac9b2b28 refactor: refactored according to the advices, received made
seperation of concerns clear among configure and apply
add fd2b535b6 refactor: added types to prevent unstructured, ingress_test
made it enabled by default and added a function to disable it
add dd88ebad6 refactor: Default cert-manager discovery to enabled in the
shared fake test client, matching the Knative default, and exclude cert-manager
duck types from the generic fake Kubernetes clientset (they are only ever
accessed via the typed controller-runtime client).added types to prevent
unstructured, ingress_test made it enabled by default and added a function to
disable it
add a7c820f0f Document cert-manager auto-discovery install-order caveat
add bb73e8d3a added error handling
add 044667342 pushed formatted fix
add e6c5cc086 Fix lint: reduce nestif complexity and drop named returns
Split the forced-issuer branch of resolveCertManagerIssuer() into its own
resolveForcedCertManagerIssuer() method to bring nesting complexity under
golangci-lint's nestif threshold, and switch to plain (unnamed) return values
to satisfy nonamedreturns.
add 72308975f chore(ci): golang tooling versioning
add 731f9b66b chore: remove itp e2e flow
add 174f6fb0d chore(ci): login to docker at the end of the action
add bf204843d chore(ci): add gotestfmt install
add 1c2513f4e chore: clean dead code
add d2d6a7c47 feat(ci): use secure registry
add fbfe953ec chore: nightly automatic updates
new 426f96900 chore(ci): v2.12.0-nightly release updates
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
tag 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 (7509f125e)
\
N -- N -- N refs/tags/v2.12.0-nightly (426f96900)
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.
The 1 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:
.github/actions/registry-setting/action.yml | 4 +-
.github/actions/registry-setting/registry.yaml | 16 ++
.github/actions/release-nightly/action.yml | 51 ++---
.github/workflows/{kafka.yml => cert-manager.yml} | 10 +-
.github/workflows/common.yml | 54 +----
README.adoc | 2 +-
docs/charts/camel-k-2.12.0-nightly.tgz | Bin 285526 -> 287477 bytes
docs/charts/index.yaml | 6 +-
docs/modules/ROOT/nav.adoc | 1 +
.../ROOT/pages/installation/cert-manager.adoc | 12 +
docs/modules/ROOT/partials/apis/camel-k-crds.adoc | 26 +++
docs/modules/traits/pages/ingress.adoc | 17 ++
e2e/cert-manager/certmanager_test.go | 85 +++++++
.../files/PlatformHttpServer.java | 0
.../cert-manager/setup/cluster-issuer.yaml | 9 +-
e2e/{gateway => cert-manager}/setup/setup.sh | 12 +-
e2e/common/traits/cron_test.go | 2 +-
helm/camel-k/crds/camel-k-crds.yaml | 136 +++++++++++
helm/camel-k/templates/rbacs-descoped.yaml | 32 +++
helm/camel-k/templates/rbacs-namespaced.yaml | 31 +++
helm/camel-k/values.yaml | 2 +-
...ck_v1.go => addtoscheme_certmanager_duck_v1.go} | 2 +-
pkg/apis/camel/v1/trait/ingress.go | 11 +
pkg/apis/camel/v1/trait/zz_generated.deepcopy.go | 5 +
pkg/apis/duck/{strimzi => certmanager}/v1/doc.go | 4 +-
pkg/apis/duck/certmanager/v1/duck_types.go | 65 ++++++
.../duck/{strimzi => certmanager}/v1/register.go | 10 +-
.../duck/certmanager/v1/zz_generated.deepcopy.go | 123 ++++++++++
pkg/cmd/operator/operator.go | 4 +
pkg/internal/client.go | 24 +-
pkg/platform/operator.go | 14 +-
.../camel.apache.org_integrationplatforms.yaml | 34 +++
.../camel.apache.org_integrationprofiles.yaml | 34 +++
.../crd/bases/camel.apache.org_integrations.yaml | 34 +++
.../config/crd/bases/camel.apache.org_pipes.yaml | 34 +++
.../config/manager/operator-deployment.yaml | 2 +-
.../bases/camel-k.clusterserviceversion.yaml | 4 +-
.../config/rbac/descoped/kustomization.yaml | 2 +
...operator-cluster-role-binding-certmanager.yaml} | 4 +-
...yaml => operator-cluster-role-certmanager.yaml} | 10 +-
.../config/rbac/namespaced/kustomization.yaml | 2 +
...yaml => operator-role-binding-certmanager.yaml} | 4 +-
...strimzi.yaml => operator-role-certmanager.yaml} | 10 +-
pkg/trait/builder.go | 4 +-
pkg/trait/ingress.go | 118 +++++++++-
pkg/trait/ingress_test.go | 160 +++++++++++++
pkg/trait/pull_secret.go | 32 ++-
pkg/util/certmanager/enabled.go | 113 ++++++++++
pkg/util/certmanager/enabled_test.go | 248 +++++++++++++++++++++
pkg/util/util.go | 12 -
script/Makefile | 46 ++--
51 files changed, 1488 insertions(+), 189 deletions(-)
copy .github/workflows/{kafka.yml => cert-manager.yml} (94%)
create mode 100644 docs/modules/ROOT/pages/installation/cert-manager.adoc
create mode 100644 e2e/cert-manager/certmanager_test.go
copy e2e/{common/traits => cert-manager}/files/PlatformHttpServer.java (100%)
copy pkg/resources/config/samples/bases/camel_v1_integrationplatform.yaml =>
e2e/cert-manager/setup/cluster-issuer.yaml (90%)
copy e2e/{gateway => cert-manager}/setup/setup.sh (64%)
copy pkg/apis/{addtoscheme_strimzi_duck_v1.go =>
addtoscheme_certmanager_duck_v1.go} (93%)
copy pkg/apis/duck/{strimzi => certmanager}/v1/doc.go (89%)
create mode 100644 pkg/apis/duck/certmanager/v1/duck_types.go
copy pkg/apis/duck/{strimzi => certmanager}/v1/register.go (89%)
create mode 100644 pkg/apis/duck/certmanager/v1/zz_generated.deepcopy.go
copy
pkg/resources/config/rbac/descoped/{operator-cluster-role-binding-keda.yaml =>
operator-cluster-role-binding-certmanager.yaml} (94%)
copy pkg/resources/config/rbac/descoped/{operator-cluster-role-strimzi.yaml =>
operator-cluster-role-certmanager.yaml} (91%)
copy pkg/resources/config/rbac/namespaced/{operator-role-binding-knative.yaml
=> operator-role-binding-certmanager.yaml} (93%)
copy pkg/resources/config/rbac/namespaced/{operator-role-strimzi.yaml =>
operator-role-certmanager.yaml} (91%)
create mode 100644 pkg/util/certmanager/enabled.go
create mode 100644 pkg/util/certmanager/enabled_test.go