Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 178 for clusterIPs (0.14 sec)

  1. staging/src/k8s.io/api/networking/v1alpha1/types_swagger_doc_generated.go

    	return map_ParentReference
    }
    
    var map_ServiceCIDR = map[string]string{
    	"":         "ServiceCIDR defines a range of IP addresses using CIDR format (e.g. 192.168.0.0/24 or 2001:db2::/64). This range is used to allocate ClusterIPs to Service objects.",
    	"metadata": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:58 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  2. pkg/util/iptables/save_restore_test.go

    		-A PREROUTING -m comment --comment "handle ClusterIPs; NOTE: this must be before the NodePort rules" -j KUBE-PORTALS-CONTAINER
    		-A PREROUTING -m addrtype --dst-type LOCAL -j DOCKER
    		-A PREROUTING -m addrtype --dst-type LOCAL -m comment --comment "handle service NodePorts; NOTE: this must be the last rule in the chain" -j KUBE-NODEPORT-CONTAINER
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 5K bytes
    - Viewed (0)
  3. pkg/registry/core/service/ipallocator/controller/metrics.go

    	clusterIPRepairIPErrors = metrics.NewCounterVec(
    		&metrics.CounterOpts{
    			Namespace:      namespace,
    			Subsystem:      subsystem,
    			Name:           "ip_errors_total",
    			Help:           "Number of errors detected on clusterips by the repair loop broken down by type of error: leak, repair, full, outOfRange, duplicate, unknown, invalid",
    			StabilityLevel: metrics.ALPHA,
    		},
    		[]string{"type"},
    	)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Sep 30 15:46:06 UTC 2023
    - 2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/networking/v1alpha1/generated.proto

      // +required
      optional string name = 4;
    }
    
    // ServiceCIDR defines a range of IP addresses using CIDR format (e.g. 192.168.0.0/24 or 2001:db2::/64).
    // This range is used to allocate ClusterIPs to Service objects.
    message ServiceCIDR {
      // Standard object's metadata.
      // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  5. pkg/proxy/util/utils.go

    			return service.Spec.ClusterIP
    		}
    
    		return ""
    	}
    
    	for idx, family := range service.Spec.IPFamilies {
    		if family == ipFamily {
    			if idx < len(service.Spec.ClusterIPs) {
    				return service.Spec.ClusterIPs[idx]
    			}
    		}
    	}
    
    	return ""
    }
    
    func IsVIPMode(ing v1.LoadBalancerIngress) bool {
    	if !utilfeature.DefaultFeatureGate.Enabled(features.LoadBalancerIPMode) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 11:57:43 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/conversion.go

    		resolution = model.Passthrough
    	} else if svc.Spec.ClusterIP != "" {
    		addrs[0] = svc.Spec.ClusterIP
    		if len(svc.Spec.ClusterIPs) > 1 {
    			addrs = svc.Spec.ClusterIPs
    		}
    	}
    
    	ports := make([]*model.Port, 0, len(svc.Spec.Ports))
    	for _, port := range svc.Spec.Ports {
    		ports = append(ports, convertPort(port))
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  7. pkg/proxy/conntrack/cleanup_test.go

    		serviceUpdates   proxy.UpdateServiceMapResult
    		endpointsUpdates proxy.UpdateEndpointsMapResult
    
    		result FakeInterface
    	}{
    		{
    			description: "DeletedUDPClusterIPs clears entries for given clusterIPs (only)",
    
    			serviceUpdates: proxy.UpdateServiceMapResult{
    				// Note: this isn't testClusterIP; it's the IP of some
    				// unknown (because deleted) service.
    				DeletedUDPClusterIPs: sets.New("172.30.99.99"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 15 18:09:05 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  8. pkg/test/framework/components/cluster/clusters.go

    func (c Clusters) ForNetworks(networks ...string) Clusters {
    	out := make(Clusters, 0, len(c))
    	for _, cc := range c {
    		for _, network := range networks {
    			if cc.NetworkName() == network {
    				out = append(out, cc)
    				break
    			}
    		}
    	}
    	return out
    }
    
    // Primaries returns the subset that are primary clusters.
    func (c Clusters) Primaries(excluded ...Cluster) Clusters {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/componentconfigs/kubelet.go

    	}
    
    	clusterDNS := ""
    	dnsIP, err := constants.GetDNSIP(cfg.Networking.ServiceSubnet)
    	if err != nil {
    		clusterDNS = kubeadmapiv1.DefaultClusterDNSIP
    	} else {
    		clusterDNS = dnsIP.String()
    	}
    
    	if kc.config.ClusterDNS == nil {
    		kc.config.ClusterDNS = []string{clusterDNS}
    	} else if len(kc.config.ClusterDNS) != 1 || kc.config.ClusterDNS[0] != clusterDNS {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/utils/cluster_util_test.cc

      auto clusters = GetClusters(module.get());
      constexpr StringRef kTarget0 = "tpu0";
      EXPECT_EQ(clusters.count(kTarget0), 1);
      EXPECT_EQ(clusters[kTarget0].size(), 1);
      EXPECT_EQ(clusters[kTarget0][0].ops.size(), 2);
    
      constexpr StringRef kTarget1 = "tpu1";
      EXPECT_EQ(clusters.count(kTarget1), 1);
      EXPECT_EQ(clusters[kTarget1].size(), 1);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 26 09:37:10 UTC 2024
    - 7.8K bytes
    - Viewed (0)
Back to top