mirror of
https://github.com/bjw-s-labs/helm-charts.git
synced 2025-07-04 08:57: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
|
@ -18,7 +18,7 @@
|
|||
},
|
||||
|
||||
"defaultBackend": {
|
||||
"type": "string"
|
||||
"$ref": "k8s-api.json#/networking.v1.ingressBackend"
|
||||
},
|
||||
|
||||
"hosts": {
|
||||
|
@ -42,8 +42,7 @@
|
|||
"$ref": "#/tlsEntry"
|
||||
}
|
||||
}
|
||||
},
|
||||
"required": ["hosts"]
|
||||
}
|
||||
},
|
||||
|
||||
"hostEntry": {
|
||||
|
|
|
@ -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"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -37,15 +37,14 @@
|
|||
},
|
||||
"hostNetwork": {
|
||||
"type": "boolean",
|
||||
"default": "false"
|
||||
"default": false
|
||||
},
|
||||
"hostPID": {
|
||||
"type": "boolean",
|
||||
"default": false
|
||||
},
|
||||
"hostUsers": {
|
||||
"type": "boolean",
|
||||
"default": false
|
||||
"type": ["boolean", "null"]
|
||||
},
|
||||
"hostname": {
|
||||
"type": "string"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue