Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 689 for clusterIPs (0.31 sec)

  1. CHANGELOG/CHANGELOG-1.23.md

      3. Single-stack clusters do not need to change, but may choose to use the more specific flags.  Users can use either the older `--node-cidr-mask-size` flag or one of the newer `--node-cidr-mask-size-ipv4` or `--node-cidr-mask-size-ipv6` flags to configure the per-node IP mask size, provided that the flag's IP family matches the cluster's IP family (--cluster-cidr). ([#104691](https://github.com/kubernetes/kubernetes/pull/104691),...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 28 21:06:52 UTC 2023
    - 424.5K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/kube/controller/serviceimportcache.go

    		// Ignore events for MCS services that were triggered by this controller.
    		return
    	}
    
    	// This method is called concurrently from each cluster's queue. Process it in `this` cluster's queue
    	// in order to synchronize event processing.
    	ic.queue.Push(func() error {
    		namespacedName := namespacedNameForService(curr)
    
    		// Lookup the previous MCS service if there was one.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  3. pkg/test/framework/components/istio/kube.go

    	for _, c := range ctx.Clusters().Configs().Remotes() {
    		if err = i.reinstallConfigCluster(c); err != nil {
    			return i, err
    		}
    	}
    
    	// Install (non-config) remote clusters.
    	errG = multierror.Group{}
    	for _, c := range ctx.Clusters().Remotes(ctx.Clusters().Configs()...) {
    		c := c
    		errG.Go(func() error {
    			if err := i.installRemoteCluster(c); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/generated.pb.go

    			i--
    			dAtA[i] = 0x1
    			i--
    			dAtA[i] = 0x9a
    		}
    	}
    	if len(m.ClusterIPs) > 0 {
    		for iNdEx := len(m.ClusterIPs) - 1; iNdEx >= 0; iNdEx-- {
    			i -= len(m.ClusterIPs[iNdEx])
    			copy(dAtA[i:], m.ClusterIPs[iNdEx])
    			i = encodeVarintGenerated(dAtA, i, uint64(len(m.ClusterIPs[iNdEx])))
    			i--
    			dAtA[i] = 0x1
    			i--
    			dAtA[i] = 0x92
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 1.8M bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.29.md

    - Added a new `ServiceCIDR` type that allows to dynamically configure the cluster range used to allocate `Service ClusterIPs` addresses. ([#116516](https://github.com/kubernetes/kubernetes/pull/116516), [@aojea](https://github.com/aojea))
    - Added a new `ipMode` field to the `.status` of Services where `type` is set to `LoadBalancer`.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  6. 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)
  7. pkg/test/framework/resource/context.go

    	CreateTmpDirectory(prefix string) (string, error)
    
    	// ConfigKube returns a Context that writes config to the provided clusters. If
    	// no clusters are provided, writes to all clusters in the mesh.
    	ConfigKube(clusters ...cluster.Cluster) config.Factory
    
    	// ConfigIstio returns a Context that writes config to all Istio config clusters.
    	ConfigIstio() config.Factory
    
    	// RecordTraceEvent records an event. This is later saved to trace.yaml for analysis
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  8. 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)
  9. pkg/test/framework/components/echo/workload.go

    	}
    	return out
    }
    
    func (ws Workloads) Clusters() cluster.Clusters {
    	clusters := make(map[string]cluster.Cluster)
    	for _, w := range ws {
    		if c := w.Cluster(); c != nil {
    			clusters[c.Name()] = c
    		}
    	}
    	out := make(cluster.Clusters, 0, len(clusters))
    	for _, c := range clusters {
    		out = append(out, c)
    	}
    
    	// Sort the clusters by name.
    	sort.SliceStable(out, func(i, j int) bool {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 25 19:46:28 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.24.md

    away from the usage of the word `master` in labels and taints. For new clusters, the label `node-role.kubernetes.io/master` will no longer be added to control plane nodes, only the label `node-role.kubernetes.io/control-plane` will be added. For clusters that are being upgraded to 1.24 with `kubeadm upgrade apply`, the command will remove the label `node-role.kubernetes.io/master` from existing control plane nodes. For new clusters, both the old taint `node-role.kubernetes.io/master:NoSchedule` and...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 00:02:43 UTC 2023
    - 473.4K bytes
    - Viewed (0)
Back to top