forked from envoyproxy/gateway
-
Notifications
You must be signed in to change notification settings - Fork 0
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
[pull] main from envoyproxy:main #27
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## main #27 +/- ##
==========================================
- Coverage 64.87% 64.43% -0.45%
==========================================
Files 84 112 +28
Lines 12014 15922 +3908
==========================================
+ Hits 7794 10259 +2465
- Misses 3730 5014 +1284
- Partials 490 649 +159 ☔ View full report in Codecov by Sentry. |
* 🐛 Fix: follow-up of #1852 Signed-off-by: bitliu <[email protected]> * 🎉 Update Signed-off-by: bitliu <[email protected]> --------- Signed-off-by: bitliu <[email protected]>
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* chore: fix unicode error Signed-off-by: zirain <[email protected]> * update Signed-off-by: zirain <[email protected]> * update Signed-off-by: zirain <[email protected]> --------- Signed-off-by: zirain <[email protected]>
add continue to the not found filters in grpc routes Signed-off-by: sh2 <[email protected]>
Bumps [google.golang.org/grpc](https://github.com/grpc/grpc-go) from 1.57.0 to 1.58.0. - [Release notes](https://github.com/grpc/grpc-go/releases) - [Commits](grpc/grpc-go@v1.57.0...v1.58.0) --- updated-dependencies: - dependency-name: google.golang.org/grpc dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: zirain <[email protected]> Co-authored-by: Arko Dasgupta <[email protected]>
…ats (#1855) * metrics(virtualHosts): add support for opt-in virtual host metrics stats Signed-off-by: Pratyush Singhal <[email protected]> * refactor: use prefix match instead of exact match in virtual cluster configuration Signed-off-by: Pratyush Singhal <[email protected]> * fix: update the test output for prefix match Signed-off-by: Pratyush Singhal <[email protected]> --------- Signed-off-by: Pratyush Singhal <[email protected]>
…1534) * Add/remove finalizers for envoy proxies Signed-off-by: Karol Szwaj <[email protected]> * Refactor finalizers funcs Signed-off-by: Karol Szwaj <[email protected]> * add finalizer check to the tests Signed-off-by: Karol Szwaj <[email protected]> * Add rbac role and process finalizers Signed-off-by: Karol Szwaj <[email protected]> * improve logging Signed-off-by: Karol Szwaj <[email protected]> * Update test case remove finalizer Signed-off-by: Karol Szwaj <[email protected]> * Rework processing ParamsRef Signed-off-by: Karol Szwaj <[email protected]> * Remove roles.yaml Signed-off-by: Karol Szwaj <[email protected]> * Add patch to rbac.tpl Signed-off-by: Karol Szwaj <[email protected]> * Add integration test for envoyproxy finalizers Signed-off-by: Karol Szwaj <[email protected]> * Restore envoyproxy status checks Signed-off-by: Karol Szwaj <[email protected]> --------- Signed-off-by: Karol Szwaj <[email protected]>
* add namespaceSelectors watch mode for Kubernetes provider Add namespaceSelectors watch mode for Kubernetes provider. Users will need to specify `EnvoyGateway.Provider.Type` and precisely one of `EnvoyGateway.Provider.Kubernetes.Wach.Namespaces` and `EnvoyGateway.Provider.Kubernetes.Wach.NamespaceSelectors` to set the KuberNtes wach mode. The namespaceSelectors doesn't change the namespace informers watch. The informer still watches all namespaces. The events which have Objects that are not under namesapces with the labels set by `NamespaceSelectors` are filtered out. Signed-off-by: Den Tsou <[email protected]> * fix: fix typos Signed-off-by: Den Tsou <[email protected]> * fix: fix a test and fix a bug that pointer wasn't checked Signed-off-by: Den Tsou <[email protected]> * chore: remove an unneeded comment Signed-off-by: Den Tsou <[email protected]> * chore: replace string type with KubernetesWatchModeType Signed-off-by: Den Tsou <[email protected]> * fix: use right values for KubernetesWatchModeType Signed-off-by: Den Tsou <[email protected]> * chore: run make generate Signed-off-by: Den Tsou <[email protected]> * wip: update to check all object's namespaces returned by client * This is a protytpe. Refactoring is required to make the code more readable because the code is getting more complex after adding this logic * Update to check all labels of namespaces of objects returned by client * Fix a bug that wrong type was checked * Don't apply predicate to filter out the event related to GatewayClass because GatewayClass is cluster scoped object * Simple test to check if only certain number of gateway is returned. More test logic is indeed needed to be added Signed-off-by: Den Tsou <[email protected]> * refactor: move namespace labels to struct field Signed-off-by: Den Tsou <[email protected]> * resolve the issue casued by resolving conflicts Signed-off-by: Den Tsou <[email protected]> * chore: add test for gateway Signed-off-by: Den Tsou <[email protected]> * chore: clean up some todo and add a comment Signed-off-by: Den Tsou <[email protected]> * chore: address PR comments * Update hasMatchingNamespaceLabels signature because labels is part of the struct field now * Remove the logic to check namespace of certificate ref because it is not necessary * Refactor the checkNamespaceLabels with new interface, so the code is more readable now Signed-off-by: Den Tsou <[email protected]> * fix: fix typos Signed-off-by: Den Tsou <[email protected]> * fix: fix the lint errors Signed-off-by: Den Tsou <[email protected]> * refactor: revert back to get namespace from caller Signed-off-by: Den Tsou <[email protected]> * test: add a integration test for the change Signed-off-by: Den Tsou <[email protected]> --------- Signed-off-by: Den Tsou <[email protected]> Signed-off-by: Den <[email protected]> Co-authored-by: Xunzhuo <[email protected]>
* feat: add experimental conformance support Signed-off-by: bitliu <[email protected]> * 👽 Update Signed-off-by: bitliu <[email protected]> * 🎨 Update Signed-off-by: bitliu <[email protected]> * 🎨 Update Signed-off-by: bitliu <[email protected]> * 🔀 Update Signed-off-by: bitliu <[email protected]> * 🎨 Update Signed-off-by: bitliu <[email protected]> * 🎨 Update Signed-off-by: bitliu <[email protected]> * 🎨 Update Signed-off-by: bitliu <[email protected]> * 🎨 Update Signed-off-by: bitliu <[email protected]> * 🎨 Update Signed-off-by: bitliu <[email protected]> * 🎨 Update Signed-off-by: bitliu <[email protected]> * 🎨 Update Signed-off-by: bitliu <[email protected]> * 🎨 Update Signed-off-by: bitliu <[email protected]> * 🎨 Update Signed-off-by: bitliu <[email protected]> * 🎨 Update Signed-off-by: bitliu <[email protected]> * 🎨 Update Signed-off-by: bitliu <[email protected]> * 🎨 Update Signed-off-by: bitliu <[email protected]> * 🎨 Update Signed-off-by: bitliu <[email protected]> * 🎨 Update Signed-off-by: bitliu <[email protected]> * 🎨 Update Signed-off-by: bitliu <[email protected]> * 🎨 Update Signed-off-by: bitliu <[email protected]> * 🎨 Update Signed-off-by: bitliu <[email protected]> * 🎨 Update Signed-off-by: bitliu <[email protected]> * 🎨 Update Signed-off-by: bitliu <[email protected]> * update Signed-off-by: bitliu <[email protected]> * 🎨 Update Signed-off-by: bitliu <[email protected]> * 🧪 Test Signed-off-by: bitliu <[email protected]> * 🎨 Final update Signed-off-by: bitliu <[email protected]> * 🎨 Update Signed-off-by: bitliu <[email protected]> * 🎨 Update Signed-off-by: bitliu <[email protected]> * 🎨 Update Signed-off-by: bitliu <[email protected]> * 🎨 Update Signed-off-by: bitliu <[email protected]> * 🎨 Update Signed-off-by: bitliu <[email protected]> --------- Signed-off-by: bitliu <[email protected]>
Signed-off-by: Arko Dasgupta <[email protected]>
group k8s gomod depencies together inspired from envoyproxy/go-control-plane#774 which reduces the number of dependabot PRs Signed-off-by: Arko Dasgupta <[email protected]>
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bumps [docker/login-action](https://github.com/docker/login-action) from 2 to 3. - [Release notes](https://github.com/docker/login-action/releases) - [Commits](docker/login-action@v2...v3) --- updated-dependencies: - dependency-name: docker/login-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
#1884) Bumps [sigs.k8s.io/controller-runtime](https://github.com/kubernetes-sigs/controller-runtime) from 0.16.1 to 0.16.2. - [Release notes](https://github.com/kubernetes-sigs/controller-runtime/releases) - [Changelog](https://github.com/kubernetes-sigs/controller-runtime/blob/main/RELEASE.md) - [Commits](kubernetes-sigs/controller-runtime@v0.16.1...v0.16.2) --- updated-dependencies: - dependency-name: sigs.k8s.io/controller-runtime 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>
#1883) Bumps [github.com/evanphx/json-patch/v5](https://github.com/evanphx/json-patch) from 5.6.0 to 5.7.0. - [Release notes](https://github.com/evanphx/json-patch/releases) - [Commits](evanphx/json-patch@v5.6.0...v5.7.0) --- updated-dependencies: - dependency-name: github.com/evanphx/json-patch/v5 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* feat: support stats match for gateway Signed-off-by: zhaonan <[email protected]> * fix coverage test Signed-off-by: zhaonan <[email protected]> * fix gen check Signed-off-by: zhaonan <[email protected]> * fix code Signed-off-by: zhaonan <[email protected]> * fix some comments Signed-off-by: zhaonan <[email protected]> * fix code and update api Signed-off-by: zhaonan <[email protected]> * fix code Signed-off-by: zhaonan <[email protected]> * fix code Signed-off-by: zhaonan <[email protected]> --------- Signed-off-by: zhaonan <[email protected]> Co-authored-by: zirain <[email protected]>
* fix tls with jwt authn usecase Signed-off-by: tanujd11 <[email protected]> * added test case Signed-off-by: tanujd11 <[email protected]> * unicode test error Signed-off-by: tanujd11 <[email protected]> * remove skip lint Signed-off-by: tanujd11 <[email protected]> --------- Signed-off-by: tanujd11 <[email protected]> Co-authored-by: zirain <[email protected]>
* upgrade golangci-lint Signed-off-by: zirain <[email protected]> * fix "Implicit memory aliasing in for loop" Signed-off-by: zirain <[email protected]> * update Signed-off-by: zirain <[email protected]> --------- Signed-off-by: zirain <[email protected]>
Signed-off-by: Arko Dasgupta <[email protected]>
* chore: bump gateway api to v0.8.1 https://github.com/kubernetes-sigs/gateway-api/releases/tag/v0.8.1 Signed-off-by: Arko Dasgupta <[email protected]> * make manifests Signed-off-by: Arko Dasgupta <[email protected]> * skip HTTPRouteRequestMultipleMirrors Signed-off-by: Arko Dasgupta <[email protected]>
* initial code change draft coding Signed-off-by: Ronnie Personal <[email protected]> * update test cases Signed-off-by: Ronnie Personal <[email protected]> * update mirror to mirrors Signed-off-by: Ronnie Personal <[email protected]> * update test file Signed-off-by: Ronnie Personal <[email protected]> * fix conformance test Signed-off-by: Ronnie Personal <[email protected]> * update gatewayapi testdata Signed-off-by: Ronnie Personal <[email protected]> * address review comments Signed-off-by: Ronnie-personal <[email protected]> * update mirror to mirrors Signed-off-by: Ronnie-personal <[email protected]> * Mirror to Mirrors Signed-off-by: Ronnie-personal <[email protected]> * add conformance test back Signed-off-by: Ronnie-personal <[email protected]> --------- Signed-off-by: Ronnie Personal <[email protected]> Signed-off-by: Ronnie-personal <[email protected]> Co-authored-by: zirain <[email protected]>
Bumps [go.uber.org/zap](https://github.com/uber-go/zap) from 1.25.0 to 1.26.0. - [Release notes](https://github.com/uber-go/zap/releases) - [Changelog](https://github.com/uber-go/zap/blob/master/CHANGELOG.md) - [Commits](uber-go/zap@v1.25.0...v1.26.0) --- updated-dependencies: - dependency-name: go.uber.org/zap dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bumps [google.golang.org/grpc](https://github.com/grpc/grpc-go) from 1.58.0 to 1.58.1. - [Release notes](https://github.com/grpc/grpc-go/releases) - [Commits](grpc/grpc-go@v1.58.0...v1.58.1) --- updated-dependencies: - dependency-name: google.golang.org/grpc 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>
Bumps the k8s-io group with 4 updates: [k8s.io/api](https://github.com/kubernetes/api), [k8s.io/apiextensions-apiserver](https://github.com/kubernetes/apiextensions-apiserver), [k8s.io/cli-runtime](https://github.com/kubernetes/cli-runtime) and [k8s.io/kubectl](https://github.com/kubernetes/kubectl). Updates `k8s.io/api` from 0.28.1 to 0.28.2 - [Commits](kubernetes/api@v0.28.1...v0.28.2) Updates `k8s.io/apiextensions-apiserver` from 0.28.1 to 0.28.2 - [Release notes](https://github.com/kubernetes/apiextensions-apiserver/releases) - [Commits](kubernetes/apiextensions-apiserver@v0.28.1...v0.28.2) Updates `k8s.io/cli-runtime` from 0.28.1 to 0.28.2 - [Commits](kubernetes/cli-runtime@v0.28.1...v0.28.2) Updates `k8s.io/kubectl` from 0.28.1 to 0.28.2 - [Commits](kubernetes/kubectl@v0.28.1...v0.28.2) --- updated-dependencies: - dependency-name: k8s.io/api dependency-type: direct:production update-type: version-update:semver-patch dependency-group: k8s-io - dependency-name: k8s.io/apiextensions-apiserver dependency-type: direct:production update-type: version-update:semver-patch dependency-group: k8s-io - dependency-name: k8s.io/cli-runtime dependency-type: direct:production update-type: version-update:semver-patch dependency-group: k8s-io - dependency-name: k8s.io/kubectl dependency-type: direct:production update-type: version-update:semver-patch dependency-group: k8s-io ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
…ld (#1895) Bumps [sphinx](https://github.com/sphinx-doc/sphinx) from 7.2.5 to 7.2.6. - [Release notes](https://github.com/sphinx-doc/sphinx/releases) - [Changelog](https://github.com/sphinx-doc/sphinx/blob/master/CHANGES.rst) - [Commits](sphinx-doc/sphinx@v7.2.5...v7.2.6) --- updated-dependencies: - dependency-name: sphinx 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>
#1893) * feat: add field allocateLoadBalancerNodePorts This commit adds a new field allocateLoadBalancerNodePorts to KubernetesServiceSpec. But this field can only be set when the service type is 'LoadBalancer' Signed-off-by: Den Tsou <[email protected]> * fix: use the function from library Signed-off-by: Den Tsou <[email protected]> * refactor: merge validateServiceType and validateServiceAllocateLoadBalancerNodePorts Signed-off-by: Den Tsou <[email protected]> * refactor: use builtin library to get pointer instead Signed-off-by: Den Tsou <[email protected]> --------- Signed-off-by: Den Tsou <[email protected]>
* user doc for oidc Signed-off-by: huabing zhao <[email protected]> * Update site/content/en/latest/user/oidc.md Co-authored-by: sh2 <[email protected]> Signed-off-by: Huabing Zhao <[email protected]> * Update site/content/en/latest/user/oidc.md Co-authored-by: sh2 <[email protected]> Signed-off-by: Huabing Zhao <[email protected]> * Update site/content/en/latest/user/oidc.md Co-authored-by: sh2 <[email protected]> Signed-off-by: Huabing Zhao <[email protected]> --------- Signed-off-by: huabing zhao <[email protected]> Signed-off-by: Huabing Zhao <[email protected]> Co-authored-by: sh2 <[email protected]>
Bumps [actions/deploy-pages](https://github.com/actions/deploy-pages) from 2.0.4 to 2.0.5. - [Release notes](https://github.com/actions/deploy-pages/releases) - [Commits](actions/deploy-pages@v2.0.4...v2.0.5) --- updated-dependencies: - dependency-name: actions/deploy-pages 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>
…2264) Bumps [envoyproxy/toolshed](https://github.com/envoyproxy/toolshed) from actions-v0.1.65 to 0.1.82. This release includes the previously tagged commit. - [Release notes](https://github.com/envoyproxy/toolshed/releases) - [Commits](envoyproxy/toolshed@actions-v0.1.65...actions-v0.1.82) --- updated-dependencies: - dependency-name: envoyproxy/toolshed dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Xunzhuo <[email protected]>
* docs: add ClientTrafficPolicy user guide Signed-off-by: Karol Szwaj <[email protected]> * add keepalive example Signed-off-by: Karol Szwaj <[email protected]> * btp reference Signed-off-by: Karol Szwaj <[email protected]> * review comments Signed-off-by: Karol Szwaj <[email protected]> * reorg Signed-off-by: Karol Szwaj <[email protected]> * add ctp keepalive example Signed-off-by: Karol Szwaj <[email protected]> * md lint Signed-off-by: Karol Szwaj <[email protected]> * add proxy protocol example Signed-off-by: Karol Szwaj <[email protected]> * update docs Signed-off-by: Karol Szwaj <[email protected]> --------- Signed-off-by: Karol Szwaj <[email protected]>
fix retry logic for dns exchange Signed-off-by: sh2 <[email protected]>
…ationFilter and RateLimitFilter CRD resource. (#2198) * doc: update jwt example Signed-off-by: zhaonan <[email protected]> * doc: update desigin doc for ratelimit Signed-off-by: zhaonan <[email protected]> * doc: update rate-limit in backend-traffic-policy Signed-off-by: zhaonan <[email protected]> * update v0.6.0 doc Signed-off-by: zhaonan <[email protected]> --------- Signed-off-by: zhaonan <[email protected]> Co-authored-by: Xunzhuo <[email protected]>
* initial implementation of supporting FQDN address type for EndpointSlice Signed-off-by: sh2 <[email protected]> * add support to endpointslice fqdn address type with simple approach Signed-off-by: sh2 <[email protected]> * fix ci unit test Signed-off-by: sh2 <[email protected]> * resolve comments Signed-off-by: sh2 <[email protected]> * add addrtype check and refactor condition message Signed-off-by: sh2 <[email protected]> --------- Signed-off-by: sh2 <[email protected]> Co-authored-by: zirain <[email protected]>
Signed-off-by: bitliu <[email protected]>
* feat: add HorizontalPodAutoscaler support for EnvoyProxy API Signed-off-by: Ardika Bagus <[email protected]> * chore: change maxReplicas with pointer Signed-off-by: Ardika Bagus <[email protected]> * chore: add celvalidation for envoyHpa Signed-off-by: Ardika Bagus <[email protected]> * chore: move hpa cleanup into deleteHPA Signed-off-by: Ardika Bagus <[email protected]> --------- Signed-off-by: Ardika Bagus <[email protected]> Co-authored-by: Xunzhuo <[email protected]>
* Add a release tab in docs Signed-off-by: lemonlinger <[email protected]> * Add release notes docs Signed-off-by: lemonlinger <[email protected]> --------- Signed-off-by: lemonlinger <[email protected]> Co-authored-by: Xunzhuo <[email protected]>
fix(docs): use / as baseURL domain Signed-off-by: bitliu <[email protected]>
* docs: add user guide to customize envoyproxy hpa Signed-off-by: Ardika Bagus <[email protected]> * chore: fix format Signed-off-by: Ardika Bagus <[email protected]> --------- Signed-off-by: Ardika Bagus <[email protected]>
Signed-off-by: bitliu <[email protected]>
Signed-off-by: bitliu <[email protected]>
Signed-off-by: zirain <[email protected]>
* feat: welcome comment and auto cc gateway reviewers Signed-off-by: bitliu <[email protected]> * update Signed-off-by: bitliu <[email protected]> * fix lint Signed-off-by: bitliu <[email protected]> --------- Signed-off-by: bitliu <[email protected]>
Bumps [actions/stale](https://github.com/actions/stale) from 8 to 9. - [Release notes](https://github.com/actions/stale/releases) - [Changelog](https://github.com/actions/stale/blob/main/CHANGELOG.md) - [Commits](actions/stale@v8...v9) --- updated-dependencies: - dependency-name: actions/stale dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bumps [actions/deploy-pages](https://github.com/actions/deploy-pages) from 2.0.5 to 3.0.1. - [Release notes](https://github.com/actions/deploy-pages/releases) - [Commits](actions/deploy-pages@v2.0.5...v3.0.1) --- updated-dependencies: - dependency-name: actions/deploy-pages dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Xunzhuo <[email protected]>
Bumps [nwtgck/actions-netlify](https://github.com/nwtgck/actions-netlify) from 2.0 to 2.1. - [Release notes](https://github.com/nwtgck/actions-netlify/releases) - [Changelog](https://github.com/nwtgck/actions-netlify/blob/develop/CHANGELOG.md) - [Commits](nwtgck/actions-netlify@v2.0...v2.1) --- updated-dependencies: - dependency-name: nwtgck/actions-netlify dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Xunzhuo <[email protected]>
…2290) Bumps [envoyproxy/toolshed](https://github.com/envoyproxy/toolshed) from actions-v0.1.82 to 0.2.13. This release includes the previously tagged commit. - [Release notes](https://github.com/envoyproxy/toolshed/releases) - [Commits](envoyproxy/toolshed@actions-v0.1.82...actions-v0.2.13) --- updated-dependencies: - dependency-name: envoyproxy/toolshed dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Xunzhuo <[email protected]>
Signed-off-by: bitliu <[email protected]>
* forward jwt tokens after verification Signed-off-by: huabing zhao <[email protected]> * fix test Signed-off-by: huabing zhao <[email protected]> * fix test Signed-off-by: huabing zhao <[email protected]> --------- Signed-off-by: huabing zhao <[email protected]>
* added hostNetwork to the podSpec Signed-off-by: tanujd11 <[email protected]> * make gen-check Signed-off-by: tanujd11 <[email protected]> --------- Signed-off-by: tanujd11 <[email protected]> Co-authored-by: Xunzhuo <[email protected]>
add AllowCredentials knob to CORS setting Signed-off-by: huabing zhao <[email protected]>
Signed-off-by: bitliu <[email protected]>
* Upgrade use of generic ptr to cleaner codebase. Signed-off-by: zzjin <[email protected]> * Update golanglint-ci for dep `k8s.io/utils/pointer` Signed-off-by: zzjin <[email protected]> --------- Signed-off-by: zzjin <[email protected]>
…2318) Bumps [envoyproxy/toolshed](https://github.com/envoyproxy/toolshed) from actions-v0.2.13 to 0.2.17. This release includes the previously tagged commit. - [Release notes](https://github.com/envoyproxy/toolshed/releases) - [Commits](envoyproxy/toolshed@actions-v0.2.13...actions-v0.2.17) --- updated-dependencies: - dependency-name: envoyproxy/toolshed dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bumps [google.golang.org/grpc](https://github.com/grpc/grpc-go) from 1.59.0 to 1.60.0. - [Release notes](https://github.com/grpc/grpc-go/releases) - [Commits](grpc/grpc-go@v1.59.0...v1.60.0) --- updated-dependencies: - dependency-name: google.golang.org/grpc dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* implement gateway.spec.infrastructure Signed-off-by: zirain <[email protected]> * remove Signed-off-by: zirain <[email protected]> * lint Signed-off-by: zirain <[email protected]> * gen-check Signed-off-by: zirain <[email protected]> * lint Signed-off-by: zirain <[email protected]> * update override Signed-off-by: zirain <[email protected]> --------- Signed-off-by: zirain <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
See Commits and Changes for more details.
Created by pull[bot]
Can you help keep this open source service alive? 💖 Please sponsor : )