Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 43 for egress (0.38 sec)

  1. pkg/registry/core/service/storage/storage_test.go

    			newStatus: api.ServiceStatus{
    				LoadBalancer: api.LoadBalancerStatus{
    					Ingress: []api.LoadBalancerIngress{{
    						IP: "1.2.3.4",
    					}},
    				},
    			},
    			expectedStatus: api.ServiceStatus{
    				LoadBalancer: api.LoadBalancerStatus{
    					Ingress: []api.LoadBalancerIngress{{
    						IP: "1.2.3.4",
    					}},
    				},
    			},
    			expectErr: false,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
  2. pkg/proxy/iptables/proxier_test.go

    				Protocol: v1.ProtocolTCP,
    				NodePort: int32(svcNodePort),
    			}}
    			svc.Status.LoadBalancer.Ingress = []v1.LoadBalancerIngress{
    				{IP: svcLBIP1},
    				{IP: svcLBIP2},
    			}
    			svc.Spec.LoadBalancerSourceRanges = []string{
    				"192.168.0.0/24",
    
    				// Regression test that excess whitespace gets ignored
    				" 203.0.113.0/25",
    			}
    		}),
    	)
    
    	epIP := "10.180.0.1"
    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/validation/validation.go

    			}
    
    			if utilfeature.DefaultFeatureGate.Enabled(features.LoadBalancerIPMode) && ingress.IPMode == nil {
    				if len(ingress.IP) > 0 {
    					allErrs = append(allErrs, field.Required(idxPath.Child("ipMode"), "must be specified when `ip` is set"))
    				}
    			} else if ingress.IPMode != nil && len(ingress.IP) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  4. pkg/apis/core/types.go

    type LoadBalancerStatus struct {
    	// Ingress is a list containing ingress points for the load-balancer;
    	// traffic intended for the service should be sent to these ingress points.
    	// +optional
    	Ingress []LoadBalancerIngress
    }
    
    // LoadBalancerIngress represents the status of a load-balancer ingress point:
    // traffic intended for the service should be sent to an ingress point.
    type LoadBalancerIngress struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.20.md

    - Resolves flakes in the Ingress conformance tests due to conflicts with controllers updating the Ingress object ([#98430](https://github.com/kubernetes/kubernetes/pull/98430), [@liggitt](https://github.com/liggitt)) [SIG Network and Testing]
    
    ## Dependencies
    
    ### Added
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 19 21:05:45 UTC 2022
    - 409K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/types.go

    type LoadBalancerStatus struct {
    	// Ingress is a list containing ingress points for the load-balancer.
    	// Traffic intended for the service should be sent to these ingress points.
    	// +optional
    	// +listType=atomic
    	Ingress []LoadBalancerIngress `json:"ingress,omitempty" protobuf:"bytes,1,rep,name=ingress"`
    }
    
    // LoadBalancerIngress represents the status of a load-balancer ingress point:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"":         "LoadBalancerIngress represents the status of a load-balancer ingress point: traffic intended for the service should be sent to an ingress point.",
    	"ip":       "IP is set for load-balancer ingress points that are IP based (typically GCE or OpenStack load-balancers)",
    	"hostname": "Hostname is set for load-balancer ingress points that are DNS based (typically AWS load-balancers)",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/generated.proto

    // LoadBalancerIngress represents the status of a load-balancer ingress point:
    // traffic intended for the service should be sent to an ingress point.
    message LoadBalancerIngress {
      // IP is set for load-balancer ingress points that are IP based
      // (typically GCE or OpenStack load-balancers)
      // +optional
      optional string ip = 1;
    
      // Hostname is set for load-balancer ingress points that are DNS based
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.10.md

    * Due to an issue in ingress-gce controller in 1.10.0, creating multi-cluster ingresses with [kubemci CLI](https://github.com/GoogleCloudPlatform/k8s-multicluster-ingress) fails. This will be fixed in 1.10.1 release. ([GoogleCloudPlatform/k8s-multicluster-ingress#175](https://github.com/GoogleCloudPlatform/k8s-multicluster-ingress/issues/175))
    
    ## Deprecations
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 341.8K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/core/v1/generated.proto

    // LoadBalancerIngress represents the status of a load-balancer ingress point:
    // traffic intended for the service should be sent to an ingress point.
    message LoadBalancerIngress {
      // IP is set for load-balancer ingress points that are IP based
      // (typically GCE or OpenStack load-balancers)
      // +optional
      optional string ip = 1;
    
      // Hostname is set for load-balancer ingress points that are DNS based
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
Back to top