Merge pull request #114063 from ruquanzhao/fixNetworkTypesDoc
fix doc of types.go of network v1, v1alpha1, v1beta1
This commit is contained in:
130
api/openapi-spec/swagger.json
generated
130
api/openapi-spec/swagger.json
generated
@@ -11458,14 +11458,14 @@
|
||||
"properties": {
|
||||
"backend": {
|
||||
"$ref": "#/definitions/io.k8s.api.networking.v1.IngressBackend",
|
||||
"description": "Backend defines the referenced service endpoint to which the traffic will be forwarded to."
|
||||
"description": "backend defines the referenced service endpoint to which the traffic will be forwarded to."
|
||||
},
|
||||
"path": {
|
||||
"description": "Path is matched against the path of an incoming request. Currently it can contain characters disallowed from the conventional \"path\" part of a URL as defined by RFC 3986. Paths must begin with a '/' and must be present when using PathType with value \"Exact\" or \"Prefix\".",
|
||||
"description": "path is matched against the path of an incoming request. Currently it can contain characters disallowed from the conventional \"path\" part of a URL as defined by RFC 3986. Paths must begin with a '/' and must be present when using PathType with value \"Exact\" or \"Prefix\".",
|
||||
"type": "string"
|
||||
},
|
||||
"pathType": {
|
||||
"description": "PathType determines the interpretation of the Path matching. PathType can be one of the following values: * Exact: Matches the URL path exactly. * Prefix: Matches based on a URL path prefix split by '/'. Matching is\n done on a path element by element basis. A path element refers is the\n list of labels in the path split by the '/' separator. A request is a\n match for path p if every p is an element-wise prefix of p of the\n request path. Note that if the last element of the path is a substring\n of the last element in request path, it is not a match (e.g. /foo/bar\n matches /foo/bar/baz, but does not match /foo/barbaz).\n* ImplementationSpecific: Interpretation of the Path matching is up to\n the IngressClass. Implementations can treat this as a separate PathType\n or treat it identically to Prefix or Exact path types.\nImplementations are required to support all path types.",
|
||||
"description": "pathType determines the interpretation of the path matching. PathType can be one of the following values: * Exact: Matches the URL path exactly. * Prefix: Matches based on a URL path prefix split by '/'. Matching is\n done on a path element by element basis. A path element refers is the\n list of labels in the path split by the '/' separator. A request is a\n match for path p if every p is an element-wise prefix of p of the\n request path. Note that if the last element of the path is a substring\n of the last element in request path, it is not a match (e.g. /foo/bar\n matches /foo/bar/baz, but does not match /foo/barbaz).\n* ImplementationSpecific: Interpretation of the Path matching is up to\n the IngressClass. Implementations can treat this as a separate PathType\n or treat it identically to Prefix or Exact path types.\nImplementations are required to support all path types.",
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
@@ -11479,7 +11479,7 @@
|
||||
"description": "HTTPIngressRuleValue is a list of http selectors pointing to backends. In the example: http://<host>/<path>?<searchpart> -> backend where where parts of the url correspond to RFC 3986, this resource will be used to match against everything after the last '/' and before the first '?' or '#'.",
|
||||
"properties": {
|
||||
"paths": {
|
||||
"description": "A collection of paths that map requests to backends.",
|
||||
"description": "paths is a collection of paths that map requests to backends.",
|
||||
"items": {
|
||||
"$ref": "#/definitions/io.k8s.api.networking.v1.HTTPIngressPath"
|
||||
},
|
||||
@@ -11496,11 +11496,11 @@
|
||||
"description": "IPBlock describes a particular CIDR (Ex. \"192.168.1.0/24\",\"2001:db8::/64\") that is allowed to the pods matched by a NetworkPolicySpec's podSelector. The except entry describes CIDRs that should not be included within this rule.",
|
||||
"properties": {
|
||||
"cidr": {
|
||||
"description": "CIDR is a string representing the IP Block Valid examples are \"192.168.1.0/24\" or \"2001:db8::/64\"",
|
||||
"description": "cidr is a string representing the IPBlock Valid examples are \"192.168.1.0/24\" or \"2001:db8::/64\"",
|
||||
"type": "string"
|
||||
},
|
||||
"except": {
|
||||
"description": "Except is a slice of CIDRs that should not be included within an IP Block Valid examples are \"192.168.1.0/24\" or \"2001:db8::/64\" Except values will be rejected if they are outside the CIDR range",
|
||||
"description": "except is a slice of CIDRs that should not be included within an IPBlock Valid examples are \"192.168.1.0/24\" or \"2001:db8::/64\" Except values will be rejected if they are outside the cidr range",
|
||||
"items": {
|
||||
"type": "string"
|
||||
},
|
||||
@@ -11529,11 +11529,11 @@
|
||||
},
|
||||
"spec": {
|
||||
"$ref": "#/definitions/io.k8s.api.networking.v1.IngressSpec",
|
||||
"description": "Spec is the desired state of the Ingress. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
|
||||
"description": "spec is the desired state of the Ingress. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
|
||||
},
|
||||
"status": {
|
||||
"$ref": "#/definitions/io.k8s.api.networking.v1.IngressStatus",
|
||||
"description": "Status is the current state of the Ingress. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
|
||||
"description": "status is the current state of the Ingress. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
|
||||
}
|
||||
},
|
||||
"type": "object",
|
||||
@@ -11550,11 +11550,11 @@
|
||||
"properties": {
|
||||
"resource": {
|
||||
"$ref": "#/definitions/io.k8s.api.core.v1.TypedLocalObjectReference",
|
||||
"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\"."
|
||||
"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\"."
|
||||
},
|
||||
"service": {
|
||||
"$ref": "#/definitions/io.k8s.api.networking.v1.IngressServiceBackend",
|
||||
"description": "Service references a Service as a Backend. This is a mutually exclusive setting with \"Resource\"."
|
||||
"description": "service references a service as a backend. This is a mutually exclusive setting with \"Resource\"."
|
||||
}
|
||||
},
|
||||
"type": "object"
|
||||
@@ -11576,7 +11576,7 @@
|
||||
},
|
||||
"spec": {
|
||||
"$ref": "#/definitions/io.k8s.api.networking.v1.IngressClassSpec",
|
||||
"description": "Spec is the desired state of the IngressClass. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
|
||||
"description": "spec is the desired state of the IngressClass. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
|
||||
}
|
||||
},
|
||||
"type": "object",
|
||||
@@ -11596,7 +11596,7 @@
|
||||
"type": "string"
|
||||
},
|
||||
"items": {
|
||||
"description": "Items is the list of IngressClasses.",
|
||||
"description": "items is the list of IngressClasses.",
|
||||
"items": {
|
||||
"$ref": "#/definitions/io.k8s.api.networking.v1.IngressClass"
|
||||
},
|
||||
@@ -11627,23 +11627,23 @@
|
||||
"description": "IngressClassParametersReference identifies an API object. This can be used to specify a cluster or namespace-scoped resource.",
|
||||
"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.",
|
||||
"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.",
|
||||
"description": "kind is the type of resource being referenced.",
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"description": "Name is the name of resource being referenced.",
|
||||
"description": "name is the name of resource being referenced.",
|
||||
"type": "string"
|
||||
},
|
||||
"namespace": {
|
||||
"description": "Namespace is the namespace of the resource being referenced. This field is required when scope is set to \"Namespace\" and must be unset when scope is set to \"Cluster\".",
|
||||
"description": "namespace is the namespace of the resource being referenced. This field is required when scope is set to \"Namespace\" and must be unset when scope is set to \"Cluster\".",
|
||||
"type": "string"
|
||||
},
|
||||
"scope": {
|
||||
"description": "Scope represents if this refers to a cluster or namespace scoped resource. This may be set to \"Cluster\" (default) or \"Namespace\".",
|
||||
"description": "scope represents if this refers to a cluster or namespace scoped resource. This may be set to \"Cluster\" (default) or \"Namespace\".",
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
@@ -11657,12 +11657,12 @@
|
||||
"description": "IngressClassSpec provides information about the class of an Ingress.",
|
||||
"properties": {
|
||||
"controller": {
|
||||
"description": "Controller refers to the name of the controller that should handle this class. This allows for different \"flavors\" that are controlled by the same controller. For example, you may have different Parameters for the same implementing controller. This should be specified as a domain-prefixed path no more than 250 characters in length, e.g. \"acme.io/ingress-controller\". This field is immutable.",
|
||||
"description": "controller refers to the name of the controller that should handle this class. This allows for different \"flavors\" that are controlled by the same controller. For example, you may have different parameters for the same implementing controller. This should be specified as a domain-prefixed path no more than 250 characters in length, e.g. \"acme.io/ingress-controller\". This field is immutable.",
|
||||
"type": "string"
|
||||
},
|
||||
"parameters": {
|
||||
"$ref": "#/definitions/io.k8s.api.networking.v1.IngressClassParametersReference",
|
||||
"description": "Parameters is a link to a custom resource containing additional configuration for the controller. This is optional if the controller does not require extra parameters."
|
||||
"description": "parameters is a link to a custom resource containing additional configuration for the controller. This is optional if the controller does not require extra parameters."
|
||||
}
|
||||
},
|
||||
"type": "object"
|
||||
@@ -11675,7 +11675,7 @@
|
||||
"type": "string"
|
||||
},
|
||||
"items": {
|
||||
"description": "Items is the list of Ingress.",
|
||||
"description": "items is the list of Ingress.",
|
||||
"items": {
|
||||
"$ref": "#/definitions/io.k8s.api.networking.v1.Ingress"
|
||||
},
|
||||
@@ -11706,15 +11706,15 @@
|
||||
"description": "IngressLoadBalancerIngress represents the status of a load-balancer ingress point.",
|
||||
"properties": {
|
||||
"hostname": {
|
||||
"description": "Hostname is set for load-balancer ingress points that are DNS based.",
|
||||
"description": "hostname is set for load-balancer ingress points that are DNS based.",
|
||||
"type": "string"
|
||||
},
|
||||
"ip": {
|
||||
"description": "IP is set for load-balancer ingress points that are IP based.",
|
||||
"description": "ip is set for load-balancer ingress points that are IP based.",
|
||||
"type": "string"
|
||||
},
|
||||
"ports": {
|
||||
"description": "Ports provides information about the ports exposed by this LoadBalancer.",
|
||||
"description": "ports provides information about the ports exposed by this LoadBalancer.",
|
||||
"items": {
|
||||
"$ref": "#/definitions/io.k8s.api.networking.v1.IngressPortStatus"
|
||||
},
|
||||
@@ -11728,7 +11728,7 @@
|
||||
"description": "IngressLoadBalancerStatus represents the status of a load-balancer.",
|
||||
"properties": {
|
||||
"ingress": {
|
||||
"description": "Ingress is a list containing ingress points for the load-balancer.",
|
||||
"description": "ingress is a list containing ingress points for the load-balancer.",
|
||||
"items": {
|
||||
"$ref": "#/definitions/io.k8s.api.networking.v1.IngressLoadBalancerIngress"
|
||||
},
|
||||
@@ -11741,16 +11741,16 @@
|
||||
"description": "IngressPortStatus represents the error condition of a service port",
|
||||
"properties": {
|
||||
"error": {
|
||||
"description": "Error is to record the problem with the service port The format of the error shall comply with the following rules: - built-in error values shall be specified in this file and those shall use\n CamelCase names\n- cloud provider specific error values must have names that comply with the\n format foo.example.com/CamelCase.",
|
||||
"description": "error is to record the problem with the service port The format of the error shall comply with the following rules: - built-in error values shall be specified in this file and those shall use\n CamelCase names\n- cloud provider specific error values must have names that comply with the\n format foo.example.com/CamelCase.",
|
||||
"type": "string"
|
||||
},
|
||||
"port": {
|
||||
"description": "Port is the port number of the ingress port.",
|
||||
"description": "port is the port number of the ingress port.",
|
||||
"format": "int32",
|
||||
"type": "integer"
|
||||
},
|
||||
"protocol": {
|
||||
"description": "Protocol is the protocol of the ingress port. The supported values are: \"TCP\", \"UDP\", \"SCTP\"",
|
||||
"description": "protocol is the protocol of the ingress port. The supported values are: \"TCP\", \"UDP\", \"SCTP\"",
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
@@ -11764,7 +11764,7 @@
|
||||
"description": "IngressRule represents the rules mapping the paths under a specified host to the related backend services. Incoming requests are first evaluated for a host match, then routed to the backend associated with the matching IngressRuleValue.",
|
||||
"properties": {
|
||||
"host": {
|
||||
"description": "Host is the fully qualified domain name of a network host, as defined by RFC 3986. Note the following deviations from the \"host\" part of the URI as defined in RFC 3986: 1. IPs are not allowed. Currently an IngressRuleValue can only apply to\n the IP in the Spec of the parent Ingress.\n2. The `:` delimiter is not respected because ports are not allowed.\n\t Currently the port of an Ingress is implicitly :80 for http and\n\t :443 for https.\nBoth these may change in the future. Incoming requests are matched against the host before the IngressRuleValue. If the host is unspecified, the Ingress routes all traffic based on the specified IngressRuleValue.\n\nHost can be \"precise\" which is a domain name without the terminating dot of a network host (e.g. \"foo.bar.com\") or \"wildcard\", which is a domain name prefixed with a single wildcard label (e.g. \"*.foo.com\"). The wildcard character '*' must appear by itself as the first DNS label and matches only a single label. You cannot have a wildcard label by itself (e.g. Host == \"*\"). Requests will be matched against the Host field in the following way: 1. If Host is precise, the request matches this rule if the http host header is equal to Host. 2. If Host is a wildcard, then the request matches this rule if the http host header is to equal to the suffix (removing the first label) of the wildcard rule.",
|
||||
"description": "host is the fully qualified domain name of a network host, as defined by RFC 3986. Note the following deviations from the \"host\" part of the URI as defined in RFC 3986: 1. IPs are not allowed. Currently an IngressRuleValue can only apply to\n the IP in the Spec of the parent Ingress.\n2. The `:` delimiter is not respected because ports are not allowed.\n\t Currently the port of an Ingress is implicitly :80 for http and\n\t :443 for https.\nBoth these may change in the future. Incoming requests are matched against the host before the IngressRuleValue. If the host is unspecified, the Ingress routes all traffic based on the specified IngressRuleValue.\n\nhost can be \"precise\" which is a domain name without the terminating dot of a network host (e.g. \"foo.bar.com\") or \"wildcard\", which is a domain name prefixed with a single wildcard label (e.g. \"*.foo.com\"). The wildcard character '*' must appear by itself as the first DNS label and matches only a single label. You cannot have a wildcard label by itself (e.g. Host == \"*\"). Requests will be matched against the Host field in the following way: 1. If host is precise, the request matches this rule if the http host header is equal to Host. 2. If host is a wildcard, then the request matches this rule if the http host header is to equal to the suffix (removing the first label) of the wildcard rule.",
|
||||
"type": "string"
|
||||
},
|
||||
"http": {
|
||||
@@ -11777,12 +11777,12 @@
|
||||
"description": "IngressServiceBackend references a Kubernetes Service as a Backend.",
|
||||
"properties": {
|
||||
"name": {
|
||||
"description": "Name is the referenced service. The service must exist in the same namespace as the Ingress object.",
|
||||
"description": "name is the referenced service. The service must exist in the same namespace as the Ingress object.",
|
||||
"type": "string"
|
||||
},
|
||||
"port": {
|
||||
"$ref": "#/definitions/io.k8s.api.networking.v1.ServiceBackendPort",
|
||||
"description": "Port of the referenced service. A port name or port number is required for a IngressServiceBackend."
|
||||
"description": "port of the referenced service. A port name or port number is required for a IngressServiceBackend."
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
@@ -11795,14 +11795,14 @@
|
||||
"properties": {
|
||||
"defaultBackend": {
|
||||
"$ref": "#/definitions/io.k8s.api.networking.v1.IngressBackend",
|
||||
"description": "DefaultBackend is the backend that should handle requests that don't match any rule. If Rules are not specified, DefaultBackend must be specified. If DefaultBackend is not set, the handling of requests that do not match any of the rules will be up to the Ingress controller."
|
||||
"description": "defaultBackend is the backend that should handle requests that don't match any rule. If Rules are not specified, DefaultBackend must be specified. If DefaultBackend is not set, the handling of requests that do not match any of the rules will be up to the Ingress controller."
|
||||
},
|
||||
"ingressClassName": {
|
||||
"description": "IngressClassName is the name of an IngressClass cluster resource. Ingress controller implementations use this field to know whether they should be serving this Ingress resource, by a transitive connection (controller -> IngressClass -> Ingress resource). Although the `kubernetes.io/ingress.class` annotation (simple constant name) was never formally defined, it was widely supported by Ingress controllers to create a direct binding between Ingress controller and Ingress resources. Newly created Ingress resources should prefer using the field. However, even though the annotation is officially deprecated, for backwards compatibility reasons, ingress controllers should still honor that annotation if present.",
|
||||
"description": "ingressClassName is the name of an IngressClass cluster resource. Ingress controller implementations use this field to know whether they should be serving this Ingress resource, by a transitive connection (controller -> IngressClass -> Ingress resource). Although the `kubernetes.io/ingress.class` annotation (simple constant name) was never formally defined, it was widely supported by Ingress controllers to create a direct binding between Ingress controller and Ingress resources. Newly created Ingress resources should prefer using the field. However, even though the annotation is officially deprecated, for backwards compatibility reasons, ingress controllers should still honor that annotation if present.",
|
||||
"type": "string"
|
||||
},
|
||||
"rules": {
|
||||
"description": "A list of host rules used to configure the Ingress. If unspecified, or no rule matches, all traffic is sent to the default backend.",
|
||||
"description": "rules is a list of host rules used to configure the Ingress. If unspecified, or no rule matches, all traffic is sent to the default backend.",
|
||||
"items": {
|
||||
"$ref": "#/definitions/io.k8s.api.networking.v1.IngressRule"
|
||||
},
|
||||
@@ -11810,7 +11810,7 @@
|
||||
"x-kubernetes-list-type": "atomic"
|
||||
},
|
||||
"tls": {
|
||||
"description": "TLS configuration. Currently the Ingress only supports a single TLS port, 443. If multiple members of this list specify different hosts, they will be multiplexed on the same port according to the hostname specified through the SNI TLS extension, if the ingress controller fulfilling the ingress supports SNI.",
|
||||
"description": "tls represents the TLS configuration. Currently the Ingress only supports a single TLS port, 443. If multiple members of this list specify different hosts, they will be multiplexed on the same port according to the hostname specified through the SNI TLS extension, if the ingress controller fulfilling the ingress supports SNI.",
|
||||
"items": {
|
||||
"$ref": "#/definitions/io.k8s.api.networking.v1.IngressTLS"
|
||||
},
|
||||
@@ -11825,16 +11825,16 @@
|
||||
"properties": {
|
||||
"loadBalancer": {
|
||||
"$ref": "#/definitions/io.k8s.api.networking.v1.IngressLoadBalancerStatus",
|
||||
"description": "LoadBalancer contains the current status of the load-balancer."
|
||||
"description": "loadBalancer contains the current status of the load-balancer."
|
||||
}
|
||||
},
|
||||
"type": "object"
|
||||
},
|
||||
"io.k8s.api.networking.v1.IngressTLS": {
|
||||
"description": "IngressTLS describes the transport layer security associated with an Ingress.",
|
||||
"description": "IngressTLS describes the transport layer security associated with an ingress.",
|
||||
"properties": {
|
||||
"hosts": {
|
||||
"description": "Hosts are a list of hosts included in the TLS certificate. The values in this list must match the name/s used in the tlsSecret. Defaults to the wildcard host setting for the loadbalancer controller fulfilling this Ingress, if left unspecified.",
|
||||
"description": "hosts is a list of hosts included in the TLS certificate. The values in this list must match the name/s used in the tlsSecret. Defaults to the wildcard host setting for the loadbalancer controller fulfilling this Ingress, if left unspecified.",
|
||||
"items": {
|
||||
"type": "string"
|
||||
},
|
||||
@@ -11842,7 +11842,7 @@
|
||||
"x-kubernetes-list-type": "atomic"
|
||||
},
|
||||
"secretName": {
|
||||
"description": "SecretName is the name of the secret used to terminate TLS traffic on port 443. Field is left optional to allow TLS routing based on SNI hostname alone. If the SNI host in a listener conflicts with the \"Host\" header field used by an IngressRule, the SNI host is used for termination and value of the Host header is used for routing.",
|
||||
"description": "secretName is the name of the secret used to terminate TLS traffic on port 443. Field is left optional to allow TLS routing based on SNI hostname alone. If the SNI host in a listener conflicts with the \"Host\" header field used by an IngressRule, the SNI host is used for termination and value of the \"Host\" header is used for routing.",
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
@@ -11865,11 +11865,11 @@
|
||||
},
|
||||
"spec": {
|
||||
"$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicySpec",
|
||||
"description": "Specification of the desired behavior for this NetworkPolicy."
|
||||
"description": "spec represents the specification of the desired behavior for this NetworkPolicy."
|
||||
},
|
||||
"status": {
|
||||
"$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicyStatus",
|
||||
"description": "Status is the current state of the NetworkPolicy. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
|
||||
"description": "status represents the current state of the NetworkPolicy. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
|
||||
}
|
||||
},
|
||||
"type": "object",
|
||||
@@ -11885,14 +11885,14 @@
|
||||
"description": "NetworkPolicyEgressRule describes a particular set of traffic that is allowed out of pods matched by a NetworkPolicySpec's podSelector. The traffic must match both ports and to. This type is beta-level in 1.8",
|
||||
"properties": {
|
||||
"ports": {
|
||||
"description": "List of destination ports for outgoing traffic. Each item in this list is combined using a logical OR. If this field is empty or missing, this rule matches all ports (traffic not restricted by port). If this field is present and contains at least one item, then this rule allows traffic only if the traffic matches at least one port in the list.",
|
||||
"description": "ports is a list of destination ports for outgoing traffic. Each item in this list is combined using a logical OR. If this field is empty or missing, this rule matches all ports (traffic not restricted by port). If this field is present and contains at least one item, then this rule allows traffic only if the traffic matches at least one port in the list.",
|
||||
"items": {
|
||||
"$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicyPort"
|
||||
},
|
||||
"type": "array"
|
||||
},
|
||||
"to": {
|
||||
"description": "List of destinations for outgoing traffic of pods selected for this rule. Items in this list are combined using a logical OR operation. If this field is empty or missing, this rule matches all destinations (traffic not restricted by destination). If this field is present and contains at least one item, this rule allows traffic only if the traffic matches at least one item in the to list.",
|
||||
"description": "to is a list of destinations for outgoing traffic of pods selected for this rule. Items in this list are combined using a logical OR operation. If this field is empty or missing, this rule matches all destinations (traffic not restricted by destination). If this field is present and contains at least one item, this rule allows traffic only if the traffic matches at least one item in the to list.",
|
||||
"items": {
|
||||
"$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicyPeer"
|
||||
},
|
||||
@@ -11905,14 +11905,14 @@
|
||||
"description": "NetworkPolicyIngressRule describes a particular set of traffic that is allowed to the pods matched by a NetworkPolicySpec's podSelector. The traffic must match both ports and from.",
|
||||
"properties": {
|
||||
"from": {
|
||||
"description": "List of sources which should be able to access the pods selected for this rule. Items in this list are combined using a logical OR operation. If this field is empty or missing, this rule matches all sources (traffic not restricted by source). If this field is present and contains at least one item, this rule allows traffic only if the traffic matches at least one item in the from list.",
|
||||
"description": "from is a list of sources which should be able to access the pods selected for this rule. Items in this list are combined using a logical OR operation. If this field is empty or missing, this rule matches all sources (traffic not restricted by source). If this field is present and contains at least one item, this rule allows traffic only if the traffic matches at least one item in the from list.",
|
||||
"items": {
|
||||
"$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicyPeer"
|
||||
},
|
||||
"type": "array"
|
||||
},
|
||||
"ports": {
|
||||
"description": "List of ports which should be made accessible on the pods selected for this rule. Each item in this list is combined using a logical OR. If this field is empty or missing, this rule matches all ports (traffic not restricted by port). If this field is present and contains at least one item, then this rule allows traffic only if the traffic matches at least one port in the list.",
|
||||
"description": "ports is a list of ports which should be made accessible on the pods selected for this rule. Each item in this list is combined using a logical OR. If this field is empty or missing, this rule matches all ports (traffic not restricted by port). If this field is present and contains at least one item, then this rule allows traffic only if the traffic matches at least one port in the list.",
|
||||
"items": {
|
||||
"$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicyPort"
|
||||
},
|
||||
@@ -11929,7 +11929,7 @@
|
||||
"type": "string"
|
||||
},
|
||||
"items": {
|
||||
"description": "Items is a list of schema objects.",
|
||||
"description": "items is a list of schema objects.",
|
||||
"items": {
|
||||
"$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicy"
|
||||
},
|
||||
@@ -11961,15 +11961,15 @@
|
||||
"properties": {
|
||||
"ipBlock": {
|
||||
"$ref": "#/definitions/io.k8s.api.networking.v1.IPBlock",
|
||||
"description": "IPBlock defines policy on a particular IPBlock. If this field is set then neither of the other fields can be."
|
||||
"description": "ipBlock defines policy on a particular IPBlock. If this field is set then neither of the other fields can be."
|
||||
},
|
||||
"namespaceSelector": {
|
||||
"$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
|
||||
"description": "Selects Namespaces using cluster-scoped labels. This field follows standard label selector semantics; if present but empty, it selects all namespaces.\n\nIf PodSelector is also set, then the NetworkPolicyPeer as a whole selects the Pods matching PodSelector in the Namespaces selected by NamespaceSelector. Otherwise it selects all Pods in the Namespaces selected by NamespaceSelector."
|
||||
"description": "namespaceSelector selects namespaces using cluster-scoped labels. This field follows standard label selector semantics; if present but empty, it selects all namespaces.\n\nIf podSelector is also set, then the NetworkPolicyPeer as a whole selects the pods matching podSelector in the namespaces selected by namespaceSelector. Otherwise it selects all pods in the namespaces selected by namespaceSelector."
|
||||
},
|
||||
"podSelector": {
|
||||
"$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
|
||||
"description": "This is a label selector which selects Pods. This field follows standard label selector semantics; if present but empty, it selects all pods.\n\nIf NamespaceSelector is also set, then the NetworkPolicyPeer as a whole selects the Pods matching PodSelector in the Namespaces selected by NamespaceSelector. Otherwise it selects the Pods matching PodSelector in the policy's own Namespace."
|
||||
"description": "podSelector is a label selector which selects pods. This field follows standard label selector semantics; if present but empty, it selects all pods.\n\nIf namespaceSelector is also set, then the NetworkPolicyPeer as a whole selects the pods matching podSelector in the Namespaces selected by NamespaceSelector. Otherwise it selects the pods matching podSelector in the policy's own namespace."
|
||||
}
|
||||
},
|
||||
"type": "object"
|
||||
@@ -11978,16 +11978,16 @@
|
||||
"description": "NetworkPolicyPort describes a port to allow traffic on",
|
||||
"properties": {
|
||||
"endPort": {
|
||||
"description": "If set, indicates that the range of ports from port to endPort, inclusive, should be allowed by the policy. This field cannot be defined if the port field is not defined or if the port field is defined as a named (string) port. The endPort must be equal or greater than port.",
|
||||
"description": "endPort indicates that the range of ports from port to endPort if set, inclusive, should be allowed by the policy. This field cannot be defined if the port field is not defined or if the port field is defined as a named (string) port. The endPort must be equal or greater than port.",
|
||||
"format": "int32",
|
||||
"type": "integer"
|
||||
},
|
||||
"port": {
|
||||
"$ref": "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString",
|
||||
"description": "The port on the given protocol. This can either be a numerical or named port on a pod. If this field is not provided, this matches all port names and numbers. If present, only traffic on the specified protocol AND port will be matched."
|
||||
"description": "port represents the port on the given protocol. This can either be a numerical or named port on a pod. If this field is not provided, this matches all port names and numbers. If present, only traffic on the specified protocol AND port will be matched."
|
||||
},
|
||||
"protocol": {
|
||||
"description": "The protocol (TCP, UDP, or SCTP) which traffic must match. If not specified, this field defaults to TCP.",
|
||||
"description": "protocol represents the protocol (TCP, UDP, or SCTP) which traffic must match. If not specified, this field defaults to TCP.",
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
@@ -11997,14 +11997,14 @@
|
||||
"description": "NetworkPolicySpec provides the specification of a NetworkPolicy",
|
||||
"properties": {
|
||||
"egress": {
|
||||
"description": "List of egress rules to be applied to the selected pods. Outgoing traffic is allowed if there are no NetworkPolicies selecting the pod (and cluster policy otherwise allows the traffic), OR if the traffic matches at least one egress rule across all of the NetworkPolicy objects whose podSelector matches the pod. If this field is empty then this NetworkPolicy limits all outgoing traffic (and serves solely to ensure that the pods it selects are isolated by default). This field is beta-level in 1.8",
|
||||
"description": "egress is a list of egress rules to be applied to the selected pods. Outgoing traffic is allowed if there are no NetworkPolicies selecting the pod (and cluster policy otherwise allows the traffic), OR if the traffic matches at least one egress rule across all of the NetworkPolicy objects whose podSelector matches the pod. If this field is empty then this NetworkPolicy limits all outgoing traffic (and serves solely to ensure that the pods it selects are isolated by default). This field is beta-level in 1.8",
|
||||
"items": {
|
||||
"$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicyEgressRule"
|
||||
},
|
||||
"type": "array"
|
||||
},
|
||||
"ingress": {
|
||||
"description": "List of ingress rules to be applied to the selected pods. Traffic is allowed to a pod if there are no NetworkPolicies selecting the pod (and cluster policy otherwise allows the traffic), OR if the traffic source is the pod's local node, OR if the traffic matches at least one ingress rule across all of the NetworkPolicy objects whose podSelector matches the pod. If this field is empty then this NetworkPolicy does not allow any traffic (and serves solely to ensure that the pods it selects are isolated by default)",
|
||||
"description": "ingress is a list of ingress rules to be applied to the selected pods. Traffic is allowed to a pod if there are no NetworkPolicies selecting the pod (and cluster policy otherwise allows the traffic), OR if the traffic source is the pod's local node, OR if the traffic matches at least one ingress rule across all of the NetworkPolicy objects whose podSelector matches the pod. If this field is empty then this NetworkPolicy does not allow any traffic (and serves solely to ensure that the pods it selects are isolated by default)",
|
||||
"items": {
|
||||
"$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicyIngressRule"
|
||||
},
|
||||
@@ -12012,10 +12012,10 @@
|
||||
},
|
||||
"podSelector": {
|
||||
"$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
|
||||
"description": "Selects the pods to which this NetworkPolicy object applies. The array of ingress rules is applied to any pods selected by this field. Multiple network policies can select the same set of pods. In this case, the ingress rules for each are combined additively. This field is NOT optional and follows standard label selector semantics. An empty podSelector matches all pods in this namespace."
|
||||
"description": "podSelector selects the pods to which this NetworkPolicy object applies. The array of ingress rules is applied to any pods selected by this field. Multiple network policies can select the same set of pods. In this case, the ingress rules for each are combined additively. This field is NOT optional and follows standard label selector semantics. An empty podSelector matches all pods in this namespace."
|
||||
},
|
||||
"policyTypes": {
|
||||
"description": "List of rule types that the NetworkPolicy relates to. Valid options are [\"Ingress\"], [\"Egress\"], or [\"Ingress\", \"Egress\"]. If this field is not specified, it will default based on the existence of Ingress or Egress rules; policies that contain an Egress section are assumed to affect Egress, and all policies (whether or not they contain an Ingress section) are assumed to affect Ingress. If you want to write an egress-only policy, you must explicitly specify policyTypes [ \"Egress\" ]. Likewise, if you want to write a policy that specifies that no egress is allowed, you must specify a policyTypes value that include \"Egress\" (since such a policy would not include an Egress section and would otherwise default to just [ \"Ingress\" ]). This field is beta-level in 1.8",
|
||||
"description": "policyTypes is a list of rule types that the NetworkPolicy relates to. Valid options are [\"Ingress\"], [\"Egress\"], or [\"Ingress\", \"Egress\"]. If this field is not specified, it will default based on the existence of ingress or egress rules; policies that contain an egress section are assumed to affect egress, and all policies (whether or not they contain an ingress section) are assumed to affect ingress. If you want to write an egress-only policy, you must explicitly specify policyTypes [ \"Egress\" ]. Likewise, if you want to write a policy that specifies that no egress is allowed, you must specify a policyTypes value that include \"Egress\" (since such a policy would not include an egress section and would otherwise default to just [ \"Ingress\" ]). This field is beta-level in 1.8",
|
||||
"items": {
|
||||
"type": "string"
|
||||
},
|
||||
@@ -12028,10 +12028,10 @@
|
||||
"type": "object"
|
||||
},
|
||||
"io.k8s.api.networking.v1.NetworkPolicyStatus": {
|
||||
"description": "NetworkPolicyStatus describe the current state of the NetworkPolicy.",
|
||||
"description": "NetworkPolicyStatus describes the current state of the NetworkPolicy.",
|
||||
"properties": {
|
||||
"conditions": {
|
||||
"description": "Conditions holds an array of metav1.Condition that describe the state of the NetworkPolicy. Current service state",
|
||||
"description": "conditions holds an array of metav1.Condition that describe the state of the NetworkPolicy. Current service state",
|
||||
"items": {
|
||||
"$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Condition"
|
||||
},
|
||||
@@ -12050,11 +12050,11 @@
|
||||
"description": "ServiceBackendPort is the service port being referenced.",
|
||||
"properties": {
|
||||
"name": {
|
||||
"description": "Name is the name of the port on the Service. This is a mutually exclusive setting with \"Number\".",
|
||||
"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\".",
|
||||
"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"
|
||||
}
|
||||
@@ -12078,7 +12078,7 @@
|
||||
},
|
||||
"spec": {
|
||||
"$ref": "#/definitions/io.k8s.api.networking.v1alpha1.ClusterCIDRSpec",
|
||||
"description": "Spec is the desired state of the ClusterCIDR. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
|
||||
"description": "spec is the desired state of the ClusterCIDR. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
|
||||
}
|
||||
},
|
||||
"type": "object",
|
||||
@@ -12098,7 +12098,7 @@
|
||||
"type": "string"
|
||||
},
|
||||
"items": {
|
||||
"description": "Items is the list of ClusterCIDRs.",
|
||||
"description": "items is the list of ClusterCIDRs.",
|
||||
"items": {
|
||||
"$ref": "#/definitions/io.k8s.api.networking.v1alpha1.ClusterCIDR"
|
||||
},
|
||||
@@ -12129,19 +12129,19 @@
|
||||
"description": "ClusterCIDRSpec defines the desired state of ClusterCIDR.",
|
||||
"properties": {
|
||||
"ipv4": {
|
||||
"description": "IPv4 defines an IPv4 IP block in CIDR notation(e.g. \"10.0.0.0/8\"). At least one of IPv4 and IPv6 must be specified. This field is immutable.",
|
||||
"description": "ipv4 defines an IPv4 IP block in CIDR notation(e.g. \"10.0.0.0/8\"). At least one of ipv4 and ipv6 must be specified. This field is immutable.",
|
||||
"type": "string"
|
||||
},
|
||||
"ipv6": {
|
||||
"description": "IPv6 defines an IPv6 IP block in CIDR notation(e.g. \"2001:db8::/64\"). At least one of IPv4 and IPv6 must be specified. This field is immutable.",
|
||||
"description": "ipv6 defines an IPv6 IP block in CIDR notation(e.g. \"2001:db8::/64\"). At least one of ipv4 and ipv6 must be specified. This field is immutable.",
|
||||
"type": "string"
|
||||
},
|
||||
"nodeSelector": {
|
||||
"$ref": "#/definitions/io.k8s.api.core.v1.NodeSelector",
|
||||
"description": "NodeSelector defines which nodes the config is applicable to. An empty or nil NodeSelector selects all nodes. This field is immutable."
|
||||
"description": "nodeSelector defines which nodes the config is applicable to. An empty or nil nodeSelector selects all nodes. This field is immutable."
|
||||
},
|
||||
"perNodeHostBits": {
|
||||
"description": "PerNodeHostBits defines the number of host bits to be configured per node. A subnet mask determines how much of the address is used for network bits and host bits. For example an IPv4 address of 192.168.0.0/24, splits the address into 24 bits for the network portion and 8 bits for the host portion. To allocate 256 IPs, set this field to 8 (a /24 mask for IPv4 or a /120 for IPv6). Minimum value is 4 (16 IPs). This field is immutable.",
|
||||
"description": "perNodeHostBits defines the number of host bits to be configured per node. A subnet mask determines how much of the address is used for network bits and host bits. For example an IPv4 address of 192.168.0.0/24, splits the address into 24 bits for the network portion and 8 bits for the host portion. To allocate 256 IPs, set this field to 8 (a /24 mask for IPv4 or a /120 for IPv6). Minimum value is 4 (16 IPs). This field is immutable.",
|
||||
"format": "int32",
|
||||
"type": "integer"
|
||||
}
|
||||
|
@@ -36,14 +36,14 @@
|
||||
}
|
||||
],
|
||||
"default": {},
|
||||
"description": "Backend defines the referenced service endpoint to which the traffic will be forwarded to."
|
||||
"description": "backend defines the referenced service endpoint to which the traffic will be forwarded to."
|
||||
},
|
||||
"path": {
|
||||
"description": "Path is matched against the path of an incoming request. Currently it can contain characters disallowed from the conventional \"path\" part of a URL as defined by RFC 3986. Paths must begin with a '/' and must be present when using PathType with value \"Exact\" or \"Prefix\".",
|
||||
"description": "path is matched against the path of an incoming request. Currently it can contain characters disallowed from the conventional \"path\" part of a URL as defined by RFC 3986. Paths must begin with a '/' and must be present when using PathType with value \"Exact\" or \"Prefix\".",
|
||||
"type": "string"
|
||||
},
|
||||
"pathType": {
|
||||
"description": "PathType determines the interpretation of the Path matching. PathType can be one of the following values: * Exact: Matches the URL path exactly. * Prefix: Matches based on a URL path prefix split by '/'. Matching is\n done on a path element by element basis. A path element refers is the\n list of labels in the path split by the '/' separator. A request is a\n match for path p if every p is an element-wise prefix of p of the\n request path. Note that if the last element of the path is a substring\n of the last element in request path, it is not a match (e.g. /foo/bar\n matches /foo/bar/baz, but does not match /foo/barbaz).\n* ImplementationSpecific: Interpretation of the Path matching is up to\n the IngressClass. Implementations can treat this as a separate PathType\n or treat it identically to Prefix or Exact path types.\nImplementations are required to support all path types.",
|
||||
"description": "pathType determines the interpretation of the path matching. PathType can be one of the following values: * Exact: Matches the URL path exactly. * Prefix: Matches based on a URL path prefix split by '/'. Matching is\n done on a path element by element basis. A path element refers is the\n list of labels in the path split by the '/' separator. A request is a\n match for path p if every p is an element-wise prefix of p of the\n request path. Note that if the last element of the path is a substring\n of the last element in request path, it is not a match (e.g. /foo/bar\n matches /foo/bar/baz, but does not match /foo/barbaz).\n* ImplementationSpecific: Interpretation of the Path matching is up to\n the IngressClass. Implementations can treat this as a separate PathType\n or treat it identically to Prefix or Exact path types.\nImplementations are required to support all path types.",
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
@@ -57,7 +57,7 @@
|
||||
"description": "HTTPIngressRuleValue is a list of http selectors pointing to backends. In the example: http://<host>/<path>?<searchpart> -> backend where where parts of the url correspond to RFC 3986, this resource will be used to match against everything after the last '/' and before the first '?' or '#'.",
|
||||
"properties": {
|
||||
"paths": {
|
||||
"description": "A collection of paths that map requests to backends.",
|
||||
"description": "paths is a collection of paths that map requests to backends.",
|
||||
"items": {
|
||||
"allOf": [
|
||||
{
|
||||
@@ -80,11 +80,11 @@
|
||||
"properties": {
|
||||
"cidr": {
|
||||
"default": "",
|
||||
"description": "CIDR is a string representing the IP Block Valid examples are \"192.168.1.0/24\" or \"2001:db8::/64\"",
|
||||
"description": "cidr is a string representing the IPBlock Valid examples are \"192.168.1.0/24\" or \"2001:db8::/64\"",
|
||||
"type": "string"
|
||||
},
|
||||
"except": {
|
||||
"description": "Except is a slice of CIDRs that should not be included within an IP Block Valid examples are \"192.168.1.0/24\" or \"2001:db8::/64\" Except values will be rejected if they are outside the CIDR range",
|
||||
"description": "except is a slice of CIDRs that should not be included within an IPBlock Valid examples are \"192.168.1.0/24\" or \"2001:db8::/64\" Except values will be rejected if they are outside the cidr range",
|
||||
"items": {
|
||||
"default": "",
|
||||
"type": "string"
|
||||
@@ -124,7 +124,7 @@
|
||||
}
|
||||
],
|
||||
"default": {},
|
||||
"description": "Spec is the desired state of the Ingress. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
|
||||
"description": "spec is the desired state of the Ingress. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
|
||||
},
|
||||
"status": {
|
||||
"allOf": [
|
||||
@@ -133,7 +133,7 @@
|
||||
}
|
||||
],
|
||||
"default": {},
|
||||
"description": "Status is the current state of the Ingress. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
|
||||
"description": "status is the current state of the Ingress. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
|
||||
}
|
||||
},
|
||||
"type": "object",
|
||||
@@ -154,7 +154,7 @@
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.TypedLocalObjectReference"
|
||||
}
|
||||
],
|
||||
"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\"."
|
||||
"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\"."
|
||||
},
|
||||
"service": {
|
||||
"allOf": [
|
||||
@@ -162,7 +162,7 @@
|
||||
"$ref": "#/components/schemas/io.k8s.api.networking.v1.IngressServiceBackend"
|
||||
}
|
||||
],
|
||||
"description": "Service references a Service as a Backend. This is a mutually exclusive setting with \"Resource\"."
|
||||
"description": "service references a service as a backend. This is a mutually exclusive setting with \"Resource\"."
|
||||
}
|
||||
},
|
||||
"type": "object"
|
||||
@@ -194,7 +194,7 @@
|
||||
}
|
||||
],
|
||||
"default": {},
|
||||
"description": "Spec is the desired state of the IngressClass. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
|
||||
"description": "spec is the desired state of the IngressClass. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
|
||||
}
|
||||
},
|
||||
"type": "object",
|
||||
@@ -214,7 +214,7 @@
|
||||
"type": "string"
|
||||
},
|
||||
"items": {
|
||||
"description": "Items is the list of IngressClasses.",
|
||||
"description": "items is the list of IngressClasses.",
|
||||
"items": {
|
||||
"allOf": [
|
||||
{
|
||||
@@ -255,25 +255,25 @@
|
||||
"description": "IngressClassParametersReference identifies an API object. This can be used to specify a cluster or namespace-scoped resource.",
|
||||
"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.",
|
||||
"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": {
|
||||
"default": "",
|
||||
"description": "Kind is the type of resource being referenced.",
|
||||
"description": "kind is the type of resource being referenced.",
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"default": "",
|
||||
"description": "Name is the name of resource being referenced.",
|
||||
"description": "name is the name of resource being referenced.",
|
||||
"type": "string"
|
||||
},
|
||||
"namespace": {
|
||||
"description": "Namespace is the namespace of the resource being referenced. This field is required when scope is set to \"Namespace\" and must be unset when scope is set to \"Cluster\".",
|
||||
"description": "namespace is the namespace of the resource being referenced. This field is required when scope is set to \"Namespace\" and must be unset when scope is set to \"Cluster\".",
|
||||
"type": "string"
|
||||
},
|
||||
"scope": {
|
||||
"description": "Scope represents if this refers to a cluster or namespace scoped resource. This may be set to \"Cluster\" (default) or \"Namespace\".",
|
||||
"description": "scope represents if this refers to a cluster or namespace scoped resource. This may be set to \"Cluster\" (default) or \"Namespace\".",
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
@@ -287,7 +287,7 @@
|
||||
"description": "IngressClassSpec provides information about the class of an Ingress.",
|
||||
"properties": {
|
||||
"controller": {
|
||||
"description": "Controller refers to the name of the controller that should handle this class. This allows for different \"flavors\" that are controlled by the same controller. For example, you may have different Parameters for the same implementing controller. This should be specified as a domain-prefixed path no more than 250 characters in length, e.g. \"acme.io/ingress-controller\". This field is immutable.",
|
||||
"description": "controller refers to the name of the controller that should handle this class. This allows for different \"flavors\" that are controlled by the same controller. For example, you may have different parameters for the same implementing controller. This should be specified as a domain-prefixed path no more than 250 characters in length, e.g. \"acme.io/ingress-controller\". This field is immutable.",
|
||||
"type": "string"
|
||||
},
|
||||
"parameters": {
|
||||
@@ -296,7 +296,7 @@
|
||||
"$ref": "#/components/schemas/io.k8s.api.networking.v1.IngressClassParametersReference"
|
||||
}
|
||||
],
|
||||
"description": "Parameters is a link to a custom resource containing additional configuration for the controller. This is optional if the controller does not require extra parameters."
|
||||
"description": "parameters is a link to a custom resource containing additional configuration for the controller. This is optional if the controller does not require extra parameters."
|
||||
}
|
||||
},
|
||||
"type": "object"
|
||||
@@ -309,7 +309,7 @@
|
||||
"type": "string"
|
||||
},
|
||||
"items": {
|
||||
"description": "Items is the list of Ingress.",
|
||||
"description": "items is the list of Ingress.",
|
||||
"items": {
|
||||
"allOf": [
|
||||
{
|
||||
@@ -350,15 +350,15 @@
|
||||
"description": "IngressLoadBalancerIngress represents the status of a load-balancer ingress point.",
|
||||
"properties": {
|
||||
"hostname": {
|
||||
"description": "Hostname is set for load-balancer ingress points that are DNS based.",
|
||||
"description": "hostname is set for load-balancer ingress points that are DNS based.",
|
||||
"type": "string"
|
||||
},
|
||||
"ip": {
|
||||
"description": "IP is set for load-balancer ingress points that are IP based.",
|
||||
"description": "ip is set for load-balancer ingress points that are IP based.",
|
||||
"type": "string"
|
||||
},
|
||||
"ports": {
|
||||
"description": "Ports provides information about the ports exposed by this LoadBalancer.",
|
||||
"description": "ports provides information about the ports exposed by this LoadBalancer.",
|
||||
"items": {
|
||||
"allOf": [
|
||||
{
|
||||
@@ -377,7 +377,7 @@
|
||||
"description": "IngressLoadBalancerStatus represents the status of a load-balancer.",
|
||||
"properties": {
|
||||
"ingress": {
|
||||
"description": "Ingress is a list containing ingress points for the load-balancer.",
|
||||
"description": "ingress is a list containing ingress points for the load-balancer.",
|
||||
"items": {
|
||||
"allOf": [
|
||||
{
|
||||
@@ -395,18 +395,18 @@
|
||||
"description": "IngressPortStatus represents the error condition of a service port",
|
||||
"properties": {
|
||||
"error": {
|
||||
"description": "Error is to record the problem with the service port The format of the error shall comply with the following rules: - built-in error values shall be specified in this file and those shall use\n CamelCase names\n- cloud provider specific error values must have names that comply with the\n format foo.example.com/CamelCase.",
|
||||
"description": "error is to record the problem with the service port The format of the error shall comply with the following rules: - built-in error values shall be specified in this file and those shall use\n CamelCase names\n- cloud provider specific error values must have names that comply with the\n format foo.example.com/CamelCase.",
|
||||
"type": "string"
|
||||
},
|
||||
"port": {
|
||||
"default": 0,
|
||||
"description": "Port is the port number of the ingress port.",
|
||||
"description": "port is the port number of the ingress port.",
|
||||
"format": "int32",
|
||||
"type": "integer"
|
||||
},
|
||||
"protocol": {
|
||||
"default": "",
|
||||
"description": "Protocol is the protocol of the ingress port. The supported values are: \"TCP\", \"UDP\", \"SCTP\"",
|
||||
"description": "protocol is the protocol of the ingress port. The supported values are: \"TCP\", \"UDP\", \"SCTP\"",
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
@@ -420,7 +420,7 @@
|
||||
"description": "IngressRule represents the rules mapping the paths under a specified host to the related backend services. Incoming requests are first evaluated for a host match, then routed to the backend associated with the matching IngressRuleValue.",
|
||||
"properties": {
|
||||
"host": {
|
||||
"description": "Host is the fully qualified domain name of a network host, as defined by RFC 3986. Note the following deviations from the \"host\" part of the URI as defined in RFC 3986: 1. IPs are not allowed. Currently an IngressRuleValue can only apply to\n the IP in the Spec of the parent Ingress.\n2. The `:` delimiter is not respected because ports are not allowed.\n\t Currently the port of an Ingress is implicitly :80 for http and\n\t :443 for https.\nBoth these may change in the future. Incoming requests are matched against the host before the IngressRuleValue. If the host is unspecified, the Ingress routes all traffic based on the specified IngressRuleValue.\n\nHost can be \"precise\" which is a domain name without the terminating dot of a network host (e.g. \"foo.bar.com\") or \"wildcard\", which is a domain name prefixed with a single wildcard label (e.g. \"*.foo.com\"). The wildcard character '*' must appear by itself as the first DNS label and matches only a single label. You cannot have a wildcard label by itself (e.g. Host == \"*\"). Requests will be matched against the Host field in the following way: 1. If Host is precise, the request matches this rule if the http host header is equal to Host. 2. If Host is a wildcard, then the request matches this rule if the http host header is to equal to the suffix (removing the first label) of the wildcard rule.",
|
||||
"description": "host is the fully qualified domain name of a network host, as defined by RFC 3986. Note the following deviations from the \"host\" part of the URI as defined in RFC 3986: 1. IPs are not allowed. Currently an IngressRuleValue can only apply to\n the IP in the Spec of the parent Ingress.\n2. The `:` delimiter is not respected because ports are not allowed.\n\t Currently the port of an Ingress is implicitly :80 for http and\n\t :443 for https.\nBoth these may change in the future. Incoming requests are matched against the host before the IngressRuleValue. If the host is unspecified, the Ingress routes all traffic based on the specified IngressRuleValue.\n\nhost can be \"precise\" which is a domain name without the terminating dot of a network host (e.g. \"foo.bar.com\") or \"wildcard\", which is a domain name prefixed with a single wildcard label (e.g. \"*.foo.com\"). The wildcard character '*' must appear by itself as the first DNS label and matches only a single label. You cannot have a wildcard label by itself (e.g. Host == \"*\"). Requests will be matched against the Host field in the following way: 1. If host is precise, the request matches this rule if the http host header is equal to Host. 2. If host is a wildcard, then the request matches this rule if the http host header is to equal to the suffix (removing the first label) of the wildcard rule.",
|
||||
"type": "string"
|
||||
},
|
||||
"http": {
|
||||
@@ -434,7 +434,7 @@
|
||||
"properties": {
|
||||
"name": {
|
||||
"default": "",
|
||||
"description": "Name is the referenced service. The service must exist in the same namespace as the Ingress object.",
|
||||
"description": "name is the referenced service. The service must exist in the same namespace as the Ingress object.",
|
||||
"type": "string"
|
||||
},
|
||||
"port": {
|
||||
@@ -444,7 +444,7 @@
|
||||
}
|
||||
],
|
||||
"default": {},
|
||||
"description": "Port of the referenced service. A port name or port number is required for a IngressServiceBackend."
|
||||
"description": "port of the referenced service. A port name or port number is required for a IngressServiceBackend."
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
@@ -461,14 +461,14 @@
|
||||
"$ref": "#/components/schemas/io.k8s.api.networking.v1.IngressBackend"
|
||||
}
|
||||
],
|
||||
"description": "DefaultBackend is the backend that should handle requests that don't match any rule. If Rules are not specified, DefaultBackend must be specified. If DefaultBackend is not set, the handling of requests that do not match any of the rules will be up to the Ingress controller."
|
||||
"description": "defaultBackend is the backend that should handle requests that don't match any rule. If Rules are not specified, DefaultBackend must be specified. If DefaultBackend is not set, the handling of requests that do not match any of the rules will be up to the Ingress controller."
|
||||
},
|
||||
"ingressClassName": {
|
||||
"description": "IngressClassName is the name of an IngressClass cluster resource. Ingress controller implementations use this field to know whether they should be serving this Ingress resource, by a transitive connection (controller -> IngressClass -> Ingress resource). Although the `kubernetes.io/ingress.class` annotation (simple constant name) was never formally defined, it was widely supported by Ingress controllers to create a direct binding between Ingress controller and Ingress resources. Newly created Ingress resources should prefer using the field. However, even though the annotation is officially deprecated, for backwards compatibility reasons, ingress controllers should still honor that annotation if present.",
|
||||
"description": "ingressClassName is the name of an IngressClass cluster resource. Ingress controller implementations use this field to know whether they should be serving this Ingress resource, by a transitive connection (controller -> IngressClass -> Ingress resource). Although the `kubernetes.io/ingress.class` annotation (simple constant name) was never formally defined, it was widely supported by Ingress controllers to create a direct binding between Ingress controller and Ingress resources. Newly created Ingress resources should prefer using the field. However, even though the annotation is officially deprecated, for backwards compatibility reasons, ingress controllers should still honor that annotation if present.",
|
||||
"type": "string"
|
||||
},
|
||||
"rules": {
|
||||
"description": "A list of host rules used to configure the Ingress. If unspecified, or no rule matches, all traffic is sent to the default backend.",
|
||||
"description": "rules is a list of host rules used to configure the Ingress. If unspecified, or no rule matches, all traffic is sent to the default backend.",
|
||||
"items": {
|
||||
"allOf": [
|
||||
{
|
||||
@@ -481,7 +481,7 @@
|
||||
"x-kubernetes-list-type": "atomic"
|
||||
},
|
||||
"tls": {
|
||||
"description": "TLS configuration. Currently the Ingress only supports a single TLS port, 443. If multiple members of this list specify different hosts, they will be multiplexed on the same port according to the hostname specified through the SNI TLS extension, if the ingress controller fulfilling the ingress supports SNI.",
|
||||
"description": "tls represents the TLS configuration. Currently the Ingress only supports a single TLS port, 443. If multiple members of this list specify different hosts, they will be multiplexed on the same port according to the hostname specified through the SNI TLS extension, if the ingress controller fulfilling the ingress supports SNI.",
|
||||
"items": {
|
||||
"allOf": [
|
||||
{
|
||||
@@ -506,16 +506,16 @@
|
||||
}
|
||||
],
|
||||
"default": {},
|
||||
"description": "LoadBalancer contains the current status of the load-balancer."
|
||||
"description": "loadBalancer contains the current status of the load-balancer."
|
||||
}
|
||||
},
|
||||
"type": "object"
|
||||
},
|
||||
"io.k8s.api.networking.v1.IngressTLS": {
|
||||
"description": "IngressTLS describes the transport layer security associated with an Ingress.",
|
||||
"description": "IngressTLS describes the transport layer security associated with an ingress.",
|
||||
"properties": {
|
||||
"hosts": {
|
||||
"description": "Hosts are a list of hosts included in the TLS certificate. The values in this list must match the name/s used in the tlsSecret. Defaults to the wildcard host setting for the loadbalancer controller fulfilling this Ingress, if left unspecified.",
|
||||
"description": "hosts is a list of hosts included in the TLS certificate. The values in this list must match the name/s used in the tlsSecret. Defaults to the wildcard host setting for the loadbalancer controller fulfilling this Ingress, if left unspecified.",
|
||||
"items": {
|
||||
"default": "",
|
||||
"type": "string"
|
||||
@@ -524,7 +524,7 @@
|
||||
"x-kubernetes-list-type": "atomic"
|
||||
},
|
||||
"secretName": {
|
||||
"description": "SecretName is the name of the secret used to terminate TLS traffic on port 443. Field is left optional to allow TLS routing based on SNI hostname alone. If the SNI host in a listener conflicts with the \"Host\" header field used by an IngressRule, the SNI host is used for termination and value of the Host header is used for routing.",
|
||||
"description": "secretName is the name of the secret used to terminate TLS traffic on port 443. Field is left optional to allow TLS routing based on SNI hostname alone. If the SNI host in a listener conflicts with the \"Host\" header field used by an IngressRule, the SNI host is used for termination and value of the \"Host\" header is used for routing.",
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
@@ -557,7 +557,7 @@
|
||||
}
|
||||
],
|
||||
"default": {},
|
||||
"description": "Specification of the desired behavior for this NetworkPolicy."
|
||||
"description": "spec represents the specification of the desired behavior for this NetworkPolicy."
|
||||
},
|
||||
"status": {
|
||||
"allOf": [
|
||||
@@ -566,7 +566,7 @@
|
||||
}
|
||||
],
|
||||
"default": {},
|
||||
"description": "Status is the current state of the NetworkPolicy. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
|
||||
"description": "status represents the current state of the NetworkPolicy. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
|
||||
}
|
||||
},
|
||||
"type": "object",
|
||||
@@ -582,7 +582,7 @@
|
||||
"description": "NetworkPolicyEgressRule describes a particular set of traffic that is allowed out of pods matched by a NetworkPolicySpec's podSelector. The traffic must match both ports and to. This type is beta-level in 1.8",
|
||||
"properties": {
|
||||
"ports": {
|
||||
"description": "List of destination ports for outgoing traffic. Each item in this list is combined using a logical OR. If this field is empty or missing, this rule matches all ports (traffic not restricted by port). If this field is present and contains at least one item, then this rule allows traffic only if the traffic matches at least one port in the list.",
|
||||
"description": "ports is a list of destination ports for outgoing traffic. Each item in this list is combined using a logical OR. If this field is empty or missing, this rule matches all ports (traffic not restricted by port). If this field is present and contains at least one item, then this rule allows traffic only if the traffic matches at least one port in the list.",
|
||||
"items": {
|
||||
"allOf": [
|
||||
{
|
||||
@@ -594,7 +594,7 @@
|
||||
"type": "array"
|
||||
},
|
||||
"to": {
|
||||
"description": "List of destinations for outgoing traffic of pods selected for this rule. Items in this list are combined using a logical OR operation. If this field is empty or missing, this rule matches all destinations (traffic not restricted by destination). If this field is present and contains at least one item, this rule allows traffic only if the traffic matches at least one item in the to list.",
|
||||
"description": "to is a list of destinations for outgoing traffic of pods selected for this rule. Items in this list are combined using a logical OR operation. If this field is empty or missing, this rule matches all destinations (traffic not restricted by destination). If this field is present and contains at least one item, this rule allows traffic only if the traffic matches at least one item in the to list.",
|
||||
"items": {
|
||||
"allOf": [
|
||||
{
|
||||
@@ -612,7 +612,7 @@
|
||||
"description": "NetworkPolicyIngressRule describes a particular set of traffic that is allowed to the pods matched by a NetworkPolicySpec's podSelector. The traffic must match both ports and from.",
|
||||
"properties": {
|
||||
"from": {
|
||||
"description": "List of sources which should be able to access the pods selected for this rule. Items in this list are combined using a logical OR operation. If this field is empty or missing, this rule matches all sources (traffic not restricted by source). If this field is present and contains at least one item, this rule allows traffic only if the traffic matches at least one item in the from list.",
|
||||
"description": "from is a list of sources which should be able to access the pods selected for this rule. Items in this list are combined using a logical OR operation. If this field is empty or missing, this rule matches all sources (traffic not restricted by source). If this field is present and contains at least one item, this rule allows traffic only if the traffic matches at least one item in the from list.",
|
||||
"items": {
|
||||
"allOf": [
|
||||
{
|
||||
@@ -624,7 +624,7 @@
|
||||
"type": "array"
|
||||
},
|
||||
"ports": {
|
||||
"description": "List of ports which should be made accessible on the pods selected for this rule. Each item in this list is combined using a logical OR. If this field is empty or missing, this rule matches all ports (traffic not restricted by port). If this field is present and contains at least one item, then this rule allows traffic only if the traffic matches at least one port in the list.",
|
||||
"description": "ports is a list of ports which should be made accessible on the pods selected for this rule. Each item in this list is combined using a logical OR. If this field is empty or missing, this rule matches all ports (traffic not restricted by port). If this field is present and contains at least one item, then this rule allows traffic only if the traffic matches at least one port in the list.",
|
||||
"items": {
|
||||
"allOf": [
|
||||
{
|
||||
@@ -646,7 +646,7 @@
|
||||
"type": "string"
|
||||
},
|
||||
"items": {
|
||||
"description": "Items is a list of schema objects.",
|
||||
"description": "items is a list of schema objects.",
|
||||
"items": {
|
||||
"allOf": [
|
||||
{
|
||||
@@ -692,7 +692,7 @@
|
||||
"$ref": "#/components/schemas/io.k8s.api.networking.v1.IPBlock"
|
||||
}
|
||||
],
|
||||
"description": "IPBlock defines policy on a particular IPBlock. If this field is set then neither of the other fields can be."
|
||||
"description": "ipBlock defines policy on a particular IPBlock. If this field is set then neither of the other fields can be."
|
||||
},
|
||||
"namespaceSelector": {
|
||||
"allOf": [
|
||||
@@ -700,7 +700,7 @@
|
||||
"$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector"
|
||||
}
|
||||
],
|
||||
"description": "Selects Namespaces using cluster-scoped labels. This field follows standard label selector semantics; if present but empty, it selects all namespaces.\n\nIf PodSelector is also set, then the NetworkPolicyPeer as a whole selects the Pods matching PodSelector in the Namespaces selected by NamespaceSelector. Otherwise it selects all Pods in the Namespaces selected by NamespaceSelector."
|
||||
"description": "namespaceSelector selects namespaces using cluster-scoped labels. This field follows standard label selector semantics; if present but empty, it selects all namespaces.\n\nIf podSelector is also set, then the NetworkPolicyPeer as a whole selects the pods matching podSelector in the namespaces selected by namespaceSelector. Otherwise it selects all pods in the namespaces selected by namespaceSelector."
|
||||
},
|
||||
"podSelector": {
|
||||
"allOf": [
|
||||
@@ -708,7 +708,7 @@
|
||||
"$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector"
|
||||
}
|
||||
],
|
||||
"description": "This is a label selector which selects Pods. This field follows standard label selector semantics; if present but empty, it selects all pods.\n\nIf NamespaceSelector is also set, then the NetworkPolicyPeer as a whole selects the Pods matching PodSelector in the Namespaces selected by NamespaceSelector. Otherwise it selects the Pods matching PodSelector in the policy's own Namespace."
|
||||
"description": "podSelector is a label selector which selects pods. This field follows standard label selector semantics; if present but empty, it selects all pods.\n\nIf namespaceSelector is also set, then the NetworkPolicyPeer as a whole selects the pods matching podSelector in the Namespaces selected by NamespaceSelector. Otherwise it selects the pods matching podSelector in the policy's own namespace."
|
||||
}
|
||||
},
|
||||
"type": "object"
|
||||
@@ -717,7 +717,7 @@
|
||||
"description": "NetworkPolicyPort describes a port to allow traffic on",
|
||||
"properties": {
|
||||
"endPort": {
|
||||
"description": "If set, indicates that the range of ports from port to endPort, inclusive, should be allowed by the policy. This field cannot be defined if the port field is not defined or if the port field is defined as a named (string) port. The endPort must be equal or greater than port.",
|
||||
"description": "endPort indicates that the range of ports from port to endPort if set, inclusive, should be allowed by the policy. This field cannot be defined if the port field is not defined or if the port field is defined as a named (string) port. The endPort must be equal or greater than port.",
|
||||
"format": "int32",
|
||||
"type": "integer"
|
||||
},
|
||||
@@ -727,10 +727,10 @@
|
||||
"$ref": "#/components/schemas/io.k8s.apimachinery.pkg.util.intstr.IntOrString"
|
||||
}
|
||||
],
|
||||
"description": "The port on the given protocol. This can either be a numerical or named port on a pod. If this field is not provided, this matches all port names and numbers. If present, only traffic on the specified protocol AND port will be matched."
|
||||
"description": "port represents the port on the given protocol. This can either be a numerical or named port on a pod. If this field is not provided, this matches all port names and numbers. If present, only traffic on the specified protocol AND port will be matched."
|
||||
},
|
||||
"protocol": {
|
||||
"description": "The protocol (TCP, UDP, or SCTP) which traffic must match. If not specified, this field defaults to TCP.",
|
||||
"description": "protocol represents the protocol (TCP, UDP, or SCTP) which traffic must match. If not specified, this field defaults to TCP.",
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
@@ -740,7 +740,7 @@
|
||||
"description": "NetworkPolicySpec provides the specification of a NetworkPolicy",
|
||||
"properties": {
|
||||
"egress": {
|
||||
"description": "List of egress rules to be applied to the selected pods. Outgoing traffic is allowed if there are no NetworkPolicies selecting the pod (and cluster policy otherwise allows the traffic), OR if the traffic matches at least one egress rule across all of the NetworkPolicy objects whose podSelector matches the pod. If this field is empty then this NetworkPolicy limits all outgoing traffic (and serves solely to ensure that the pods it selects are isolated by default). This field is beta-level in 1.8",
|
||||
"description": "egress is a list of egress rules to be applied to the selected pods. Outgoing traffic is allowed if there are no NetworkPolicies selecting the pod (and cluster policy otherwise allows the traffic), OR if the traffic matches at least one egress rule across all of the NetworkPolicy objects whose podSelector matches the pod. If this field is empty then this NetworkPolicy limits all outgoing traffic (and serves solely to ensure that the pods it selects are isolated by default). This field is beta-level in 1.8",
|
||||
"items": {
|
||||
"allOf": [
|
||||
{
|
||||
@@ -752,7 +752,7 @@
|
||||
"type": "array"
|
||||
},
|
||||
"ingress": {
|
||||
"description": "List of ingress rules to be applied to the selected pods. Traffic is allowed to a pod if there are no NetworkPolicies selecting the pod (and cluster policy otherwise allows the traffic), OR if the traffic source is the pod's local node, OR if the traffic matches at least one ingress rule across all of the NetworkPolicy objects whose podSelector matches the pod. If this field is empty then this NetworkPolicy does not allow any traffic (and serves solely to ensure that the pods it selects are isolated by default)",
|
||||
"description": "ingress is a list of ingress rules to be applied to the selected pods. Traffic is allowed to a pod if there are no NetworkPolicies selecting the pod (and cluster policy otherwise allows the traffic), OR if the traffic source is the pod's local node, OR if the traffic matches at least one ingress rule across all of the NetworkPolicy objects whose podSelector matches the pod. If this field is empty then this NetworkPolicy does not allow any traffic (and serves solely to ensure that the pods it selects are isolated by default)",
|
||||
"items": {
|
||||
"allOf": [
|
||||
{
|
||||
@@ -770,10 +770,10 @@
|
||||
}
|
||||
],
|
||||
"default": {},
|
||||
"description": "Selects the pods to which this NetworkPolicy object applies. The array of ingress rules is applied to any pods selected by this field. Multiple network policies can select the same set of pods. In this case, the ingress rules for each are combined additively. This field is NOT optional and follows standard label selector semantics. An empty podSelector matches all pods in this namespace."
|
||||
"description": "podSelector selects the pods to which this NetworkPolicy object applies. The array of ingress rules is applied to any pods selected by this field. Multiple network policies can select the same set of pods. In this case, the ingress rules for each are combined additively. This field is NOT optional and follows standard label selector semantics. An empty podSelector matches all pods in this namespace."
|
||||
},
|
||||
"policyTypes": {
|
||||
"description": "List of rule types that the NetworkPolicy relates to. Valid options are [\"Ingress\"], [\"Egress\"], or [\"Ingress\", \"Egress\"]. If this field is not specified, it will default based on the existence of Ingress or Egress rules; policies that contain an Egress section are assumed to affect Egress, and all policies (whether or not they contain an Ingress section) are assumed to affect Ingress. If you want to write an egress-only policy, you must explicitly specify policyTypes [ \"Egress\" ]. Likewise, if you want to write a policy that specifies that no egress is allowed, you must specify a policyTypes value that include \"Egress\" (since such a policy would not include an Egress section and would otherwise default to just [ \"Ingress\" ]). This field is beta-level in 1.8",
|
||||
"description": "policyTypes is a list of rule types that the NetworkPolicy relates to. Valid options are [\"Ingress\"], [\"Egress\"], or [\"Ingress\", \"Egress\"]. If this field is not specified, it will default based on the existence of ingress or egress rules; policies that contain an egress section are assumed to affect egress, and all policies (whether or not they contain an ingress section) are assumed to affect ingress. If you want to write an egress-only policy, you must explicitly specify policyTypes [ \"Egress\" ]. Likewise, if you want to write a policy that specifies that no egress is allowed, you must specify a policyTypes value that include \"Egress\" (since such a policy would not include an egress section and would otherwise default to just [ \"Ingress\" ]). This field is beta-level in 1.8",
|
||||
"items": {
|
||||
"default": "",
|
||||
"type": "string"
|
||||
@@ -787,10 +787,10 @@
|
||||
"type": "object"
|
||||
},
|
||||
"io.k8s.api.networking.v1.NetworkPolicyStatus": {
|
||||
"description": "NetworkPolicyStatus describe the current state of the NetworkPolicy.",
|
||||
"description": "NetworkPolicyStatus describes the current state of the NetworkPolicy.",
|
||||
"properties": {
|
||||
"conditions": {
|
||||
"description": "Conditions holds an array of metav1.Condition that describe the state of the NetworkPolicy. Current service state",
|
||||
"description": "conditions holds an array of metav1.Condition that describe the state of the NetworkPolicy. Current service state",
|
||||
"items": {
|
||||
"allOf": [
|
||||
{
|
||||
@@ -814,11 +814,11 @@
|
||||
"description": "ServiceBackendPort is the service port being referenced.",
|
||||
"properties": {
|
||||
"name": {
|
||||
"description": "Name is the name of the port on the Service. This is a mutually exclusive setting with \"Number\".",
|
||||
"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\".",
|
||||
"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"
|
||||
}
|
||||
|
@@ -109,7 +109,7 @@
|
||||
}
|
||||
],
|
||||
"default": {},
|
||||
"description": "Spec is the desired state of the ClusterCIDR. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
|
||||
"description": "spec is the desired state of the ClusterCIDR. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
|
||||
}
|
||||
},
|
||||
"type": "object",
|
||||
@@ -129,7 +129,7 @@
|
||||
"type": "string"
|
||||
},
|
||||
"items": {
|
||||
"description": "Items is the list of ClusterCIDRs.",
|
||||
"description": "items is the list of ClusterCIDRs.",
|
||||
"items": {
|
||||
"allOf": [
|
||||
{
|
||||
@@ -171,12 +171,12 @@
|
||||
"properties": {
|
||||
"ipv4": {
|
||||
"default": "",
|
||||
"description": "IPv4 defines an IPv4 IP block in CIDR notation(e.g. \"10.0.0.0/8\"). At least one of IPv4 and IPv6 must be specified. This field is immutable.",
|
||||
"description": "ipv4 defines an IPv4 IP block in CIDR notation(e.g. \"10.0.0.0/8\"). At least one of ipv4 and ipv6 must be specified. This field is immutable.",
|
||||
"type": "string"
|
||||
},
|
||||
"ipv6": {
|
||||
"default": "",
|
||||
"description": "IPv6 defines an IPv6 IP block in CIDR notation(e.g. \"2001:db8::/64\"). At least one of IPv4 and IPv6 must be specified. This field is immutable.",
|
||||
"description": "ipv6 defines an IPv6 IP block in CIDR notation(e.g. \"2001:db8::/64\"). At least one of ipv4 and ipv6 must be specified. This field is immutable.",
|
||||
"type": "string"
|
||||
},
|
||||
"nodeSelector": {
|
||||
@@ -185,11 +185,11 @@
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.NodeSelector"
|
||||
}
|
||||
],
|
||||
"description": "NodeSelector defines which nodes the config is applicable to. An empty or nil NodeSelector selects all nodes. This field is immutable."
|
||||
"description": "nodeSelector defines which nodes the config is applicable to. An empty or nil nodeSelector selects all nodes. This field is immutable."
|
||||
},
|
||||
"perNodeHostBits": {
|
||||
"default": 0,
|
||||
"description": "PerNodeHostBits defines the number of host bits to be configured per node. A subnet mask determines how much of the address is used for network bits and host bits. For example an IPv4 address of 192.168.0.0/24, splits the address into 24 bits for the network portion and 8 bits for the host portion. To allocate 256 IPs, set this field to 8 (a /24 mask for IPv4 or a /120 for IPv6). Minimum value is 4 (16 IPs). This field is immutable.",
|
||||
"description": "perNodeHostBits defines the number of host bits to be configured per node. A subnet mask determines how much of the address is used for network bits and host bits. For example an IPv4 address of 192.168.0.0/24, splits the address into 24 bits for the network portion and 8 bits for the host portion. To allocate 256 IPs, set this field to 8 (a /24 mask for IPv4 or a /120 for IPv6). Minimum value is 4 (16 IPs). This field is immutable.",
|
||||
"format": "int32",
|
||||
"type": "integer"
|
||||
}
|
||||
|
Reference in New Issue
Block a user