Skip to content

Commit ed0ebb6

Browse files
authored
Merge branch 'kubernetes-sigs:main' into gep-2891
2 parents 1120d38 + 824b6b0 commit ed0ebb6

File tree

457 files changed

+44902
-9504
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

457 files changed

+44902
-9504
lines changed

.golangci.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,5 +69,12 @@ issues:
6969
- linters:
7070
- testifylint
7171
text: "require must only be used in the goroutine running the test function"
72+
- linters:
73+
- testifylint
74+
text: "contains assertions that must only be used in the goroutine running the test function"
75+
# It is valid usage to wrap errors without using %w to not make them part of
76+
# the API contract.
77+
- linters: ["errorlint"]
78+
text: "non-wrapping format verb for fmt.Errorf. Use `%w` to format errors"
7279
exclude:
7380
- Using the variable on range scope `tc` in function literal

CHANGELOG.md

Lines changed: 1 addition & 2464 deletions
Large diffs are not rendered by default.

CHANGELOG/0.x-CHANGELOG.md

Lines changed: 2112 additions & 0 deletions
Large diffs are not rendered by default.

CHANGELOG/1.0-CHANGELOG.md

Lines changed: 358 additions & 0 deletions
Large diffs are not rendered by default.

CHANGELOG/1.1-CHANGELOG.md

Lines changed: 378 additions & 0 deletions
Large diffs are not rendered by default.

CHANGELOG/1.1-TEAM.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# v1.1 Release Team
2+
3+
| Enhancement | Leads |
4+
| - | - |
5+
| Service Mesh Support | @howardjohn, @keithmattix, @kflynn, @mikemorris |
6+
| GRPCRoute | @gnossen |
7+
| ParentReference Port | @frankbu |
8+
| Conformance Profiles and Reports | @mlavacca, @shaneutt, @xtineskim |
9+
| Gateway Client Certificate Verification | @arkodg |
10+
| Session Persistence and BackendLBPolicy | @gcs278, @ginayeh |
11+
| TLS Terminology Clarifications | @candita, @robscott |
12+
| Gateway API Maintainers | @robscott, @shaneutt, @youngnick |

OWNERS_ALIASES

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ aliases:
2222

2323
gateway-api-mesh-leads:
2424
- howardjohn
25-
- keithmattix
25+
- mikemorris
2626
- kflynn
2727

2828
emeritus-gateway-api-mesh-leads:
29-
- mikemorris
29+
- keithmattix
3030

3131
gateway-api-conformance-reviewers:
3232
- arkodg
@@ -44,6 +44,8 @@ aliases:
4444
gateway-api-gep-reviewers:
4545
- candita
4646
- gcs278
47+
- LiorLieberman
48+
- mlavacca
4749

4850
gwctl-approvers:
4951
- gauravkghildiyal

README.md

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,14 @@ the specification and Custom Resource Definitions (CRDs).
66
## Status
77

88
The latest supported version is `v1` as released by
9-
the [v1.0.0 release][gh_release] of this project.
9+
the [v1.1.0 release][gh_release] of this project.
1010

1111
This version of the API is has GA level support for the following resources:
1212

1313
- `v1.GatewayClass`
1414
- `v1.Gateway`
1515
- `v1.HTTPRoute`
16+
- `v1.GRPCRoute`
1617

1718
For all the other APIs and their support levels please consult [the spec][spec].
1819

@@ -37,11 +38,20 @@ one of the guides.
3738

3839
### References
3940

40-
A complete API reference, please refer to:
41+
For a complete API reference, please refer to:
4142

4243
- [API reference][spec]
4344
- [Go docs for the package][godoc]
4445

46+
## Gateway API conformance
47+
48+
If you are developing a Gateway API implementation and want to run conformance tests
49+
against your project and eventually submit the proof of conformance, visit the [conformance
50+
documentation][conformance-docs] for the test suite documentation, and the conformance
51+
reports [readme][reports-readme] to see the reports submission rules. If you
52+
are a user who wants to explore the features supported by the various implementations,
53+
navigate the [conformance reports][conformance-reports]
54+
4555
## Contributing
4656

4757
Community meeting schedule, notes and developer guide can be found on the
@@ -61,5 +71,8 @@ Participation in the Kubernetes community is governed by the
6171
[spec]: https://gateway-api.sigs.k8s.io/reference/spec/
6272
[concepts]: https://gateway-api.sigs.k8s.io/concepts/api-overview
6373
[security-model]: https://gateway-api.sigs.k8s.io/concepts/security-model
64-
[gh_release]: https://github.com/kubernetes-sigs/gateway-api/releases/tag/v1.0.0
74+
[gh_release]: https://github.com/kubernetes-sigs/gateway-api/releases/tag/v1.1.0
6575
[godoc]: https://pkg.go.dev/sigs.k8s.io/gateway-api
76+
[conformance-docs]: https://gateway-api.sigs.k8s.io/concepts/conformance/
77+
[reports-readme]: ./conformance/reports/README.md
78+
[conformance-reports]: ./conformance/reports/

apis/applyconfiguration/apis/v1/allowedroutes.go

Lines changed: 53 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

apis/applyconfiguration/apis/v1/backendobjectreference.go

Lines changed: 79 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)