This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch dependabot/go_modules/k8s.io/api-0.28.1
in repository https://gitbox.apache.org/repos/asf/apisix-ingress-controller.git
discard 0408d624 chore(deps): bump k8s.io/api from 0.27.4 to 0.28.1
add 0bbdc4f9 feat: support controller as etcd server (#1803)
add b9c112e8 chore(deps): bump k8s.io/api from 0.27.4 to 0.28.1
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 (0408d624)
\
N -- N -- N refs/heads/dependabot/go_modules/k8s.io/api-0.28.1
(b9c112e8)
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/e2e-test-ci.yml | 2 +
Dockerfile | 1 +
cmd/ingress/ingress.go | 3 +
conf/apisix-schema.json | 11166 +++++++++++++++++++
conf/config-default.yaml | 8 +
.../ingress-apisix-composite-architecture.png | Bin 0 -> 151424 bytes
...ress-apisix-new-architecture-timing-diagram.png | Bin 0 -> 104324 bytes
docs/en/latest/composite.md | 99 +
docs/en/latest/concepts/apisix_global_rule.md | 2 +-
go.mod | 24 +-
go.sum | 89 +-
pkg/api/server.go | 3 +-
pkg/apisix/apisix.go | 8 +
pkg/apisix/cluster.go | 166 +-
pkg/apisix/consumer.go | 88 +
pkg/apisix/global_rule.go | 88 +
pkg/apisix/nonexistentclient.go | 22 +
pkg/apisix/plugin_metadata.go | 135 +
pkg/apisix/pluginconfig.go | 117 +
pkg/apisix/route.go | 98 +
pkg/apisix/ssl.go | 98 +
pkg/apisix/stream_route.go | 98 +
pkg/apisix/upstream.go | 125 +
pkg/apisix/upstreamservicerelation.go | 2 +-
pkg/apisix/utils.go | 77 +
pkg/apisix/validator.go | 138 +
pkg/apisix/validator_test.go | 119 +
pkg/config/config.go | 18 +
pkg/config/config_test.go | 25 +-
pkg/kube/apisix/apis/config/v2/types.go | 15 +-
pkg/providers/apisix/apisix_consumer.go | 2 +-
pkg/providers/apisix/apisix_global_rule.go | 92 +-
pkg/providers/apisix/apisix_plugin_config.go | 2 +-
pkg/providers/apisix/apisix_route.go | 26 +-
pkg/providers/apisix/apisix_tls.go | 2 +-
pkg/providers/apisix/apisix_upstream.go | 24 +-
pkg/providers/apisix/translation/apisix_plugin.go | 33 +-
pkg/providers/apisix/translation/apisix_route.go | 4 +-
pkg/providers/controller.go | 114 +-
pkg/providers/k8s/configmap/configmap.go | 22 +
pkg/providers/types/types.go | 46 +-
pkg/providers/utils/manifest.go | 2 +-
pkg/types/apisix/v1/plugin_types.go | 15 +-
samples/deploy/composite.yaml | 496 +
samples/deploy/crd/v1/ApisixConsumer.yaml | 14 +-
samples/deploy/rbac/apisix_view_clusterrole.yaml | 80 +-
.../rbac/apisix_view_clusterrolebinding.yaml | 2 +-
samples/deploy/rbac/service_account.yaml | 1 +
samples/httpbin/httpbin-route.yaml | 90 +
test/e2e/go.mod | 32 +-
test/e2e/go.sum | 112 +-
test/e2e/scaffold/apisix.go | 32 +-
test/e2e/scaffold/etcd.go | 13 +-
test/e2e/scaffold/ingress.go | 187 +-
test/e2e/scaffold/k8s.go | 3 +-
test/e2e/scaffold/scaffold.go | 86 +-
test/e2e/suite-annotations/forward_auth.go | 5 +-
test/e2e/suite-chore/admin_api.go | 3 +
test/e2e/suite-chore/chaos.go | 6 +-
test/e2e/suite-chore/config.go | 3 +
test/e2e/suite-chore/endpoints.go | 5 +-
test/e2e/suite-chore/resolvegranularity.go | 3 +
test/e2e/suite-features/external-sd.go | 8 +-
test/e2e/suite-features/sync-comparison.go | 3 +
test/e2e/suite-features/sync-delay.go | 7 +-
test/e2e/suite-gateway/gateway_httproute.go | 1 -
.../suite-ingress-features/compare.go | 3 +
.../suite-ingress-features/ingress-class.go | 3 +
.../suite-ingress-features/namespace.go | 10 +-
.../suite-ingress-features/resourcesync.go | 9 +
.../suite-ingress/suite-ingress-features/sanity.go | 2 +-
.../suite-ingress/suite-ingress-features/status.go | 9 +-
.../suite-ingress-resource/ingress.go | 2 +
.../suite-plugins-authentication/hmac.go | 4 -
.../suite-plugins-general/redirect.go | 1 +
.../suite-plugins-general/server-info.go | 4 +
.../suite-plugins-other/plugin_config.go | 499 +-
.../suite-plugins/suite-plugins-security/cors.go | 3 +-
.../testdata/apisix-gw-config-v3-etcd-server.yaml | 144 +
test/e2e/testdata/apisix-gw-config-v3-with-sd.yaml | 93 +-
80 files changed, 14594 insertions(+), 602 deletions(-)
create mode 100644 conf/apisix-schema.json
create mode 100644 docs/assets/images/ingress-apisix-composite-architecture.png
create mode 100644
docs/assets/images/ingress-apisix-new-architecture-timing-diagram.png
create mode 100644 docs/en/latest/composite.md
create mode 100644 pkg/apisix/validator.go
create mode 100644 pkg/apisix/validator_test.go
create mode 100644 samples/deploy/composite.yaml
create mode 100644 samples/httpbin/httpbin-route.yaml
create mode 100644 test/e2e/testdata/apisix-gw-config-v3-etcd-server.yaml