Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Reeves (0.17 sec)

  1. common-protos/k8s.io/api/networking/v1/generated.proto

      // 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)
      // +optional
      repeated NetworkPolicyIngressRule ingress = 2;
    
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 25.2K bytes
    - Viewed (0)
  2. architecture/ambient/ztunnel.md

    ## Background and motivation
    
    Motivations to implement ztunnel generally came from two areas.
    
    First, and most importantly, it serves as a means to implement the real goal: waypoints.
    For various reasons outside the scope of this document, there is a desire to move from a sidecar based architecture to a "remote proxy" architecture.
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Sep 13 02:17:30 GMT 2023
    - 16.6K bytes
    - Viewed (0)
  3. operator/cmd/mesh/test-util_test.go

    	}
    	if ip != "" {
    		out["ip"] = ip
    	}
    	if nodeName != "" {
    		out["nodeName"] = nodeName
    	}
    	return out
    }
    
    // portVal returns a map having service port type. A value of -1 for port or targetPort leaves those keys unset.
    func portVal(name string, port, targetPort int64) map[string]any {
    	out := make(map[string]any)
    	if name != "" {
    		out["name"] = name
    	}
    	if port != -1 {
    		out["port"] = port
    	}
    Go
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Tue Oct 31 14:48:28 GMT 2023
    - 15.3K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/extensions/v1beta1/generated.proto

      // 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).
      // +optional
      repeated NetworkPolicyIngressRule ingress = 2;
    
      // List of egress rules to be applied to the selected pods. Outgoing traffic is
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 45.6K bytes
    - Viewed (0)
Back to top