This is an automated email from the ASF dual-hosted git repository.
dependabot[bot] pushed a change to branch
dependabot/go_modules/google.golang.org/grpc-1.83.1
in repository https://gitbox.apache.org/repos/asf/apisix-ingress-controller.git
discard 72307f83 chore(deps): bump google.golang.org/grpc from 1.82.1 to 1.83.1
add c17a5857 fix(test): keep one recordingProvider stub so
internal/controller builds (#2854)
add e8ffcdae test: add adc rust variant for e2e (#2852)
add bdeb96f5 fix: delete data plane config when a route leaves a managed
Gateway (#2834)
add 52557e1f fix: pin a route to the scheme its listeners accept (#2864)
add 8610842f feat: support secretRef in v1alpha1 plugin configuration
(#2855)
add 0bd613ca ci: remove e2e for adc-node port (#2868)
add b25bae86 fix: retract configuration when a referenced
ApisixPluginConfig is gone (#2859)
add 80112024 refactor: let adc client independent of external state (#2865)
add cff8979d refactor: clearly boundaries between provider and ADC client
(#2869)
add c69d50cf fix: retract route configuration when no parent accepts the
route any more (#2858)
add f14782d3 feat: report dp instance unavailable to gateway proxy (#2856)
add 8157735a feat: prepare isolate bad resource (#2880)
add 43637b8f fix: return an error response for unresolved ExtensionRef
(#2875)
add d197ea55 fix: remove consumer config after ingress class handoff
(#2874)
add 259d7d70 chore(deps): bump google.golang.org/grpc from 1.82.1 to 1.83.2
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 (72307f83)
\
N -- N -- N
refs/heads/dependabot/go_modules/google.golang.org/grpc-1.83.1 (259d7d70)
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:
Dockerfile => .github/adc-rust/Dockerfile | 16 +-
.github/{semantic.yml => adc-rust/entrypoint.sh} | 25 +-
.github/workflows/apisix-e2e-test.yml | 60 +--
Makefile | 2 +-
api/adc/types.go | 29 +-
api/v1alpha1/gatewayproxy_types.go | 14 +
api/v1alpha1/pluginconfig_types.go | 8 +
api/v1alpha1/zz_generated.deepcopy.go | 29 ++
config/crd/bases/apisix.apache.org_consumers.yaml | 19 +
.../bases/apisix.apache.org_gatewayproxies.yaml | 71 ++++
.../bases/apisix.apache.org_l4routepolicies.yaml | 19 +
.../crd/bases/apisix.apache.org_pluginconfigs.yaml | 19 +
config/manager/kustomization.yaml | 2 +-
config/rbac/role.yaml | 1 +
docs/en/latest/concepts/gateway-api.md | 12 +
docs/en/latest/reference/api-reference.md | 3 +
docs/en/latest/reference/example.md | 79 ++++
docs/en/latest/reference/troubleshoot.md | 34 ++
go.mod | 12 +-
go.sum | 24 +-
internal/adc/client/client.go | 411 +++---------------
internal/adc/client/executor.go | 321 ++++++--------
internal/adc/client/executor_test.go | 389 +++++++++++------
internal/adc/client/redaction_test.go | 1 -
internal/adc/client/standalone_syncer.go | 120 ++++++
internal/adc/translator/consumer.go | 20 +-
internal/adc/translator/consumer_test.go | 34 ++
.../adc/translator/extensionref_resolution_test.go | 225 ++++++++++
internal/adc/translator/gateway.go | 2 +-
internal/adc/translator/grpcroute.go | 20 +-
internal/adc/translator/grpcroute_test.go | 9 +-
internal/adc/translator/httproute.go | 79 ++--
internal/adc/translator/httproute_scheme_test.go | 178 ++++++++
internal/adc/translator/httproute_test.go | 9 +-
internal/adc/translator/l4routepolicy_test.go | 10 +-
internal/adc/translator/plugin.go | 57 +++
internal/adc/translator/plugin_test.go | 180 ++++++++
internal/adc/translator/policies.go | 22 +-
internal/adc/translator/tcproute.go | 2 +-
internal/adc/translator/tlsroute.go | 2 +-
internal/adc/translator/translator.go | 56 +++
internal/controller/apisixconsumer_controller.go | 7 +
.../controller/apisixconsumer_controller_test.go | 100 ++++-
internal/controller/apisixroute_controller.go | 26 +-
internal/controller/consumer_controller.go | 2 +-
internal/controller/extensionref.go | 69 +++
.../controller/extensionref_resolution_test.go | 178 ++++++++
.../gateway_controller_publishservice_test.go | 17 -
internal/controller/grpcroute_controller.go | 82 +++-
internal/controller/httproute_controller.go | 87 +++-
.../httproute_controller_retract_test.go | 177 ++++++++
internal/controller/httproute_controller_test.go | 111 +++++
internal/controller/indexer/extensionref_test.go | 69 +++
internal/controller/indexer/grpcroute.go | 2 +-
internal/controller/indexer/indexer.go | 38 +-
internal/controller/ingress_controller.go | 18 +
internal/controller/pluginconfig_retract_test.go | 261 ++++++++++++
internal/controller/policies.go | 20 +-
internal/controller/status/updater.go | 6 +
internal/controller/status/updater_test.go | 146 +++++++
internal/controller/tcproute_controller.go | 56 ++-
internal/controller/tlsroute_controller.go | 56 ++-
internal/controller/udproute_controller.go | 56 ++-
internal/controller/utils.go | 83 +++-
internal/controller/utils_parentref_test.go | 84 +++-
internal/manager/controllers.go | 1 +
internal/manager/run.go | 2 +
internal/provider/apisix/keyedmutex.go | 52 +++
internal/provider/apisix/keyedmutex_test.go | 94 +++++
internal/provider/apisix/provider.go | 343 ++++++++++++---
internal/provider/apisix/provider_test.go | 209 +++++++++
internal/provider/apisix/status.go | 336 +++++++++------
internal/provider/apisix/status_test.go | 437 +++++++++++++++++++
internal/provider/apisix/sync_baseline_test.go | 223 ++++++++++
internal/provider/options.go | 14 +
internal/types/error.go | 38 +-
internal/types/k8s.go | 23 +
internal/webhook/v1/adc_validation.go | 1 -
pkg/metrics/metrics.go | 58 ++-
test/e2e/crds/v2/consumer.go | 103 +++++
test/e2e/crds/v2/pluginconfig.go | 85 ++++
test/e2e/crds/v2/route.go | 28 +-
test/e2e/crds/v2/status.go | 130 +++++-
test/e2e/crds/v2/tls.go | 51 ++-
test/e2e/framework/manifests/ingress.yaml | 3 +-
test/e2e/gatewayapi/httproute.go | 468 +++++++++++++++++++++
test/e2e/gatewayapi/status.go | 11 +-
test/e2e/gatewayapi/tcproute.go | 40 ++
test/e2e/ingress/annotations.go | 85 ++++
test/e2e/scaffold/adc.go | 5 +-
test/e2e/scaffold/adc_standalone.go | 227 ++++++++++
test/e2e/scaffold/apisix_deployer.go | 6 +
92 files changed, 6332 insertions(+), 1117 deletions(-)
copy Dockerfile => .github/adc-rust/Dockerfile (74%)
copy .github/{semantic.yml => adc-rust/entrypoint.sh} (82%)
create mode 100644 internal/adc/client/standalone_syncer.go
create mode 100644 internal/adc/translator/extensionref_resolution_test.go
create mode 100644 internal/adc/translator/httproute_scheme_test.go
create mode 100644 internal/adc/translator/plugin.go
create mode 100644 internal/adc/translator/plugin_test.go
create mode 100644 internal/controller/extensionref.go
create mode 100644 internal/controller/extensionref_resolution_test.go
create mode 100644 internal/controller/httproute_controller_retract_test.go
create mode 100644 internal/controller/httproute_controller_test.go
create mode 100644 internal/controller/indexer/extensionref_test.go
create mode 100644 internal/controller/pluginconfig_retract_test.go
create mode 100644 internal/controller/status/updater_test.go
create mode 100644 internal/provider/apisix/keyedmutex.go
create mode 100644 internal/provider/apisix/keyedmutex_test.go
create mode 100644 internal/provider/apisix/provider_test.go
create mode 100644 internal/provider/apisix/status_test.go
create mode 100644 internal/provider/apisix/sync_baseline_test.go
create mode 100644 test/e2e/scaffold/adc_standalone.go