Skip to content

moved shared under rules #5944

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 44 commits into from
May 13, 2025
Merged

Conversation

ryanhristovski
Copy link
Contributor

@ryanhristovski ryanhristovski commented May 7, 2025

  • updates the global shared rate limit logic to be under each ratelimit rule rather than the entire ratelimit spec
  • removed patching keys and name value in ratelimit rule api
  • remove Name field from TrafficFeatures IR, add patch keys to traffic features IR rules
  • adds auto-generated Name field to RateLimitRule (this is the key for merging logic)
  • updates ratelimit.go logic to work for shared/non-shared fields within each rule

Before:

    rateLimit:
      shared: true
      global:
        rules:
        - clientSelectors:
          - headers:
            - name: x-user-id
              type: Exact
              value: one
          limit:
            requests: 5
            unit: Hour

After:

    rateLimit:
      global:
        rules:
        - clientSelectors:
          - headers:
            - name: x-user-id
              type: Exact
              value: one
          shared: true
          limit:
            requests: 5
            unit: Hour
        - clientSelectors:
          - headers:
            - name: x-user-id
              type: Exact
              value: two
          shared: false
          limit:
            requests: 5
            unit: Hour

Signed-off-by: Ryan Hristovski <[email protected]>
Signed-off-by: Ryan Hristovski <[email protected]>
Signed-off-by: Ryan Hristovski <[email protected]>
Signed-off-by: Ryan Hristovski <[email protected]>
Signed-off-by: Ryan Hristovski <[email protected]>
Copy link

codecov bot commented May 7, 2025

Codecov Report

Attention: Patch coverage is 75.29880% with 62 lines in your changes missing coverage. Please review.

Project coverage is 70.39%. Comparing base (8455177) to head (f7c35f5).
Report is 1 commits behind head on main.

Files with missing lines Patch % Lines
internal/xds/translator/ratelimit.go 78.94% 26 Missing and 14 partials ⚠️
internal/utils/merge.go 54.76% 15 Missing and 4 partials ⚠️
internal/gatewayapi/backendtrafficpolicy.go 82.35% 2 Missing and 1 partial ⚠️
Additional details and impacted files
@@            Coverage Diff             @@
##             main    #5944      +/-   ##
==========================================
- Coverage   70.45%   70.39%   -0.07%     
==========================================
  Files         217      217              
  Lines       36038    36171     +133     
==========================================
+ Hits        25392    25464      +72     
- Misses       9140     9185      +45     
- Partials     1506     1522      +16     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

@ryanhristovski ryanhristovski marked this pull request as ready for review May 9, 2025 17:51
@ryanhristovski ryanhristovski requested a review from a team as a code owner May 9, 2025 17:51
Signed-off-by: Ryan Hristovski <[email protected]>
@arkodg arkodg requested a review from zhaohuabing May 12, 2025 21:50
Signed-off-by: Ryan Hristovski <[email protected]>
zirain
zirain previously approved these changes May 12, 2025
@zhaohuabing zhaohuabing requested a review from arkodg May 13, 2025 04:13
arkodg
arkodg previously approved these changes May 13, 2025
Copy link
Member

@zhaohuabing zhaohuabing left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The domain in the ratelimt server config doesn't match the one in the ratelimit filter.

ratelimit server config: domain: test-namespace/test-policy-1
ratelimit filter config : domain: test-policy-1/test-namespace

@zhaohuabing
Copy link
Member

The domain in the ratelimt server config doesn't match the one in the ratelimit filter.

ratelimit server config: domain: test-namespace/test-policy-1 ratelimit filter config : domain: test-policy-1/test-namespace

Looks like typos in the test files. The naming logic in the code is correct.

Signed-off-by: Ryan Hristovski <[email protected]>
@ryanhristovski ryanhristovski dismissed stale reviews from zirain and arkodg via 344fa01 May 13, 2025 11:32
@ryanhristovski
Copy link
Contributor Author

/retest

@arkodg arkodg merged commit e032882 into envoyproxy:main May 13, 2025
46 of 47 checks passed
arkodg added a commit to arkodg/gateway that referenced this pull request May 13, 2025
* moved shared under rules

Signed-off-by: Ryan Hristovski <[email protected]>

* Fix some logic

Signed-off-by: Ryan Hristovski <[email protected]>

* fix rule logic

Signed-off-by: Ryan Hristovski <[email protected]>

* fix some tests

Signed-off-by: Ryan Hristovski <[email protected]>

* fix tests

Signed-off-by: Ryan Hristovski <[email protected]>

* Fix descriptor hierarchy

Signed-off-by: Ryan Hristovski <[email protected]>

* comments

Signed-off-by: Ryan Hristovski <[email protected]>

* fmt

Signed-off-by: Ryan Hristovski <[email protected]>
Co-authored-by: Arko Dasgupta <[email protected]>
Co-authored-by: Huabing (Robin) Zhao <[email protected]>
arkodg added a commit to arkodg/gateway that referenced this pull request May 13, 2025
* moved shared under rules

Signed-off-by: Ryan Hristovski <[email protected]>

* Fix some logic

Signed-off-by: Ryan Hristovski <[email protected]>

* fix rule logic

Signed-off-by: Ryan Hristovski <[email protected]>

* fix some tests

Signed-off-by: Ryan Hristovski <[email protected]>

* fix tests

Signed-off-by: Ryan Hristovski <[email protected]>

* Fix descriptor hierarchy

Signed-off-by: Ryan Hristovski <[email protected]>

* comments

Signed-off-by: Ryan Hristovski <[email protected]>

* fmt

Signed-off-by: Ryan Hristovski <[email protected]>
Co-authored-by: Arko Dasgupta <[email protected]>
Co-authored-by: Huabing (Robin) Zhao <[email protected]>
Signed-off-by: Arko Dasgupta <[email protected]>
arkodg added a commit that referenced this pull request May 13, 2025
* chore: ignore api types in codecov (#5886)

Signed-off-by: shawnh2 <[email protected]>
Signed-off-by: Arko Dasgupta <[email protected]>

* chore/ci: add `go.lint.fmt` target (#5846)

* chore/ci: add lint.gofumpt target

Signed-off-by: Karol Szwaj <[email protected]>

* update review

Signed-off-by: Karol Szwaj <[email protected]>

* Add extra flag to gofumpt, move local golanglint fmt target to golang makefile

Signed-off-by: Karol Szwaj <[email protected]>

* add build tags

Signed-off-by: Karol Szwaj <[email protected]>

* fix lint

Signed-off-by: Karol Szwaj <[email protected]>

---------

Signed-off-by: Karol Szwaj <[email protected]>
Signed-off-by: Arko Dasgupta <[email protected]>

* fix: staticcheck issues (#5779)

* fix(QF1008): Omit embedded fields from selector expression

Signed-off-by: Matthieu MOREL <[email protected]>

* fix(QF1001): Apply De Morgan’s law

Signed-off-by: Matthieu MOREL <[email protected]>

* fix(QF1002): Convert untagged switch to tagged switch

Signed-off-by: Matthieu MOREL <[email protected]>

* fix(QF1003): Convert if/else-if chain to tagged switch

Signed-off-by: Matthieu MOREL <[email protected]>

* fix(QF1007): Merge conditional assignment into variable declaration

Signed-off-by: Matthieu MOREL <[email protected]>

* fix(QF1009): Use time.Time.Equal instead of == operator

Signed-off-by: Matthieu MOREL <[email protected]>

---------

Signed-off-by: Matthieu MOREL <[email protected]>
Signed-off-by: Arko Dasgupta <[email protected]>

* docs: local jwks (#5806)

docs for local jwks

Signed-off-by: Huabing (Robin) Zhao <[email protected]>
Signed-off-by: Arko Dasgupta <[email protected]>

* disable settings by default in gateway-crds-helm (#5894)

* disable settings by default in gateway-crds-helm

* These settings dont work by default in the way `helm` works
and this helm chart is now mainly used as a package artifact
to be consumed by CI tools like Argo, so changed the default settings to
disable by default, so users are opting into specific CRDs they want.

Relates to #5616 (comment)

Signed-off-by: Arko Dasgupta <[email protected]>

* Add seed corpus to guide the fuzzer to generate combinations of gatew… (#5904)

* Add seed corpus to guide the fuzzer to generate combinations of gateway resources.

Signed-off-by: sudipto baral <[email protected]>
Signed-off-by: Arko Dasgupta <[email protected]>

* fix(chart): passing root context to template (#5902)

* chore: passing root context to template

Signed-off-by: hansselvig <[email protected]>
Signed-off-by: Arko Dasgupta <[email protected]>

* chore: improve merge test (#5861)

Signed-off-by: Arko Dasgupta <[email protected]>

* fix:  httproute precedence by considering header/query match type (#5740)

*  fix precedence to use number of exact matches

Signed-off-by: kkk777-7 <[email protected]>
Signed-off-by: Arko Dasgupta <[email protected]>

* ci: make helm-generate should failed as expected (#5908)

Signed-off-by: zirain <[email protected]>
Signed-off-by: Arko Dasgupta <[email protected]>

* docs(rate-limit): minor fix in 'Distinct Users Except Admin' section (#5912)

Signed-off-by: Tomas Rojo <[email protected]>
Signed-off-by: Arko Dasgupta <[email protected]>

* adpot internals/utils/merge.Merge (#5917)

Signed-off-by: Arko Dasgupta <[email protected]>

* Add Bitnami as an Envoy Gateway adopter (#5926)

Signed-off-by: Arko Dasgupta <[email protected]>

* build(deps): bump google/osv-scanner-action from 2.0.1 to 2.0.2 (#5920)

Bumps [google/osv-scanner-action](https://github.com/google/osv-scanner-action) from 2.0.1 to 2.0.2.
- [Release notes](https://github.com/google/osv-scanner-action/releases)
- [Commits](google/osv-scanner-action@6fc7144...e69cc6c)

---
updated-dependencies:
- dependency-name: google/osv-scanner-action
  dependency-version: 2.0.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Signed-off-by: Arko Dasgupta <[email protected]>

* build(deps): bump github/codeql-action from 3.28.16 to 3.28.17 (#5919)

Bumps [github/codeql-action](https://github.com/github/codeql-action) from 3.28.16 to 3.28.17.
- [Release notes](https://github.com/github/codeql-action/releases)
- [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
- [Commits](github/codeql-action@28deaed...60168ef)

---
updated-dependencies:
- dependency-name: github/codeql-action
  dependency-version: 3.28.17
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Signed-off-by: Arko Dasgupta <[email protected]>

* build(deps): bump github.com/valyala/fasthttp from 1.60.0 to 1.61.0 in /examples/preserve-case-backend in the github-com group across 1 directory (#5921)

build(deps): bump github.com/valyala/fasthttp

Bumps the github-com group with 1 update in the /examples/preserve-case-backend directory: [github.com/valyala/fasthttp](https://github.com/valyala/fasthttp).

Updates `github.com/valyala/fasthttp` from 1.60.0 to 1.61.0
- [Release notes](https://github.com/valyala/fasthttp/releases)
- [Commits](valyala/fasthttp@v1.60.0...v1.61.0)

---
updated-dependencies:
- dependency-name: github.com/valyala/fasthttp
  dependency-version: 1.61.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: github-com
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Signed-off-by: Arko Dasgupta <[email protected]>

* docs: fix example for http redirects page (#5830)

* docs: fix example for http redirects page

Signed-off-by: Marcel Czaplinski <[email protected]>

* chore: copy documentation patch for http redirects from v1.3 to latest

Signed-off-by: Marcel Czaplinski <[email protected]>

---------

Signed-off-by: Marcel Czaplinski <[email protected]>
Signed-off-by: Arko Dasgupta <[email protected]>

* docs: Add docs for request buffering (#5910)

* add docs for request buffering

Signed-off-by: mark winter <[email protected]>

* add missing change

Signed-off-by: mark winter <[email protected]>

---------

Signed-off-by: mark winter <[email protected]>
Signed-off-by: Arko Dasgupta <[email protected]>

* feat: support configuring tls for dynamic resolver backend (#5867)

* support configuring tls for dynamic resolver backend

Signed-off-by: Huabing (Robin) Zhao <[email protected]>
Signed-off-by: Arko Dasgupta <[email protected]>

* fix: fix topology injector bug (#5911)

* fix webhook

Signed-off-by: Jukie <[email protected]>

* lint and test fixes

Signed-off-by: Jukie <[email protected]>

---------

Signed-off-by: Jukie <[email protected]>
Signed-off-by: Arko Dasgupta <[email protected]>

* feat: allow merge rate limit rule in BTP (#5915)

* feat: allow merge rate limit rule in BTP

Signed-off-by: zirain <[email protected]>

* fix gen

Signed-off-by: zirain <[email protected]>

---------

Signed-off-by: zirain <[email protected]>
Signed-off-by: Arko Dasgupta <[email protected]>

* docs: install EG via Argo CD (#5824)

* install EG via Argo CD

Signed-off-by: Huabing (Robin) Zhao <[email protected]>
Signed-off-by: Arko Dasgupta <[email protected]>

* chore: clean up BTP status (#5934)

clean up BTP status

Signed-off-by: Huabing (Robin) Zhao <[email protected]>
Signed-off-by: Arko Dasgupta <[email protected]>

* e2e: test for dynamic resolver backend using system ca for TLS (#5932)

e2e test for dynamic resolver backend using system ca for TLS

Signed-off-by: Huabing (Robin) Zhao <[email protected]>
Signed-off-by: Arko Dasgupta <[email protected]>

* feat: implement offline kubernetes controller (#5767)

Signed-off-by: Arko Dasgupta <[email protected]>

* fix: SecurityPolicy reference grant (#5792)

* fix: SecurityPolicy reference grant

Signed-off-by: kkk777-7 <[email protected]>

* add: release note

Signed-off-by: kkk777-7 <[email protected]>

* update: func name

Signed-off-by: kkk777-7 <[email protected]>

* revert func name

Signed-off-by: kkk777-7 <[email protected]>

* update: use processBackendRef to handle route backends

Signed-off-by: kkk777-7 <[email protected]>

* fix: use not pointer type for extAuth backendRef

Signed-off-by: kkk777-7 <[email protected]>

* Add: testcase for ExtAuth

Signed-off-by: kkk777-7 <[email protected]>

* fix: add jwt backendref to backendSecurityPolicyIndexFunc

Signed-off-by: kkk777-7 <[email protected]>

---------

Signed-off-by: kkk777-7 <[email protected]>
Signed-off-by: Arko Dasgupta <[email protected]>

* fix: add validation for header values (#5933)

Signed-off-by: Gavin Lam <[email protected]>
Signed-off-by: Arko Dasgupta <[email protected]>

* fix: Fixed typo in error message. (#5945)

Signed-off-by: Mathias Westby Skoglund <[email protected]>
Co-authored-by: Mathias Westby Skoglund <[email protected]>
Signed-off-by: Arko Dasgupta <[email protected]>

* e2e: disable DynamicResolverBackendTest on IPv6 (#5964)

disable DynamicResolverBackendTest in IPV6

Signed-off-by: Huabing (Robin) Zhao <[email protected]>
Signed-off-by: Arko Dasgupta <[email protected]>

* fix: proxy creation/deletion error handling in GatewayNamespace mode (#5954)

* fix: proxy creation/deletion error handling in GatewayNamespace mode

Signed-off-by: zirain <[email protected]>

* nit

Signed-off-by: zirain <[email protected]>

* nit

Signed-off-by: zirain <[email protected]>

* more nit

Signed-off-by: zirain <[email protected]>

---------

Signed-off-by: zirain <[email protected]>
Signed-off-by: Arko Dasgupta <[email protected]>

* ci: kube-deploy support KUBE_DEPLOY_PROFILE (#5957)

* ci: kube-deploy support helm values configuration file

Signed-off-by: zirain <[email protected]>

* move to test/cofnig

Signed-off-by: zirain <[email protected]>

* fix

Signed-off-by: zirain <[email protected]>

---------

Signed-off-by: zirain <[email protected]>
Signed-off-by: Arko Dasgupta <[email protected]>

* fix: process remaining gatewayClasses after encountering an err (#5953)

fix: process all gatewayClasses after encountering an err

* instead of returning from Reconcile after encountering an err
which processing a `GatewayClass`, `continue` instead
to process all GatewayClasses

Fixes: #5618

Signed-off-by: Arko Dasgupta <[email protected]>

* fix: do not add tls inspector filter to quic listener (#5671)

* fix: enable http3 but panic

Signed-off-by: bitliu <[email protected]>
Signed-off-by: Arko Dasgupta <[email protected]>

* Add seed corpus related to traffic task. (#5947)

* Add seed corpus related to traffic task.

Signed-off-by: sudipto baral <[email protected]>
Signed-off-by: Arko Dasgupta <[email protected]>

* [release/v1.3] release v1.3.3 notes (#5969)

release v1.3.3 notes

Signed-off-by: Guy Daich <[email protected]>
Signed-off-by: Arko Dasgupta <[email protected]>

* e2e: fix PreserveCase flaky (#5966)

* e2e: fix PreserveCase flaky

Signed-off-by: zirain <[email protected]>

* fix

Signed-off-by: zirain <[email protected]>

---------

Signed-off-by: zirain <[email protected]>
Signed-off-by: Arko Dasgupta <[email protected]>

* feat: validate JWT token and use projected token (#5871)

* Add proxyMetadata to xds config and validate JWT

Signed-off-by: Karol Szwaj <[email protected]>

* Add controller namespace to infra

Signed-off-by: Karol Szwaj <[email protected]>

* Add Metadata envoy bootstrap struct

Signed-off-by: Karol Szwaj <[email protected]>

* Add release note

Signed-off-by: Karol Szwaj <[email protected]>

* fix lint

Signed-off-by: Karol Szwaj <[email protected]>

* fix doc

Signed-off-by: Karol Szwaj <[email protected]>

* use projected service account tokens with eg audience

Signed-off-by: Karol Szwaj <[email protected]>

* lint code

Signed-off-by: Karol Szwaj <[email protected]>

* make gen

Signed-off-by: Karol Szwaj <[email protected]>

* make gen

Signed-off-by: Karol Szwaj <[email protected]>

* Revert "Add controller namespace to infra"

This reverts commit b2fa2ca.

Signed-off-by: Karol Szwaj <[email protected]>

* fetch the node id and initial metadata from first msg

Signed-off-by: Karol Szwaj <[email protected]>

* update codegen

Signed-off-by: Karol Szwaj <[email protected]>

* verify service account

Signed-off-by: Huabing (Robin) Zhao <[email protected]>

* validate only sa

Signed-off-by: Karol Szwaj <[email protected]>

* add local hash name func

Signed-off-by: Karol Szwaj <[email protected]>

* Verify pod name for authz

This reverts commit b0748a0.

Signed-off-by: Huabing (Robin) Zhao <[email protected]>

* lint code

Signed-off-by: Karol Szwaj <[email protected]>

---------

Signed-off-by: Karol Szwaj <[email protected]>
Signed-off-by: Huabing (Robin) Zhao <[email protected]>
Co-authored-by: Huabing (Robin) Zhao <[email protected]>
Signed-off-by: Arko Dasgupta <[email protected]>

* feat: add controller namespace field to infrastructure render (#5937)

* Add controller namespace to infra

Signed-off-by: Karol Szwaj <[email protected]>

* make gen

Signed-off-by: Karol Szwaj <[email protected]>

* rebase code and add controller namespace helper

Signed-off-by: Karol Szwaj <[email protected]>

* rename to envoy namespace

Signed-off-by: Karol Szwaj <[email protected]>

* rename to ControllerNamespace

Signed-off-by: Karol Szwaj <[email protected]>

---------

Signed-off-by: Karol Szwaj <[email protected]>
Signed-off-by: Arko Dasgupta <[email protected]>

* e2e: GatewayNamespace mode (#5961)

* enable gateway-namespace-mode e2e

Signed-off-by: zirain <[email protected]>

* fix ProxyMetrics

Signed-off-by: zirain <[email protected]>

* fix and skip some tests

Signed-off-by: zirain <[email protected]>

* enable MetricCompressorTest

Signed-off-by: zirain <[email protected]>

* fix upgrade test

Signed-off-by: zirain <[email protected]>
Signed-off-by: Arko Dasgupta <[email protected]>

* helm: support standard channel (#5958)

* support standard channel

Signed-off-by: Huabing (Robin) Zhao <[email protected]>

* add comment

Signed-off-by: Huabing (Robin) Zhao <[email protected]>

---------

Signed-off-by: Huabing (Robin) Zhao <[email protected]>
Signed-off-by: Arko Dasgupta <[email protected]>

* e2e: bump upgrade test version to v1.3.2 (#5976)

e2e: bump upgrade test version

Signed-off-by: zirain <[email protected]>
Signed-off-by: Arko Dasgupta <[email protected]>

* fix: add validation for duplicated API keys (#5955)

* reject duplicated API keys
* enhance api-key-auth e2e test to cover duplicated client IDs

Signed-off-by: Gavin Lam <[email protected]>
Signed-off-by: Arko Dasgupta <[email protected]>

* [release/v1.3] update site to use v1.3.3 (#5980)

update site to use v1.3.3

Signed-off-by: Guy Daich <[email protected]>
Signed-off-by: Arko Dasgupta <[email protected]>

* docs: dynamic resolver backend (#5935)

* docs for dynamic resolver backend

Signed-off-by: Huabing (Robin) Zhao <[email protected]>

* update docs

Signed-off-by: Huabing (Robin) Zhao <[email protected]>

* update docs

Signed-off-by: Huabing (Robin) Zhao <[email protected]>

* delete docs

Signed-off-by: Huabing (Robin) Zhao <[email protected]>

---------

Signed-off-by: Huabing (Robin) Zhao <[email protected]>
Signed-off-by: Arko Dasgupta <[email protected]>

* Fuzzing: Fail on xds translation error (#5986)

Fail on xds translation error

Signed-off-by: sudipto baral <[email protected]>
Signed-off-by: Arko Dasgupta <[email protected]>

* fix btp merge not working when there's multi parent refs on router (#5967)

* fix btp merge not working when there's multi parent refs on router

Signed-off-by: zirain <[email protected]>

* address comment

Signed-off-by: zirain <[email protected]>

* messge

Signed-off-by: zirain <[email protected]>

---------

Signed-off-by: zirain <[email protected]>
Signed-off-by: Arko Dasgupta <[email protected]>

* e2e: fix GRPCExtAuth flaky (#5987)

Signed-off-by: zirain <[email protected]>
Signed-off-by: Arko Dasgupta <[email protected]>

* chore: add coverpkg for coverage test (#5991)

add coverpkg for coverage test

Signed-off-by: shawnh2 <[email protected]>
Signed-off-by: Arko Dasgupta <[email protected]>

* ci: enable conformance test for GatewayNamespaceMode (#5992)

Signed-off-by: zirain <[email protected]>
Signed-off-by: Arko Dasgupta <[email protected]>

* e2e: add CollectAndDump for EGUpgrade test (#5998)

* e2e: only run collect and dump when failed

Signed-off-by: zirain <[email protected]>

* dump when EGUpgrade failed

Signed-off-by: zirain <[email protected]>

* nit

Signed-off-by: zirain <[email protected]>

---------

Signed-off-by: zirain <[email protected]>
Signed-off-by: Arko Dasgupta <[email protected]>

* e2e: add test for BTP timeout (#5994)

Signed-off-by: zirain <[email protected]>
Signed-off-by: Arko Dasgupta <[email protected]>

* Remoe check for accesslog formatter (#5985)

* Remoe check for accesslog formatter

Signed-off-by: zirain <[email protected]>

* gen

Signed-off-by: zirain <[email protected]>

* lint

Signed-off-by: zirain <[email protected]>

---------

Signed-off-by: zirain <[email protected]>
Signed-off-by: Arko Dasgupta <[email protected]>

* e2e: fix GRPCExtAuth/http_route_with_ext_auth_authentication (#6001)

Signed-off-by: zirain <[email protected]>
Signed-off-by: Arko Dasgupta <[email protected]>

* chore: update dependabot (#6007)

Signed-off-by: zirain <[email protected]>
Signed-off-by: Arko Dasgupta <[email protected]>

* e2e: update CORS test (#6011)

Signed-off-by: zirain <[email protected]>
Signed-off-by: Arko Dasgupta <[email protected]>

* chore: add multiple gateways testdata for GatewayNamespace mode (#5972)

* chore: add gatewaynamespacemode multiple gateways testdata

Signed-off-by: Karol Szwaj <[email protected]>

* fix lint

Signed-off-by: Karol Szwaj <[email protected]>

* Add multiple resources to infra test

Signed-off-by: Karol Szwaj <[email protected]>

* Review update

Signed-off-by: Karol Szwaj <[email protected]>

---------

Signed-off-by: Karol Szwaj <[email protected]>
Signed-off-by: Arko Dasgupta <[email protected]>

* feat: adds support for extension server in standalone mode (#5984)

Signed-off-by: Takeshi Yoneda <[email protected]>
Signed-off-by: Arko Dasgupta <[email protected]>

* docs: Add new conceptual pages for intro concepts (#5981)

* add new conceptual pages for intro concepts

Signed-off-by: melsal13 <[email protected]>

* renamed envoy-proxy.md to proxy.md

Signed-off-by: melsal13 <[email protected]>

* reorganized sidebar

Signed-off-by: melsal13 <[email protected]>

* fixed formatting issue

Signed-off-by: melsal13 <[email protected]>

* fixed linker errors

Signed-off-by: melsal13 <[email protected]>

* fixed link errors in v1.3

Signed-off-by: melsal13 <[email protected]>

* fixed typo & removed related resources links in gateway-api-extensions index file

Signed-off-by: melsal13 <[email protected]>

---------

Signed-off-by: melsal13 <[email protected]>
Signed-off-by: Arko Dasgupta <[email protected]>

* docs: update open graph image (#6022)

update the og:image to a new image in style with the current website styling

Signed-off-by: Erica Hughberg <[email protected]>
Signed-off-by: Arko Dasgupta <[email protected]>

* temporarily disable the backend tls test (#6030)

Signed-off-by: Huabing (Robin) Zhao <[email protected]>
Signed-off-by: Arko Dasgupta <[email protected]>

* Fix lint (#6031)

* temporarily disable the backend tls test

Signed-off-by: Huabing (Robin) Zhao <[email protected]>

* fix lint

Signed-off-by: Huabing (Robin) Zhao <[email protected]>

---------

Signed-off-by: Huabing (Robin) Zhao <[email protected]>
Signed-off-by: Arko Dasgupta <[email protected]>

* fix: allows offline k8s controller to use non default CRDs (#6020)

* fix: allows offline k8s controller to use non default CRDs

Signed-off-by: Takeshi Yoneda <[email protected]>

* workaround

Signed-off-by: Takeshi Yoneda <[email protected]>

---------

Signed-off-by: Takeshi Yoneda <[email protected]>
Co-authored-by: Arko Dasgupta <[email protected]>
Co-authored-by: Huabing (Robin) Zhao <[email protected]>
Signed-off-by: Arko Dasgupta <[email protected]>

* e2e: refactor ratelmit test (#5997)

Signed-off-by: zirain <[email protected]>
Signed-off-by: Arko Dasgupta <[email protected]>

* moved shared under rules (#5944)

* moved shared under rules

Signed-off-by: Ryan Hristovski <[email protected]>

* Fix some logic

Signed-off-by: Ryan Hristovski <[email protected]>

* fix rule logic

Signed-off-by: Ryan Hristovski <[email protected]>

* fix some tests

Signed-off-by: Ryan Hristovski <[email protected]>

* fix tests

Signed-off-by: Ryan Hristovski <[email protected]>

* Fix descriptor hierarchy

Signed-off-by: Ryan Hristovski <[email protected]>

* comments

Signed-off-by: Ryan Hristovski <[email protected]>

* fmt

Signed-off-by: Ryan Hristovski <[email protected]>
Co-authored-by: Arko Dasgupta <[email protected]>
Co-authored-by: Huabing (Robin) Zhao <[email protected]>
Signed-off-by: Arko Dasgupta <[email protected]>

* fix make gen

Signed-off-by: Arko Dasgupta <[email protected]>

* make gen round 2

Signed-off-by: Arko Dasgupta <[email protected]>

---------

Signed-off-by: shawnh2 <[email protected]>
Signed-off-by: Arko Dasgupta <[email protected]>
Signed-off-by: Karol Szwaj <[email protected]>
Signed-off-by: Matthieu MOREL <[email protected]>
Signed-off-by: Huabing (Robin) Zhao <[email protected]>
Signed-off-by: sudipto baral <[email protected]>
Signed-off-by: hansselvig <[email protected]>
Signed-off-by: kkk777-7 <[email protected]>
Signed-off-by: zirain <[email protected]>
Signed-off-by: Tomas Rojo <[email protected]>
Signed-off-by: dependabot[bot] <[email protected]>
Signed-off-by: Marcel Czaplinski <[email protected]>
Signed-off-by: mark winter <[email protected]>
Signed-off-by: Jukie <[email protected]>
Signed-off-by: Gavin Lam <[email protected]>
Signed-off-by: Mathias Westby Skoglund <[email protected]>
Signed-off-by: bitliu <[email protected]>
Signed-off-by: Guy Daich <[email protected]>
Signed-off-by: Takeshi Yoneda <[email protected]>
Signed-off-by: melsal13 <[email protected]>
Signed-off-by: Erica Hughberg <[email protected]>
Signed-off-by: Ryan Hristovski <[email protected]>
Co-authored-by: sh2 <[email protected]>
Co-authored-by: Karol Szwaj <[email protected]>
Co-authored-by: Matthieu MOREL <[email protected]>
Co-authored-by: Huabing (Robin) Zhao <[email protected]>
Co-authored-by: Sudipto Baral <[email protected]>
Co-authored-by: hansselvig <[email protected]>
Co-authored-by: zirain <[email protected]>
Co-authored-by: Kota Kimura <[email protected]>
Co-authored-by: tomas-rojo <[email protected]>
Co-authored-by: Carlos Rodríguez Hernández <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Marcel Czaplinski <[email protected]>
Co-authored-by: Mark Winter <[email protected]>
Co-authored-by: Isaac <[email protected]>
Co-authored-by: Gavin Lam <[email protected]>
Co-authored-by: Mathias Westby Skoglund <[email protected]>
Co-authored-by: Mathias Westby Skoglund <[email protected]>
Co-authored-by: Xunzhuo <[email protected]>
Co-authored-by: Guy Daich <[email protected]>
Co-authored-by: Takeshi Yoneda <[email protected]>
Co-authored-by: Melissa Salazar <[email protected]>
Co-authored-by: Erica Hughberg <[email protected]>
Co-authored-by: Ryan Hristovski <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants