Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for clusterIPs (0.2 sec)

  1. pkg/kubelet/kubelet.go

    				return nil, err
    			}
    		} else {
    			return nil, err
    		}
    	}
    
    	clusterDNS := make([]net.IP, 0, len(kubeCfg.ClusterDNS))
    	for _, ipEntry := range kubeCfg.ClusterDNS {
    		ip := netutils.ParseIPSloppy(ipEntry)
    		if ip == nil {
    			klog.InfoS("Invalid clusterDNS IP", "IP", ipEntry)
    		} else {
    			clusterDNS = append(clusterDNS, ip)
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  2. cluster/gce/util.sh

      quoted_dns_server_ip=$(yaml-quote "${DNS_SERVER_IP}")
      quoted_dns_domain=$(yaml-quote "${DNS_DOMAIN}")
      cat <<EOF
    kind: KubeletConfiguration
    apiVersion: kubelet.config.k8s.io/v1beta1
    cgroupRoot: /
    clusterDNS:
      - ${quoted_dns_server_ip}
    clusterDomain: ${quoted_dns_domain}
    readOnlyPort: 10255
    EOF
    
      # Note: ENABLE_MANIFEST_URL is used by GKE.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

    }
    
    def ClusterFormationPass : Pass<"tf-device-cluster-formation", "mlir::ModuleOp"> {
      let summary = "Form clusters from instructions assigned to same device";
      let constructor = "TFDevice::CreateClusterFormationPass()";
      let dependentDialects = ["tf_device::TensorFlowDeviceDialect"];
      let description = [{
        Clusters operations with the same device assignment id. For each
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/cluster_builder_test.go

    			subsetClusters := cb.applyDestinationRule(ec, tt.clusterMode, tt.service, tt.port, eb, destRule.GetRule(), nil)
    			if len(subsetClusters) != len(tt.expectedSubsetClusters) {
    				t.Fatalf("Unexpected subset clusters want %v, got %v. keys=%v",
    					len(tt.expectedSubsetClusters), len(subsetClusters), xdstest.MapKeys(xdstest.ExtractClusters(subsetClusters)))
    			}
    			if len(tt.expectedSubsetClusters) > 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_pods.go

    	buffer.WriteString("fe00::1\tip6-allnodes\n")
    	buffer.WriteString("fe00::2\tip6-allrouters\n")
    	if len(hostDomainName) > 0 {
    		// host entry generated for all IPs in podIPs
    		// podIPs field is populated for clusters even
    		// dual-stack feature flag is not enabled.
    		for _, hostIP := range hostIPs {
    			buffer.WriteString(fmt.Sprintf("%s\t%s.%s\t%s\n", hostIP, hostName, hostDomainName, hostName))
    		}
    	} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  6. samples/addons/grafana.yaml

    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
Back to top