fix(common): Release 3.6.1 (#369)

This commit is contained in:
Bernd Schorgers 2025-01-12 11:28:41 +01:00 committed by GitHub
parent ec94fd49f7
commit 5fdc9e940e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
11 changed files with 116 additions and 47 deletions

View file

@ -967,5 +967,62 @@
}
},
"type": "object"
},
"networking.v1.ingressBackend": {
"description": "IngressBackend describes all endpoints for a given service and port.",
"properties": {
"resource": {
"description": "resource is an ObjectRef to another Kubernetes resource in the namespace of the Ingress object. If resource is specified, a service.Name and service.Port must not be specified. This is a mutually exclusive setting with \"Service\".",
"properties": {
"apiGroup": {
"description": "APIGroup is the group for the resource being referenced. If APIGroup is not specified, the specified Kind must be in the core API group. For any other third-party types, APIGroup is required.",
"type": "string"
},
"kind": {
"description": "Kind is the type of resource being referenced",
"type": "string"
},
"name": {
"description": "Name is the name of resource being referenced",
"type": "string"
}
},
"required": [
"kind",
"name"
],
"type": "object"
},
"service": {
"description": "service references a service as a backend. This is a mutually exclusive setting with \"Resource\".",
"properties": {
"name": {
"description": "name is the referenced service. The service must exist in the same namespace as the Ingress object.",
"type": "string"
},
"port": {
"description": "port of the referenced service. A port name or port number is required for a IngressServiceBackend.",
"properties": {
"name": {
"description": "name is the name of the port on the Service. This is a mutually exclusive setting with \"Number\".",
"type": "string"
},
"number": {
"description": "number is the numerical port number (e.g. 80) on the Service. This is a mutually exclusive setting with \"Name\".",
"format": "int32",
"type": "integer"
}
},
"type": "object"
}
},
"required": [
"name"
],
"type": "object"
}
},
"type": "object"
}
}