Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for clusterIPs (0.19 sec)

  1. pkg/printers/internalversion/printers_test.go

    							Port:     2233,
    						},
    					},
    					ClusterIPs: []string{"10.9.8.7"},
    				},
    			},
    			{
    				ObjectMeta: metav1.ObjectMeta{Name: "service2"},
    				Spec: api.ServiceSpec{
    					Type: api.ServiceTypeNodePort,
    					Ports: []api.ServicePort{
    						{
    							Protocol: "udp",
    							Port:     5566,
    						},
    					},
    					ClusterIPs: []string{"1.2.3.4"},
    				},
    			},
    		},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  2. pkg/proxy/nftables/proxier_test.go

    		add set ip kube-proxy cluster-ips { type ipv4_addr ; comment "Active ClusterIPs" ; }
    		add chain ip kube-proxy cluster-ips-check
    		add rule ip kube-proxy cluster-ips-check ip daddr @cluster-ips reject comment "Reject traffic to invalid ports of ClusterIPs"
    		add rule ip kube-proxy cluster-ips-check ip daddr { 172.30.0.0/16 } drop comment "Drop traffic to unallocated ClusterIPs"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  3. pkg/printers/internalversion/printers.go

    	row := metav1.TableRow{
    		Object: runtime.RawExtension{Object: obj},
    	}
    	svcType := obj.Spec.Type
    	internalIP := "<none>"
    	if len(obj.Spec.ClusterIPs) > 0 {
    		internalIP = obj.Spec.ClusterIPs[0]
    	}
    
    	externalIP := getServiceExternalIP(obj, options.Wide)
    	svcPorts := makePortString(obj.Spec.Ports)
    	if len(svcPorts) == 0 {
    		svcPorts = "<none>"
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  4. pkg/apis/core/zz_generated.deepcopy.go

    		in, out := &in.Selector, &out.Selector
    		*out = make(map[string]string, len(*in))
    		for key, val := range *in {
    			(*out)[key] = val
    		}
    	}
    	if in.ClusterIPs != nil {
    		in, out := &in.ClusterIPs, &out.ClusterIPs
    		*out = make([]string, len(*in))
    		copy(*out, *in)
    	}
    	if in.IPFamilies != nil {
    		in, out := &in.IPFamilies, &out.IPFamilies
    		*out = make([]IPFamily, len(*in))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    		in, out := &in.Selector, &out.Selector
    		*out = make(map[string]string, len(*in))
    		for key, val := range *in {
    			(*out)[key] = val
    		}
    	}
    	if in.ClusterIPs != nil {
    		in, out := &in.ClusterIPs, &out.ClusterIPs
    		*out = make([]string, len(*in))
    		copy(*out, *in)
    	}
    	if in.ExternalIPs != nil {
    		in, out := &in.ExternalIPs, &out.ExternalIPs
    		*out = make([]string, len(*in))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  6. pkg/proxy/ipvs/proxier_test.go

    	if len(fp.svcPortMap) != 1 {
    		t.Errorf("expected service map length 1, got %v", fp.svcPortMap)
    	}
    
    	// All services but one were deleted. While you'd expect only the ClusterIPs
    	// from the three deleted services here, we still have the ClusterIP for
    	// the not-deleted service, because one of it's ServicePorts was deleted.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/cluster_test.go

    				Instances: instances,
    				Configs:   cfgs,
    			})
    			clusters := cg.Clusters(cg.SetupProxy(nil))
    			xdstest.ValidateClusters(t, clusters)
    			if c.filter != nil {
    				clusters = xdstest.FilterClusters(clusters, c.filter)
    			}
    			g.Expect(len(clusters)).ShouldNot(Equal(0))
    
    			for _, cluster := range clusters {
    				g.Expect(cluster.CircuitBreakers).NotTo(BeNil())
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  8. cmd/site-replication.go

    //
    // STS accounts are replicated, but only if the session token is verifiable
    // using the local cluster's root credential.
    func (c *SiteReplicationSys) IAMChangeHook(ctx context.Context, item madmin.SRIAMItem) error {
    	// The IAM item has already been applied to the local cluster at this
    	// point, and only needs to be updated on all remote peer clusters.
    
    	c.RLock()
    	defer c.RUnlock()
    	if !c.enabled {
    		return nil
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  9. cluster/gce/gci/configure-helper.sh

      fi
      if [[ -n "${MULTIZONE:-}" ]]; then
        use_cloud_config="true"
        cat <<EOF >>/etc/gce.conf
    multizone = ${MULTIZONE}
    EOF
      fi
    # Multimaster indicates that the cluster is HA.
    # Currently the only HA clusters are regional.
    # If we introduce zonal multimaster this will need to be revisited.
      if [[ -n "${MULTIMASTER:-}" ]]; then
        use_cloud_config="true"
        cat <<EOF >>/etc/gce.conf
    regional = ${MULTIMASTER}
    EOF
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  10. tests/integration/pilot/common/routing.go

    							}
    							// echotest should have filtered the deployment to only contain reachable clusters
    							to := match.ServiceName(serviceName).GetMatches(dests.Instances())
    							fromCluster := src.(echo.Instance).Config().Cluster
    							toClusters := to.Clusters()
    							// don't check headless since lb is unpredictable
    							headlessTarget := match.Headless.Any(to)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
Back to top