Skip to content
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

Bump controller tools #1031

Merged
merged 1 commit into from
Jan 9, 2025
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
9 changes: 0 additions & 9 deletions config/ingress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ spec:
by a backend. An Ingress can be configured to give services externally-reachable URLs, load
balance traffic, offer name based virtual hosting, etc.


This is heavily based on K8s Ingress https://godoc.org/k8s.io/api/networking/v1beta1#Ingress
which some highlighted modifications.
type: object
Expand Down Expand Up @@ -108,7 +107,6 @@ spec:
description: |-
A collection of paths that map requests to backends.


If they are multiple matching paths, the first match takes precedence.
type: array
items:
Expand All @@ -124,7 +122,6 @@ spec:
AppendHeaders allow specifying additional HTTP headers to add
before forwarding a request to the destination service.


NOTE: This differs from K8s Ingress which doesn't allow header appending.
type: object
additionalProperties:
Expand Down Expand Up @@ -159,7 +156,6 @@ spec:
description: |-
RewriteHost rewrites the incoming request's host header.


This field is currently experimental and not supported by all Ingress
implementations.
type: string
Expand All @@ -181,7 +177,6 @@ spec:
AppendHeaders allow specifying additional HTTP headers to add
before forwarding a request to the destination service.


NOTE: This differs from K8s Ingress which doesn't allow header appending.
type: object
additionalProperties:
Expand All @@ -191,7 +186,6 @@ spec:
Specifies the split percentage, a number between 0 and 100. If
only one split is specified, we default to 100.


NOTE: This differs from K8s Ingress to allow percentage split.
type: integer
serviceName:
Expand All @@ -201,7 +195,6 @@ spec:
description: |-
Specifies the namespace of the referenced service.


NOTE: This differs from K8s Ingress to allow routing to different namespaces.
type: string
servicePort:
Expand Down Expand Up @@ -326,7 +319,6 @@ spec:
description: |-
DomainInternal is set if there is a cluster-local DNS name to access the Ingress.


NOTE: This differs from K8s Ingress, since we also desire to have a cluster-local
DNS name to allow routing in case of not having a mesh.
type: string
Expand Down Expand Up @@ -362,7 +354,6 @@ spec:
description: |-
DomainInternal is set if there is a cluster-local DNS name to access the Ingress.


NOTE: This differs from K8s Ingress, since we also desire to have a cluster-local
DNS name to allow routing in case of not having a mesh.
type: string
Expand Down
1 change: 0 additions & 1 deletion config/serverlessservice.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,6 @@ spec:
the event) or if no container name is specified "spec.containers[2]" (container with
index 2 in this pod). This syntax is chosen only to have some well-defined way of
referencing a part of an object.
TODO: this design is not final and this field is subject to change in the future.
type: string
kind:
description: |-
Expand Down
2 changes: 1 addition & 1 deletion hack/update-schemas.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ function restore {

trap restore EXIT

go run sigs.k8s.io/controller-tools/cmd/controller-gen@v0.14.0 \
go run sigs.k8s.io/controller-tools/cmd/controller-gen@v0.16.5 \
schemapatch:manifests=config/,generateEmbeddedObjectMeta=false \
output:dir=config \
paths=./pkg/apis/...
Expand Down
Loading