@@ -1701,11 +1784,19 @@ Specifies options for the Ingress resources, such as allowed hostnames and Ingre
hostnameCollisionScope |
enum |
- Defines the scope of hostname collision check performed when Tenant Owners create Ingress with allowed hostnames.
- - Cluster: disallow the creation of an Ingress if the pair hostname and path is already used across the Namespaces managed by Capsule.
- - Tenant: disallow the creation of an Ingress if the pair hostname and path is already used across the Namespaces of the Tenant.
- - Namespace: disallow the creation of an Ingress if the pair hostname and path is already used in the Ingress Namespace.
- Optional.
+ Defines the scope of hostname collision check performed when Tenant Owners create Ingress with allowed hostnames.
+
+
+- Cluster: disallow the creation of an Ingress if the pair hostname and path is already used across the Namespaces managed by Capsule.
+
+
+- Tenant: disallow the creation of an Ingress if the pair hostname and path is already used across the Namespaces of the Tenant.
+
+
+- Namespace: disallow the creation of an Ingress if the pair hostname and path is already used in the Ingress Namespace.
+
+
+Optional.
Enum: Cluster, Tenant, Namespace, Disabled
Default: Disabled
@@ -1719,7 +1810,10 @@ Specifies options for the Ingress resources, such as allowed hostnames and Ingre
-Specifies the allowed IngressClasses assigned to the Tenant. Capsule assures that all Ingress resources created in the Tenant can use only one of the allowed IngressClasses. A default value can be specified, and all the Ingress resources created will inherit the declared class. Optional.
+Specifies the allowed IngressClasses assigned to the Tenant.
+Capsule assures that all Ingress resources created in the Tenant can use only one of the allowed IngressClasses.
+A default value can be specified, and all the Ingress resources created will inherit the declared class.
+Optional.
@@ -1762,7 +1856,9 @@ Specifies the allowed IngressClasses assigned to the Tenant. Capsule assures tha
matchLabels |
map[string]string |
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+map is equivalent to an element of matchExpressions, whose key field is "key", the
+operator is "In", and the values array contains only "value". The requirements are ANDed.
|
false |
@@ -1773,7 +1869,8 @@ Specifies the allowed IngressClasses assigned to the Tenant. Capsule assures tha
-A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.
+A label selector requirement is a selector that contains values, a key, and an operator that
+relates the key and values.
@@ -1795,14 +1892,18 @@ A label selector requirement is a selector that contains values, a key, and an o
operator |
string |
- operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.
+ operator represents a key's relationship to a set of values.
+Valid operators are In, NotIn, Exists and DoesNotExist.
|
true |
values |
[]string |
- values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.
+ values is an array of string values. If the operator is In or NotIn,
+the values array must be non-empty. If the operator is Exists or DoesNotExist,
+the values array must be empty. This array is replaced during a strategic
+merge patch.
|
false |
@@ -2149,28 +2250,54 @@ NetworkPolicySpec provides the specification of a NetworkPolicy
podSelector |
object |
- 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.
+ 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.
|
true |
egress |
[]object |
- 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
+ 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
|
false |
ingress |
[]object |
- 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)
+ 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)
|
false |
policyTypes |
[]string |
- 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
+ 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
|
false |
@@ -2181,7 +2308,12 @@ NetworkPolicySpec provides the specification of a NetworkPolicy
-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.
+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.
@@ -2203,7 +2335,9 @@ podSelector selects the pods to which this NetworkPolicy object applies. The arr
matchLabels |
map[string]string |
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+map is equivalent to an element of matchExpressions, whose key field is "key", the
+operator is "In", and the values array contains only "value". The requirements are ANDed.
|
false |
@@ -2214,7 +2348,8 @@ podSelector selects the pods to which this NetworkPolicy object applies. The arr
-A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.
+A label selector requirement is a selector that contains values, a key, and an operator that
+relates the key and values.
@@ -2236,14 +2371,18 @@ A label selector requirement is a selector that contains values, a key, and an o
operator |
string |
- operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.
+ operator represents a key's relationship to a set of values.
+Valid operators are In, NotIn, Exists and DoesNotExist.
|
true |
values |
[]string |
- values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.
+ values is an array of string values. If the operator is In or NotIn,
+the values array must be non-empty. If the operator is Exists or DoesNotExist,
+the values array must be empty. This array is replaced during a strategic
+merge patch.
|
false |
@@ -2254,7 +2393,9 @@ A label selector requirement is a selector that contains values, a key, and an o
-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
+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
@@ -2269,14 +2410,22 @@ NetworkPolicyEgressRule describes a particular set of traffic that is allowed ou
ports |
[]object |
- 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.
+ 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.
|
false |
to |
[]object |
- 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.
+ 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.
|
false |
@@ -2302,7 +2451,10 @@ NetworkPolicyPort describes a port to allow traffic on
endPort |
integer |
- 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.
+ 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
|
@@ -2311,14 +2463,18 @@ NetworkPolicyPort describes a port to allow traffic on
port |
int or string |
- 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.
+ 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.
|
false |
protocol |
string |
- protocol represents the protocol (TCP, UDP, or SCTP) which traffic must match. If not specified, this field defaults to TCP.
+ protocol represents the protocol (TCP, UDP, or SCTP) which traffic must match.
+If not specified, this field defaults to TCP.
Default: TCP
|
@@ -2331,7 +2487,8 @@ NetworkPolicyPort describes a port to allow traffic on
-NetworkPolicyPeer describes a peer to allow traffic to/from. Only certain combinations of fields are allowed
+NetworkPolicyPeer describes a peer to allow traffic to/from. Only certain combinations of
+fields are allowed
@@ -2346,23 +2503,34 @@ NetworkPolicyPeer describes a peer to allow traffic to/from. Only certain combin
ipBlock |
object |
- ipBlock defines policy on a particular IPBlock. If this field is set then neither of the other fields can be.
+ ipBlock defines policy on a particular IPBlock. If this field is set then
+neither of the other fields can be.
|
false |
namespaceSelector |
object |
- namespaceSelector selects namespaces using cluster-scoped labels. This field follows standard label selector semantics; if present but empty, it selects all namespaces.
- If 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.
+ namespaceSelector selects namespaces using cluster-scoped labels. This field follows
+standard label selector semantics; if present but empty, it selects all namespaces.
+
+
+If 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.
|
false |
podSelector |
object |
- podSelector is a label selector which selects pods. This field follows standard label selector semantics; if present but empty, it selects all pods.
- If 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.
+ podSelector is a label selector which selects pods. This field follows standard label
+selector semantics; if present but empty, it selects all pods.
+
+
+If 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.
|
false |
@@ -2373,7 +2541,8 @@ NetworkPolicyPeer describes a peer to allow traffic to/from. Only certain combin
-ipBlock defines policy on a particular IPBlock. If this field is set then neither of the other fields can be.
+ipBlock defines policy on a particular IPBlock. If this field is set then
+neither of the other fields can be.
@@ -2388,14 +2557,17 @@ ipBlock defines policy on a particular IPBlock. If this field is set then neithe
cidr |
string |
- cidr is a string representing the IPBlock Valid examples are "192.168.1.0/24" or "2001:db8::/64"
+ cidr is a string representing the IPBlock
+Valid examples are "192.168.1.0/24" or "2001:db8::/64"
|
true |
except |
[]string |
- 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
+ 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
|
false |
@@ -2406,8 +2578,13 @@ ipBlock defines policy on a particular IPBlock. If this field is set then neithe
-namespaceSelector selects namespaces using cluster-scoped labels. This field follows standard label selector semantics; if present but empty, it selects all namespaces.
- If 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.
+namespaceSelector selects namespaces using cluster-scoped labels. This field follows
+standard label selector semantics; if present but empty, it selects all namespaces.
+
+
+If 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.
@@ -2429,7 +2606,9 @@ namespaceSelector selects namespaces using cluster-scoped labels. This field fol
matchLabels |
map[string]string |
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+map is equivalent to an element of matchExpressions, whose key field is "key", the
+operator is "In", and the values array contains only "value". The requirements are ANDed.
|
false |
@@ -2440,7 +2619,8 @@ namespaceSelector selects namespaces using cluster-scoped labels. This field fol
-A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.
+A label selector requirement is a selector that contains values, a key, and an operator that
+relates the key and values.
@@ -2462,14 +2642,18 @@ A label selector requirement is a selector that contains values, a key, and an o
operator |
string |
- operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.
+ operator represents a key's relationship to a set of values.
+Valid operators are In, NotIn, Exists and DoesNotExist.
|
true |
values |
[]string |
- values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.
+ values is an array of string values. If the operator is In or NotIn,
+the values array must be non-empty. If the operator is Exists or DoesNotExist,
+the values array must be empty. This array is replaced during a strategic
+merge patch.
|
false |
@@ -2480,8 +2664,13 @@ A label selector requirement is a selector that contains values, a key, and an o
-podSelector is a label selector which selects pods. This field follows standard label selector semantics; if present but empty, it selects all pods.
- If 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.
+podSelector is a label selector which selects pods. This field follows standard label
+selector semantics; if present but empty, it selects all pods.
+
+
+If 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.
@@ -2503,7 +2692,9 @@ podSelector is a label selector which selects pods. This field follows standard
matchLabels |
map[string]string |
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+map is equivalent to an element of matchExpressions, whose key field is "key", the
+operator is "In", and the values array contains only "value". The requirements are ANDed.
|
false |
@@ -2514,7 +2705,8 @@ podSelector is a label selector which selects pods. This field follows standard
-A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.
+A label selector requirement is a selector that contains values, a key, and an operator that
+relates the key and values.
@@ -2536,14 +2728,18 @@ A label selector requirement is a selector that contains values, a key, and an o
operator |
string |
- operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.
+ operator represents a key's relationship to a set of values.
+Valid operators are In, NotIn, Exists and DoesNotExist.
|
true |
values |
[]string |
- values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.
+ values is an array of string values. If the operator is In or NotIn,
+the values array must be non-empty. If the operator is Exists or DoesNotExist,
+the values array must be empty. This array is replaced during a strategic
+merge patch.
|
false |
@@ -2554,7 +2750,8 @@ A label selector requirement is a selector that contains values, a key, and an o
-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.
+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.
@@ -2569,14 +2766,22 @@ NetworkPolicyIngressRule describes a particular set of traffic that is allowed t
from |
[]object |
- 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.
+ 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.
|
false |
ports |
[]object |
- 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.
+ 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.
|
false |
@@ -2587,7 +2792,8 @@ NetworkPolicyIngressRule describes a particular set of traffic that is allowed t
-NetworkPolicyPeer describes a peer to allow traffic to/from. Only certain combinations of fields are allowed
+NetworkPolicyPeer describes a peer to allow traffic to/from. Only certain combinations of
+fields are allowed
@@ -2602,23 +2808,34 @@ NetworkPolicyPeer describes a peer to allow traffic to/from. Only certain combin
ipBlock |
object |
- ipBlock defines policy on a particular IPBlock. If this field is set then neither of the other fields can be.
+ ipBlock defines policy on a particular IPBlock. If this field is set then
+neither of the other fields can be.
|
false |
namespaceSelector |
object |
- namespaceSelector selects namespaces using cluster-scoped labels. This field follows standard label selector semantics; if present but empty, it selects all namespaces.
- If 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.
+ namespaceSelector selects namespaces using cluster-scoped labels. This field follows
+standard label selector semantics; if present but empty, it selects all namespaces.
+
+
+If 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.
|
false |
podSelector |
object |
- podSelector is a label selector which selects pods. This field follows standard label selector semantics; if present but empty, it selects all pods.
- If 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.
+ podSelector is a label selector which selects pods. This field follows standard label
+selector semantics; if present but empty, it selects all pods.
+
+
+If 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.
|
false |
@@ -2629,7 +2846,8 @@ NetworkPolicyPeer describes a peer to allow traffic to/from. Only certain combin
-ipBlock defines policy on a particular IPBlock. If this field is set then neither of the other fields can be.
+ipBlock defines policy on a particular IPBlock. If this field is set then
+neither of the other fields can be.
@@ -2644,14 +2862,17 @@ ipBlock defines policy on a particular IPBlock. If this field is set then neithe
cidr |
string |
- cidr is a string representing the IPBlock Valid examples are "192.168.1.0/24" or "2001:db8::/64"
+ cidr is a string representing the IPBlock
+Valid examples are "192.168.1.0/24" or "2001:db8::/64"
|
true |
except |
[]string |
- 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
+ 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
|
false |
@@ -2662,8 +2883,13 @@ ipBlock defines policy on a particular IPBlock. If this field is set then neithe
-namespaceSelector selects namespaces using cluster-scoped labels. This field follows standard label selector semantics; if present but empty, it selects all namespaces.
- If 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.
+namespaceSelector selects namespaces using cluster-scoped labels. This field follows
+standard label selector semantics; if present but empty, it selects all namespaces.
+
+
+If 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.
@@ -2685,7 +2911,9 @@ namespaceSelector selects namespaces using cluster-scoped labels. This field fol
matchLabels |
map[string]string |
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+map is equivalent to an element of matchExpressions, whose key field is "key", the
+operator is "In", and the values array contains only "value". The requirements are ANDed.
|
false |
@@ -2696,7 +2924,8 @@ namespaceSelector selects namespaces using cluster-scoped labels. This field fol
-A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.
+A label selector requirement is a selector that contains values, a key, and an operator that
+relates the key and values.
@@ -2718,14 +2947,18 @@ A label selector requirement is a selector that contains values, a key, and an o
operator |
string |
- operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.
+ operator represents a key's relationship to a set of values.
+Valid operators are In, NotIn, Exists and DoesNotExist.
|
true |
values |
[]string |
- values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.
+ values is an array of string values. If the operator is In or NotIn,
+the values array must be non-empty. If the operator is Exists or DoesNotExist,
+the values array must be empty. This array is replaced during a strategic
+merge patch.
|
false |
@@ -2736,8 +2969,13 @@ A label selector requirement is a selector that contains values, a key, and an o
-podSelector is a label selector which selects pods. This field follows standard label selector semantics; if present but empty, it selects all pods.
- If 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.
+podSelector is a label selector which selects pods. This field follows standard label
+selector semantics; if present but empty, it selects all pods.
+
+
+If 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.
@@ -2759,7 +2997,9 @@ podSelector is a label selector which selects pods. This field follows standard
matchLabels |
map[string]string |
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+map is equivalent to an element of matchExpressions, whose key field is "key", the
+operator is "In", and the values array contains only "value". The requirements are ANDed.
|
false |
@@ -2770,7 +3010,8 @@ podSelector is a label selector which selects pods. This field follows standard
-A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.
+A label selector requirement is a selector that contains values, a key, and an operator that
+relates the key and values.
@@ -2792,14 +3033,18 @@ A label selector requirement is a selector that contains values, a key, and an o
operator |
string |
- operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.
+ operator represents a key's relationship to a set of values.
+Valid operators are In, NotIn, Exists and DoesNotExist.
|
true |
values |
[]string |
- values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.
+ values is an array of string values. If the operator is In or NotIn,
+the values array must be non-empty. If the operator is Exists or DoesNotExist,
+the values array must be empty. This array is replaced during a strategic
+merge patch.
|
false |
@@ -2825,7 +3070,10 @@ NetworkPolicyPort describes a port to allow traffic on
endPort |
integer |
- 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.
+ 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
|
@@ -2834,14 +3082,18 @@ NetworkPolicyPort describes a port to allow traffic on
port |
int or string |
- 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.
+ 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.
|
false |
protocol |
string |
- protocol represents the protocol (TCP, UDP, or SCTP) which traffic must match. If not specified, this field defaults to TCP.
+ protocol represents the protocol (TCP, UDP, or SCTP) which traffic must match.
+If not specified, this field defaults to TCP.
Default: TCP
|
@@ -2913,7 +3165,10 @@ Specifies additional labels and annotations the Capsule operator places on any P
-Specifies the allowed priorityClasses assigned to the Tenant. Capsule assures that all Pods resources created in the Tenant can use only one of the allowed PriorityClasses. A default value can be specified, and all the Pod resources created will inherit the declared class. Optional.
+Specifies the allowed priorityClasses assigned to the Tenant.
+Capsule assures that all Pods resources created in the Tenant can use only one of the allowed PriorityClasses.
+A default value can be specified, and all the Pod resources created will inherit the declared class.
+Optional.
@@ -2956,7 +3211,9 @@ Specifies the allowed priorityClasses assigned to the Tenant. Capsule assures th
matchLabels |
map[string]string |
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+map is equivalent to an element of matchExpressions, whose key field is "key", the
+operator is "In", and the values array contains only "value". The requirements are ANDed.
|
false |
@@ -2967,7 +3224,8 @@ Specifies the allowed priorityClasses assigned to the Tenant. Capsule assures th
-A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.
+A label selector requirement is a selector that contains values, a key, and an operator that
+relates the key and values.
@@ -2989,14 +3247,18 @@ A label selector requirement is a selector that contains values, a key, and an o
operator |
string |
- operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.
+ operator represents a key's relationship to a set of values.
+Valid operators are In, NotIn, Exists and DoesNotExist.
|
true |
values |
[]string |
- values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.
+ values is an array of string values. If the operator is In or NotIn,
+the values array must be non-empty. If the operator is Exists or DoesNotExist,
+the values array must be empty. This array is replaced during a strategic
+merge patch.
|
false |
@@ -3058,21 +3320,25 @@ ResourceQuotaSpec defines the desired hard limits to enforce for Quota.
hard |
map[string]int or string |
- hard is the set of desired hard limits for each named resource. More info: https://kubernetes.io/docs/concepts/policy/resource-quotas/
+ hard is the set of desired hard limits for each named resource.
+More info: https://kubernetes.io/docs/concepts/policy/resource-quotas/
|
false |
scopeSelector |
object |
- scopeSelector is also a collection of filters like scopes that must match each object tracked by a quota but expressed using ScopeSelectorOperator in combination with possible values. For a resource to match, both scopes AND scopeSelector (if specified in spec), must be matched.
+ scopeSelector is also a collection of filters like scopes that must match each object tracked by a quota
+but expressed using ScopeSelectorOperator in combination with possible values.
+For a resource to match, both scopes AND scopeSelector (if specified in spec), must be matched.
|
false |
scopes |
[]string |
- A collection of filters that must match each object tracked by a quota. If not specified, the quota matches all objects.
+ A collection of filters that must match each object tracked by a quota.
+If not specified, the quota matches all objects.
|
false |
@@ -3083,7 +3349,9 @@ ResourceQuotaSpec defines the desired hard limits to enforce for Quota.
-scopeSelector is also a collection of filters like scopes that must match each object tracked by a quota but expressed using ScopeSelectorOperator in combination with possible values. For a resource to match, both scopes AND scopeSelector (if specified in spec), must be matched.
+scopeSelector is also a collection of filters like scopes that must match each object tracked by a quota
+but expressed using ScopeSelectorOperator in combination with possible values.
+For a resource to match, both scopes AND scopeSelector (if specified in spec), must be matched.
@@ -3109,7 +3377,8 @@ scopeSelector is also a collection of filters like scopes that must match each o
-A scoped-resource selector requirement is a selector that contains values, a scope name, and an operator that relates the scope name and values.
+A scoped-resource selector requirement is a selector that contains values, a scope name, and an operator
+that relates the scope name and values.
@@ -3124,7 +3393,8 @@ A scoped-resource selector requirement is a selector that contains values, a sco
operator |
string |
- Represents a scope's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist.
+ Represents a scope's relationship to a set of values.
+Valid operators are In, NotIn, Exists, DoesNotExist.
|
true |
@@ -3138,7 +3408,10 @@ A scoped-resource selector requirement is a selector that contains values, a sco
values |
[]string |
- An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.
+ An array of string values. If the operator is In or NotIn,
+the values array must be non-empty. If the operator is Exists or DoesNotExist,
+the values array must be empty.
+This array is replaced during a strategic merge patch.
|
false |
@@ -3149,7 +3422,9 @@ A scoped-resource selector requirement is a selector that contains values, a sco
-Specifies the allowed RuntimeClasses assigned to the Tenant. Capsule assures that all Pods resources created in the Tenant can use only one of the allowed RuntimeClasses. Optional.
+Specifies the allowed RuntimeClasses assigned to the Tenant.
+Capsule assures that all Pods resources created in the Tenant can use only one of the allowed RuntimeClasses.
+Optional.
@@ -3185,7 +3460,9 @@ Specifies the allowed RuntimeClasses assigned to the Tenant. Capsule assures tha
matchLabels |
map[string]string |
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+map is equivalent to an element of matchExpressions, whose key field is "key", the
+operator is "In", and the values array contains only "value". The requirements are ANDed.
|
false |
@@ -3196,7 +3473,8 @@ Specifies the allowed RuntimeClasses assigned to the Tenant. Capsule assures tha
-A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.
+A label selector requirement is a selector that contains values, a key, and an operator that
+relates the key and values.
@@ -3218,14 +3496,18 @@ A label selector requirement is a selector that contains values, a key, and an o
operator |
string |
- operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.
+ operator represents a key's relationship to a set of values.
+Valid operators are In, NotIn, Exists and DoesNotExist.
|
true |
values |
[]string |
- values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.
+ values is an array of string values. If the operator is In or NotIn,
+the values array must be non-empty. If the operator is Exists or DoesNotExist,
+the values array must be empty. This array is replaced during a strategic
+merge patch.
|
false |
@@ -3461,7 +3743,10 @@ Define the labels that a Tenant Owner cannot set for their Service resources.
-Specifies the allowed StorageClasses assigned to the Tenant. Capsule assures that all PersistentVolumeClaim resources created in the Tenant can use only one of the allowed StorageClasses. A default value can be specified, and all the PersistentVolumeClaim resources created will inherit the declared class. Optional.
+Specifies the allowed StorageClasses assigned to the Tenant.
+Capsule assures that all PersistentVolumeClaim resources created in the Tenant can use only one of the allowed StorageClasses.
+A default value can be specified, and all the PersistentVolumeClaim resources created will inherit the declared class.
+Optional.
@@ -3504,7 +3789,9 @@ Specifies the allowed StorageClasses assigned to the Tenant. Capsule assures tha
matchLabels |
map[string]string |
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+map is equivalent to an element of matchExpressions, whose key field is "key", the
+operator is "In", and the values array contains only "value". The requirements are ANDed.
|
false |
@@ -3515,7 +3802,8 @@ Specifies the allowed StorageClasses assigned to the Tenant. Capsule assures tha
-A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.
+A label selector requirement is a selector that contains values, a key, and an operator that
+relates the key and values.
@@ -3537,14 +3825,18 @@ A label selector requirement is a selector that contains values, a key, and an o
operator |
string |
- operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.
+ operator represents a key's relationship to a set of values.
+Valid operators are In, NotIn, Exists and DoesNotExist.
|
true |
values |
[]string |
- values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.
+ values is an array of string values. If the operator is In or NotIn,
+the values array must be non-empty. If the operator is Exists or DoesNotExist,
+the values array must be empty. This array is replaced during a strategic
+merge patch.
|
false |
@@ -3879,7 +4171,8 @@ TenantSpec defines the desired state of Tenant.
-Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference, or a value for non-objects such as user and group names.
+Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
+or a value for non-objects such as user and group names.
@@ -3894,7 +4187,8 @@ Subject contains a reference to the object or user identities a role binding app
kind |
string |
- Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount". If the Authorizer does not recognized the kind value, the Authorizer should report an error.
+ Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
+If the Authorizer does not recognized the kind value, the Authorizer should report an error.
|
true |
@@ -3908,14 +4202,17 @@ Subject contains a reference to the object or user identities a role binding app
apiGroup |
string |
- APIGroup holds the API group of the referenced subject. Defaults to "" for ServiceAccount subjects. Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
+ APIGroup holds the API group of the referenced subject.
+Defaults to "" for ServiceAccount subjects.
+Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
|
false |
namespace |
string |
- Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty the Authorizer should report an error.
+ Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
+the Authorizer should report an error.
|
false |
@@ -3988,11 +4285,19 @@ Specifies options for the Ingress resources, such as allowed hostnames and Ingre
hostnameCollisionScope |
enum |
- Defines the scope of hostname collision check performed when Tenant Owners create Ingress with allowed hostnames.
- - Cluster: disallow the creation of an Ingress if the pair hostname and path is already used across the Namespaces managed by Capsule.
- - Tenant: disallow the creation of an Ingress if the pair hostname and path is already used across the Namespaces of the Tenant.
- - Namespace: disallow the creation of an Ingress if the pair hostname and path is already used in the Ingress Namespace.
- Optional.
+ Defines the scope of hostname collision check performed when Tenant Owners create Ingress with allowed hostnames.
+
+
+- Cluster: disallow the creation of an Ingress if the pair hostname and path is already used across the Namespaces managed by Capsule.
+
+
+- Tenant: disallow the creation of an Ingress if the pair hostname and path is already used across the Namespaces of the Tenant.
+
+
+- Namespace: disallow the creation of an Ingress if the pair hostname and path is already used in the Ingress Namespace.
+
+
+Optional.
Enum: Cluster, Tenant, Namespace, Disabled
Default: Disabled
@@ -4295,28 +4600,54 @@ NetworkPolicySpec provides the specification of a NetworkPolicy
| podSelector |
object |
- 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.
+ 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.
|
true |
egress |
[]object |
- 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
+ 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
|
false |
ingress |
[]object |
- 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)
+ 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)
|
false |
policyTypes |
[]string |
- 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
+ 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
|
false |
@@ -4327,7 +4658,12 @@ NetworkPolicySpec provides the specification of a NetworkPolicy
-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.
+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.
@@ -4349,7 +4685,9 @@ podSelector selects the pods to which this NetworkPolicy object applies. The arr
matchLabels |
map[string]string |
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+map is equivalent to an element of matchExpressions, whose key field is "key", the
+operator is "In", and the values array contains only "value". The requirements are ANDed.
|
false |
@@ -4360,7 +4698,8 @@ podSelector selects the pods to which this NetworkPolicy object applies. The arr
-A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.
+A label selector requirement is a selector that contains values, a key, and an operator that
+relates the key and values.
@@ -4382,14 +4721,18 @@ A label selector requirement is a selector that contains values, a key, and an o
operator |
string |
- operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.
+ operator represents a key's relationship to a set of values.
+Valid operators are In, NotIn, Exists and DoesNotExist.
|
true |
values |
[]string |
- values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.
+ values is an array of string values. If the operator is In or NotIn,
+the values array must be non-empty. If the operator is Exists or DoesNotExist,
+the values array must be empty. This array is replaced during a strategic
+merge patch.
|
false |
@@ -4400,7 +4743,9 @@ A label selector requirement is a selector that contains values, a key, and an o
-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
+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
@@ -4415,14 +4760,22 @@ NetworkPolicyEgressRule describes a particular set of traffic that is allowed ou
ports |
[]object |
- 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.
+ 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.
|
false |
to |
[]object |
- 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.
+ 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.
|
false |
@@ -4448,7 +4801,10 @@ NetworkPolicyPort describes a port to allow traffic on
endPort |
integer |
- 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.
+ 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
|
@@ -4457,14 +4813,18 @@ NetworkPolicyPort describes a port to allow traffic on
port |
int or string |
- 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.
+ 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.
|
false |
protocol |
string |
- protocol represents the protocol (TCP, UDP, or SCTP) which traffic must match. If not specified, this field defaults to TCP.
+ protocol represents the protocol (TCP, UDP, or SCTP) which traffic must match.
+If not specified, this field defaults to TCP.
Default: TCP
|
@@ -4477,7 +4837,8 @@ NetworkPolicyPort describes a port to allow traffic on
-NetworkPolicyPeer describes a peer to allow traffic to/from. Only certain combinations of fields are allowed
+NetworkPolicyPeer describes a peer to allow traffic to/from. Only certain combinations of
+fields are allowed
@@ -4492,23 +4853,34 @@ NetworkPolicyPeer describes a peer to allow traffic to/from. Only certain combin
ipBlock |
object |
- ipBlock defines policy on a particular IPBlock. If this field is set then neither of the other fields can be.
+ ipBlock defines policy on a particular IPBlock. If this field is set then
+neither of the other fields can be.
|
false |
namespaceSelector |
object |
- namespaceSelector selects namespaces using cluster-scoped labels. This field follows standard label selector semantics; if present but empty, it selects all namespaces.
- If 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.
+ namespaceSelector selects namespaces using cluster-scoped labels. This field follows
+standard label selector semantics; if present but empty, it selects all namespaces.
+
+
+If 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.
|
false |
podSelector |
object |
- podSelector is a label selector which selects pods. This field follows standard label selector semantics; if present but empty, it selects all pods.
- If 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.
+ podSelector is a label selector which selects pods. This field follows standard label
+selector semantics; if present but empty, it selects all pods.
+
+
+If 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.
|
false |
@@ -4519,7 +4891,8 @@ NetworkPolicyPeer describes a peer to allow traffic to/from. Only certain combin
-ipBlock defines policy on a particular IPBlock. If this field is set then neither of the other fields can be.
+ipBlock defines policy on a particular IPBlock. If this field is set then
+neither of the other fields can be.
@@ -4534,14 +4907,17 @@ ipBlock defines policy on a particular IPBlock. If this field is set then neithe
cidr |
string |
- cidr is a string representing the IPBlock Valid examples are "192.168.1.0/24" or "2001:db8::/64"
+ cidr is a string representing the IPBlock
+Valid examples are "192.168.1.0/24" or "2001:db8::/64"
|
true |
except |
[]string |
- 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
+ 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
|
false |
@@ -4552,8 +4928,13 @@ ipBlock defines policy on a particular IPBlock. If this field is set then neithe
-namespaceSelector selects namespaces using cluster-scoped labels. This field follows standard label selector semantics; if present but empty, it selects all namespaces.
- If 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.
+namespaceSelector selects namespaces using cluster-scoped labels. This field follows
+standard label selector semantics; if present but empty, it selects all namespaces.
+
+
+If 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.
@@ -4575,7 +4956,9 @@ namespaceSelector selects namespaces using cluster-scoped labels. This field fol
matchLabels |
map[string]string |
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+map is equivalent to an element of matchExpressions, whose key field is "key", the
+operator is "In", and the values array contains only "value". The requirements are ANDed.
|
false |
@@ -4586,7 +4969,8 @@ namespaceSelector selects namespaces using cluster-scoped labels. This field fol
-A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.
+A label selector requirement is a selector that contains values, a key, and an operator that
+relates the key and values.
@@ -4608,14 +4992,18 @@ A label selector requirement is a selector that contains values, a key, and an o
operator |
string |
- operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.
+ operator represents a key's relationship to a set of values.
+Valid operators are In, NotIn, Exists and DoesNotExist.
|
true |
values |
[]string |
- values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.
+ values is an array of string values. If the operator is In or NotIn,
+the values array must be non-empty. If the operator is Exists or DoesNotExist,
+the values array must be empty. This array is replaced during a strategic
+merge patch.
|
false |
@@ -4626,8 +5014,13 @@ A label selector requirement is a selector that contains values, a key, and an o
-podSelector is a label selector which selects pods. This field follows standard label selector semantics; if present but empty, it selects all pods.
- If 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.
+podSelector is a label selector which selects pods. This field follows standard label
+selector semantics; if present but empty, it selects all pods.
+
+
+If 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.
@@ -4649,7 +5042,9 @@ podSelector is a label selector which selects pods. This field follows standard
matchLabels |
map[string]string |
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+map is equivalent to an element of matchExpressions, whose key field is "key", the
+operator is "In", and the values array contains only "value". The requirements are ANDed.
|
false |
@@ -4660,7 +5055,8 @@ podSelector is a label selector which selects pods. This field follows standard
-A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.
+A label selector requirement is a selector that contains values, a key, and an operator that
+relates the key and values.
@@ -4682,14 +5078,18 @@ A label selector requirement is a selector that contains values, a key, and an o
operator |
string |
- operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.
+ operator represents a key's relationship to a set of values.
+Valid operators are In, NotIn, Exists and DoesNotExist.
|
true |
values |
[]string |
- values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.
+ values is an array of string values. If the operator is In or NotIn,
+the values array must be non-empty. If the operator is Exists or DoesNotExist,
+the values array must be empty. This array is replaced during a strategic
+merge patch.
|
false |
@@ -4700,7 +5100,8 @@ A label selector requirement is a selector that contains values, a key, and an o
-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.
+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.
@@ -4715,14 +5116,22 @@ NetworkPolicyIngressRule describes a particular set of traffic that is allowed t
from |
[]object |
- 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.
+ 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.
|
false |
ports |
[]object |
- 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.
+ 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.
|
false |
@@ -4733,7 +5142,8 @@ NetworkPolicyIngressRule describes a particular set of traffic that is allowed t
-NetworkPolicyPeer describes a peer to allow traffic to/from. Only certain combinations of fields are allowed
+NetworkPolicyPeer describes a peer to allow traffic to/from. Only certain combinations of
+fields are allowed
@@ -4748,23 +5158,34 @@ NetworkPolicyPeer describes a peer to allow traffic to/from. Only certain combin
ipBlock |
object |
- ipBlock defines policy on a particular IPBlock. If this field is set then neither of the other fields can be.
+ ipBlock defines policy on a particular IPBlock. If this field is set then
+neither of the other fields can be.
|
false |
namespaceSelector |
object |
- namespaceSelector selects namespaces using cluster-scoped labels. This field follows standard label selector semantics; if present but empty, it selects all namespaces.
- If 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.
+ namespaceSelector selects namespaces using cluster-scoped labels. This field follows
+standard label selector semantics; if present but empty, it selects all namespaces.
+
+
+If 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.
|
false |
podSelector |
object |
- podSelector is a label selector which selects pods. This field follows standard label selector semantics; if present but empty, it selects all pods.
- If 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.
+ podSelector is a label selector which selects pods. This field follows standard label
+selector semantics; if present but empty, it selects all pods.
+
+
+If 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.
|
false |
@@ -4775,7 +5196,8 @@ NetworkPolicyPeer describes a peer to allow traffic to/from. Only certain combin
-ipBlock defines policy on a particular IPBlock. If this field is set then neither of the other fields can be.
+ipBlock defines policy on a particular IPBlock. If this field is set then
+neither of the other fields can be.
@@ -4790,14 +5212,17 @@ ipBlock defines policy on a particular IPBlock. If this field is set then neithe
cidr |
string |
- cidr is a string representing the IPBlock Valid examples are "192.168.1.0/24" or "2001:db8::/64"
+ cidr is a string representing the IPBlock
+Valid examples are "192.168.1.0/24" or "2001:db8::/64"
|
true |
except |
[]string |
- 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
+ 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
|
false |
@@ -4808,8 +5233,13 @@ ipBlock defines policy on a particular IPBlock. If this field is set then neithe
-namespaceSelector selects namespaces using cluster-scoped labels. This field follows standard label selector semantics; if present but empty, it selects all namespaces.
- If 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.
+namespaceSelector selects namespaces using cluster-scoped labels. This field follows
+standard label selector semantics; if present but empty, it selects all namespaces.
+
+
+If 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.
@@ -4831,7 +5261,9 @@ namespaceSelector selects namespaces using cluster-scoped labels. This field fol
matchLabels |
map[string]string |
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+map is equivalent to an element of matchExpressions, whose key field is "key", the
+operator is "In", and the values array contains only "value". The requirements are ANDed.
|
false |
@@ -4842,7 +5274,8 @@ namespaceSelector selects namespaces using cluster-scoped labels. This field fol
-A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.
+A label selector requirement is a selector that contains values, a key, and an operator that
+relates the key and values.
@@ -4864,14 +5297,18 @@ A label selector requirement is a selector that contains values, a key, and an o
operator |
string |
- operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.
+ operator represents a key's relationship to a set of values.
+Valid operators are In, NotIn, Exists and DoesNotExist.
|
true |
values |
[]string |
- values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.
+ values is an array of string values. If the operator is In or NotIn,
+the values array must be non-empty. If the operator is Exists or DoesNotExist,
+the values array must be empty. This array is replaced during a strategic
+merge patch.
|
false |
@@ -4882,8 +5319,13 @@ A label selector requirement is a selector that contains values, a key, and an o
-podSelector is a label selector which selects pods. This field follows standard label selector semantics; if present but empty, it selects all pods.
- If 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.
+podSelector is a label selector which selects pods. This field follows standard label
+selector semantics; if present but empty, it selects all pods.
+
+
+If 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.
@@ -4905,7 +5347,9 @@ podSelector is a label selector which selects pods. This field follows standard
matchLabels |
map[string]string |
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+map is equivalent to an element of matchExpressions, whose key field is "key", the
+operator is "In", and the values array contains only "value". The requirements are ANDed.
|
false |
@@ -4916,7 +5360,8 @@ podSelector is a label selector which selects pods. This field follows standard
-A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.
+A label selector requirement is a selector that contains values, a key, and an operator that
+relates the key and values.
@@ -4938,14 +5383,18 @@ A label selector requirement is a selector that contains values, a key, and an o
operator |
string |
- operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.
+ operator represents a key's relationship to a set of values.
+Valid operators are In, NotIn, Exists and DoesNotExist.
|
true |
values |
[]string |
- values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.
+ values is an array of string values. If the operator is In or NotIn,
+the values array must be non-empty. If the operator is Exists or DoesNotExist,
+the values array must be empty. This array is replaced during a strategic
+merge patch.
|
false |
@@ -4971,7 +5420,10 @@ NetworkPolicyPort describes a port to allow traffic on
endPort |
integer |
- 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.
+ 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
|
@@ -4980,14 +5432,18 @@ NetworkPolicyPort describes a port to allow traffic on
port |
int or string |
- 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.
+ 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.
|
false |
protocol |
string |
- protocol represents the protocol (TCP, UDP, or SCTP) which traffic must match. If not specified, this field defaults to TCP.
+ protocol represents the protocol (TCP, UDP, or SCTP) which traffic must match.
+If not specified, this field defaults to TCP.
Default: TCP
|
@@ -5084,21 +5540,25 @@ ResourceQuotaSpec defines the desired hard limits to enforce for Quota.
hard |
map[string]int or string |
- hard is the set of desired hard limits for each named resource. More info: https://kubernetes.io/docs/concepts/policy/resource-quotas/
+ hard is the set of desired hard limits for each named resource.
+More info: https://kubernetes.io/docs/concepts/policy/resource-quotas/
|
false |
scopeSelector |
object |
- scopeSelector is also a collection of filters like scopes that must match each object tracked by a quota but expressed using ScopeSelectorOperator in combination with possible values. For a resource to match, both scopes AND scopeSelector (if specified in spec), must be matched.
+ scopeSelector is also a collection of filters like scopes that must match each object tracked by a quota
+but expressed using ScopeSelectorOperator in combination with possible values.
+For a resource to match, both scopes AND scopeSelector (if specified in spec), must be matched.
|
false |
scopes |
[]string |
- A collection of filters that must match each object tracked by a quota. If not specified, the quota matches all objects.
+ A collection of filters that must match each object tracked by a quota.
+If not specified, the quota matches all objects.
|
false |
@@ -5109,7 +5569,9 @@ ResourceQuotaSpec defines the desired hard limits to enforce for Quota.
-scopeSelector is also a collection of filters like scopes that must match each object tracked by a quota but expressed using ScopeSelectorOperator in combination with possible values. For a resource to match, both scopes AND scopeSelector (if specified in spec), must be matched.
+scopeSelector is also a collection of filters like scopes that must match each object tracked by a quota
+but expressed using ScopeSelectorOperator in combination with possible values.
+For a resource to match, both scopes AND scopeSelector (if specified in spec), must be matched.
@@ -5135,7 +5597,8 @@ scopeSelector is also a collection of filters like scopes that must match each o
-A scoped-resource selector requirement is a selector that contains values, a scope name, and an operator that relates the scope name and values.
+A scoped-resource selector requirement is a selector that contains values, a scope name, and an operator
+that relates the scope name and values.
@@ -5150,7 +5613,8 @@ A scoped-resource selector requirement is a selector that contains values, a sco
operator |
string |
- Represents a scope's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist.
+ Represents a scope's relationship to a set of values.
+Valid operators are In, NotIn, Exists, DoesNotExist.
|
true |
@@ -5164,7 +5628,10 @@ A scoped-resource selector requirement is a selector that contains values, a sco
values |
[]string |
- An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.
+ An array of string values. If the operator is In or NotIn,
+the values array must be non-empty. If the operator is Exists or DoesNotExist,
+the values array must be empty.
+This array is replaced during a strategic merge patch.
|
false |
|