Mixins

networkPolicyEgressRule

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

Constuctors

Functions
  • withPorts

    withPorts(ports)
    

    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.

    withPorts takes an array of type portsType. You can create an instance of portsType with hidden.networking.v1.networkPolicyPort.new().

    see hidden.networking.v1.networkPolicyPort


  • withPortsMixin

    withPortsMixin(ports)
    

    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.

    withPortsMixin takes an array of type portsType. You can create an instance of portsType with hidden.networking.v1.networkPolicyPort.new().

    see hidden.networking.v1.networkPolicyPort


  • withTo

    withTo(to)
    

    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.

    withTo takes an array of type toType. You can create an instance of toType with hidden.networking.v1.networkPolicyPeer.new().

    see hidden.networking.v1.networkPolicyPeer


  • withToMixin

    withToMixin(to)
    

    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.

    withToMixin takes an array of type toType. You can create an instance of toType with hidden.networking.v1.networkPolicyPeer.new().

    see hidden.networking.v1.networkPolicyPeer