Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
344 changes: 254 additions & 90 deletions charts/gateway-crds-helm/templates/experimental-gatewayapi-crds.yaml

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ kind: CustomResourceDefinition
metadata:
annotations:
api-approved.kubernetes.io: https://github.com/kubernetes-sigs/gateway-api/pull/3328
gateway.networking.k8s.io/bundle-version: v1.4.0
gateway.networking.k8s.io/bundle-version: v1.4.1
gateway.networking.k8s.io/channel: standard
labels:
gateway.networking.k8s.io/policy: Direct
Expand Down Expand Up @@ -130,6 +130,12 @@ spec:
implementation MUST ensure the `Accepted` Condition is set to
`status: False`, with Reason `Conflicted`.

Implementations SHOULD NOT support more than one targetRef at this
time. Although the API technically allows for this, the current guidance
for conflict resolution and status handling is lacking. Until that can be
clarified in a future release, the safest approach is to support a single
targetRef.

Support: Extended for Kubernetes Service

Support: Implementation-specific for any other resource
Expand Down Expand Up @@ -775,6 +781,12 @@ spec:
implementation MUST ensure the `Accepted` Condition is set to
`status: False`, with Reason `Conflicted`.

Implementations SHOULD NOT support more than one targetRef at this
time. Although the API technically allows for this, the current guidance
for conflict resolution and status handling is lacking. Until that can be
clarified in a future release, the safest approach is to support a single
targetRef.

Support: Extended for Kubernetes Service

Support: Implementation-specific for any other resource
Expand Down Expand Up @@ -1332,6 +1344,8 @@ spec:
type: object
served: false
storage: false
subresources:
status: {}
status:
acceptedNames:
kind: ""
Expand All @@ -1347,7 +1361,7 @@ kind: CustomResourceDefinition
metadata:
annotations:
api-approved.kubernetes.io: https://github.com/kubernetes-sigs/gateway-api/pull/3328
gateway.networking.k8s.io/bundle-version: v1.4.0
gateway.networking.k8s.io/bundle-version: v1.4.1
gateway.networking.k8s.io/channel: standard
name: gatewayclasses.gateway.networking.k8s.io
spec:
Expand Down Expand Up @@ -1866,7 +1880,7 @@ kind: CustomResourceDefinition
metadata:
annotations:
api-approved.kubernetes.io: https://github.com/kubernetes-sigs/gateway-api/pull/3328
gateway.networking.k8s.io/bundle-version: v1.4.0
gateway.networking.k8s.io/bundle-version: v1.4.1
gateway.networking.k8s.io/channel: standard
name: gateways.gateway.networking.k8s.io
spec:
Expand Down Expand Up @@ -4123,7 +4137,7 @@ kind: CustomResourceDefinition
metadata:
annotations:
api-approved.kubernetes.io: https://github.com/kubernetes-sigs/gateway-api/pull/3328
gateway.networking.k8s.io/bundle-version: v1.4.0
gateway.networking.k8s.io/bundle-version: v1.4.1
gateway.networking.k8s.io/channel: standard
name: grpcroutes.gateway.networking.k8s.io
spec:
Expand Down Expand Up @@ -6197,7 +6211,7 @@ kind: CustomResourceDefinition
metadata:
annotations:
api-approved.kubernetes.io: https://github.com/kubernetes-sigs/gateway-api/pull/3328
gateway.networking.k8s.io/bundle-version: v1.4.0
gateway.networking.k8s.io/bundle-version: v1.4.1
gateway.networking.k8s.io/channel: standard
name: httproutes.gateway.networking.k8s.io
spec:
Expand Down Expand Up @@ -7073,6 +7087,9 @@ spec:
enum:
- 301
- 302
- 303
- 307
- 308
type: integer
type: object
responseHeaderModifier:
Expand Down Expand Up @@ -8007,6 +8024,9 @@ spec:
enum:
- 301
- 302
- 303
- 307
- 308
type: integer
type: object
responseHeaderModifier:
Expand Down Expand Up @@ -9882,6 +9902,9 @@ spec:
enum:
- 301
- 302
- 303
- 307
- 308
type: integer
type: object
responseHeaderModifier:
Expand Down Expand Up @@ -10816,6 +10839,9 @@ spec:
enum:
- 301
- 302
- 303
- 307
- 308
type: integer
type: object
responseHeaderModifier:
Expand Down Expand Up @@ -11844,7 +11870,7 @@ kind: CustomResourceDefinition
metadata:
annotations:
api-approved.kubernetes.io: https://github.com/kubernetes-sigs/gateway-api/pull/3328
gateway.networking.k8s.io/bundle-version: v1.4.0
gateway.networking.k8s.io/bundle-version: v1.4.1
gateway.networking.k8s.io/channel: standard
name: referencegrants.gateway.networking.k8s.io
spec:
Expand Down
Loading