mirror of
https://github.com/bjw-s-labs/helm-charts.git
synced 2025-07-04 17:07:04 +02:00
fix(common): Release 3.6.1 (#369)
This commit is contained in:
parent
ec94fd49f7
commit
5fdc9e940e
11 changed files with 116 additions and 47 deletions
|
@ -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"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue