This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch
dependabot/go_modules/test/e2e/github.com/onsi/ginkgo/v2-2.13.2
in repository https://gitbox.apache.org/repos/asf/apisix-ingress-controller.git
omit e27fa799 chore(deps): bump github.com/onsi/ginkgo/v2 in /test/e2e
add 8bd4cd0c docs: Add doc for ApisixConsumer (#2074)
add b83c206f fix: upgrade etcd-adapter (#2078)
add 7a9a0fab chore(deps): bump k8s.io/api from 0.28.2 to 0.28.4 (#2056)
add 589bae60 ci: add workflow to push docker image (#2081)
add 8fbf558a feat: allow configuring timeout and retries for upstream with
ingress (#1876)
add 1da1ca0c fix: Some CRDs missing status sub-resource (#1809)
add a759ae5c feat: Allow merging nested values in plugin config secretRef
(#2096)
add 86392eff chore(deps): bump k8s.io/client-go from 0.28.4 to 0.29.0 in
/test/e2e (#2105)
add c2d687ad chore(deps): bump github.com/onsi/ginkgo/v2 in /test/e2e
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 (e27fa799)
\
N -- N -- N
refs/heads/dependabot/go_modules/test/e2e/github.com/onsi/ginkgo/v2-2.13.2
(c2d687ad)
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:
.github/workflows/docker-push.yml | 61 ++++++++++
.github/workflows/e2e-test-ci-v2-cron-dev.yml | 3 +-
.github/workflows/e2e-test-ci-v2-cron.yml | 2 +
.github/workflows/e2e-test-ci.yml | 1 +
.github/workflows/k8s-timer-ci.yml | 1 +
Makefile | 5 +-
docs/en/latest/concepts/annotations.md | 60 ++++++++++
docs/en/latest/concepts/apisix_consumer.md | 108 +++++++++++++++++
docs/en/latest/concepts/apisix_route.md | 40 +++++++
docs/en/latest/references/apisix_consumer_v2.md | 46 +++++++
go.mod | 6 +-
go.sum | 12 +-
.../apisix/translation/apisix_pluginconfig.go | 12 +-
pkg/providers/apisix/translation/apisix_route.go | 6 +-
pkg/providers/ingress/translation/annotations.go | 6 +-
.../ingress/translation/annotations/types.go | 6 +
.../translation/annotations/upstream/upstream.go | 89 ++++++++++++++
.../annotations/upstream/upstream_test.go | 98 +++++++++++++++
.../annotations/upstreamscheme/upstreamscheme.go | 47 --------
.../upstreamscheme/upstreamscheme_test.go | 44 -------
pkg/providers/ingress/translation/translator.go | 49 +++++++-
.../utils/{ingress_class.go => insert_map.go} | 32 +++--
pkg/providers/utils/insert_map_test.go | 133 +++++++++++++++++++++
samples/deploy/crd/v1/ApisixClusterConfig.yaml | 24 ++++
samples/deploy/crd/v1/ApisixConsumer.yaml | 27 ++++-
test/e2e/go.mod | 21 ++--
test/e2e/go.sum | 43 +++----
test/e2e/scaffold/cluster_config.go | 5 +-
test/e2e/scaffold/scaffold.go | 16 +++
test/e2e/scaffold/test_backend.go | 79 ++++++++++++
test/e2e/suite-annotations/redirect.go | 20 ++--
test/e2e/suite-annotations/upstreamretry.go | 97 +++++++++++++++
test/e2e/suite-cluster/status.go | 42 +++++++
test/e2e/suite-features/external-service.go | 86 +++++--------
.../suite-ingress/suite-ingress-features/secret.go | 119 ++++++++++++++++++
.../suite-ingress/suite-ingress-features/status.go | 19 ++-
.../suite-plugins-general/secret_ref.go | 55 +++++++++
test/e2e/testdata/apisix-gw-config-with-sd.yaml | 2 +-
test/e2e/testdata/apisix-stream-disabled.yaml | 2 +-
test/e2e/testdata/ldap/docker-compose.yaml | 2 +-
test/e2e/testdata/wolf-rbac/cmd.sh | 2 +-
test/e2e/testdata/wolf-rbac/docker-compose.yaml | 2 +-
.../e2e/testtimeout/Dockerfile | 12 +-
test/e2e/testtimeout/go.mod | 3 +
main.go => test/e2e/testtimeout/main.go | 31 ++++-
45 files changed, 1330 insertions(+), 246 deletions(-)
create mode 100644 .github/workflows/docker-push.yml
create mode 100644 docs/en/latest/concepts/apisix_consumer.md
create mode 100644 docs/en/latest/references/apisix_consumer_v2.md
create mode 100644
pkg/providers/ingress/translation/annotations/upstream/upstream.go
create mode 100644
pkg/providers/ingress/translation/annotations/upstream/upstream_test.go
delete mode 100644
pkg/providers/ingress/translation/annotations/upstreamscheme/upstreamscheme.go
delete mode 100644
pkg/providers/ingress/translation/annotations/upstreamscheme/upstreamscheme_test.go
copy pkg/providers/utils/{ingress_class.go => insert_map.go} (55%)
create mode 100644 pkg/providers/utils/insert_map_test.go
create mode 100644 test/e2e/suite-annotations/upstreamretry.go
create mode 100644 test/e2e/suite-cluster/status.go
copy samples/deploy/deployment/kustomization.yaml =>
test/e2e/testtimeout/Dockerfile (87%)
create mode 100644 test/e2e/testtimeout/go.mod
copy main.go => test/e2e/testtimeout/main.go (62%)