Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for traffic (0.27 sec)

  1. prow/config/calico.yaml

                      traffic that goes from a workload endpoint to the host itself (after
                      the traffic hits the endpoint egress policy). By default Calico
                      blocks traffic from workload endpoints to the host itself with an
                      iptables "DROP" action. If you want to allow some or all traffic
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  2. pkg/proxy/iptables/proxier_test.go

    		})
    	}
    }
    
    // TestExternalTrafficPolicyLocal tests that traffic to externally-facing IPs does not get
    // masqueraded when using Local traffic policy. For traffic from external sources, that
    // means it can also only be routed to local endpoints, but for traffic from internal
    // sources, it gets routed to all endpoints.
    func TestExternalTrafficPolicyLocal(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
  3. pkg/apis/core/types.go

    // traffic sent to the ClusterIP.
    type ServiceInternalTrafficPolicy string
    
    const (
    	// ServiceInternalTrafficPolicyCluster routes traffic to all endpoints.
    	ServiceInternalTrafficPolicyCluster ServiceInternalTrafficPolicy = "Cluster"
    
    	// ServiceInternalTrafficPolicyLocal routes traffic only to endpoints on the same
    	// node as the traffic was received on (dropping the traffic if there are no
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/types.go

    const (
    	// ServiceExternalTrafficPolicyCluster routes traffic to all endpoints.
    	ServiceExternalTrafficPolicyCluster ServiceExternalTrafficPolicy = "Cluster"
    
    	// ServiceExternalTrafficPolicyLocal preserves the source IP of the traffic by
    	// routing only to endpoints on the same node as the traffic was received on
    	// (dropping the traffic if there are no local endpoints).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"ports":    "Ports is a list of records of service ports If used, every...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/generated.proto

      // Setting this to "VIP" indicates that traffic is delivered to the node with
      // the destination set to the load-balancer's IP and port.
      // Setting this to "Proxy" indicates that traffic is delivered to the node or pod with
      // the destination set to the node's IP and node port or the pod's IP and port.
      // Service implementations may use this information to adjust traffic routing.
      // +optional
      optional string ipMode = 3;
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  7. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    // Specifies the sidecar's default behavior when handling outbound traffic from the application.
    type OutboundTrafficPolicyConfig_Mode int32
    
    const (
    	// Outbound traffic to unknown destinations will be allowed, in case there are no services or ServiceEntries for the destination port
    	OutboundTrafficPolicyConfig_ALLOW_ANY OutboundTrafficPolicyConfig_Mode = 0
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.25.md

    - This change picks up the latest GCE pinhole firewall feature, which introduces destination-ranges in the ingress firewall-rules. It restricts the access to the backend IPs via allowing traffic via allowing traffic through ILB or NetLB IP only. This change does NOT change the existing ILB or NetLB behavior. ([#109510](https://github.com/kubernetes/kubernetes/pull/109510), [@sugangli](https://github.com/sugangli)) [SIG API Machinery, Architecture,...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 09:23:20 UTC 2024
    - 419.1K bytes
    - Viewed (0)
  9. pkg/apis/core/validation/validation.go

    	allErrs = append(allErrs, validateLoadBalancerClassField(nil, service)...)
    
    	// external traffic policy fields
    	allErrs = append(allErrs, validateServiceExternalTrafficPolicy(service)...)
    
    	// internal traffic policy field
    	allErrs = append(allErrs, validateServiceInternalTrafficFieldsValue(service)...)
    
    	// traffic distribution field
    	allErrs = append(allErrs, validateServiceTrafficDistribution(service)...)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.27.md

    - Fixed issue in `Winkernel` Proxier - Unexpected active TCP connection drops while horizontally scaling the endpoints for a LoadBalancer Service with Internal Traffic Policy: `Local` ([#113742](https://github.com/kubernetes/kubernetes/pull/113742), [@princepereira](https://github.com/princepereira))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
Back to top