ServerSideFieldValidation
feature disabled will discard valid values specified in this param and not perform any server side field validation. Valid values are: - Ignore: ignores unknown/duplicate fields. - Warn: responds with a warning for each unknown/duplicate field, but successfully serves the request. - Strict: fails the request on unknown/duplicate fields.{}
curl --location --request PATCH '/apis/networking.k8s.io/v1/namespaces//ingresses//status' \
--header 'Content-Type: application/json' \
--data-raw '{}'
kubernetes.io/ingress.class
annotation. For backwards compatibility, when that annotation is set, it must be given precedence over this field. The controller may emit a warning if the field and annotation have different values. Implementations of this API should ignore Ingresses without a class specified. An IngressClass resource may be marked as default, which can be used to set a default value for this field. For more information, refer to the IngressClass documentation.{
"apiVersion": "string",
"kind": "string",
"metadata": {
"annotations": {
"property1": "string",
"property2": "string"
},
"clusterName": "string",
"creationTimestamp": "2019-08-24T14:15:22Z",
"deletionGracePeriodSeconds": 0,
"deletionTimestamp": "2019-08-24T14:15:22Z",
"finalizers": [
"string"
],
"generateName": "string",
"generation": 0,
"labels": {
"property1": "string",
"property2": "string"
},
"managedFields": [
{
"apiVersion": "string",
"fieldsType": "string",
"fieldsV1": {},
"manager": "string",
"operation": "string",
"subresource": "string",
"time": "2019-08-24T14:15:22Z"
}
],
"name": "string",
"namespace": "string",
"ownerReferences": [
{
"apiVersion": "string",
"blockOwnerDeletion": true,
"controller": true,
"kind": "string",
"name": "string",
"uid": "string"
}
],
"resourceVersion": "string",
"selfLink": "string",
"uid": "string"
},
"spec": {
"defaultBackend": {
"resource": {
"apiGroup": "string",
"kind": "string",
"name": "string"
},
"service": {
"name": "string",
"port": {
"name": "string",
"number": 0
}
}
},
"ingressClassName": "string",
"rules": [
{
"host": "string",
"http": {
"paths": [
{
"backend": {
"resource": {
"apiGroup": "string",
"kind": "string",
"name": "string"
},
"service": {
"name": "string",
"port": {
"name": "string",
"number": 0
}
}
},
"path": "string",
"pathType": "string"
}
]
}
}
],
"tls": [
{
"hosts": [
"string"
],
"secretName": "string"
}
]
},
"status": {
"loadBalancer": {
"ingress": [
{
"hostname": "string",
"ip": "string",
"ports": [
{
"error": "string",
"port": 0,
"protocol": "SCTP"
}
]
}
]
}
}
}