Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for clusterIPs (0.44 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/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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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