Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 178 for clusterIPs (0.26 sec)

  1. tests/integration/pilot/multicluster_test.go

    		Run(func(t framework.TestContext) {
    			if len(t.Clusters().Primaries()) == 0 {
    				t.Skip("no primary cluster in framework (most likely only remote-config)")
    			}
    
    			// we don't need to test this per-cluster
    			primary := t.Clusters().Primaries()[0]
    			// it doesn't matter if the other cluster is a primary/remote/etc.
    			remote := t.Clusters().Exclude(primary)[0]
    
    			var (
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/util/kubeconfig/kubeconfig.go

    	// If there is an unnamed cluster object, use it
    	if config.Clusters[""] != nil {
    		return "", config.Clusters[""]
    	}
    
    	currentContext := config.Contexts[config.CurrentContext]
    	if currentContext != nil {
    		return currentContext.Cluster, config.Clusters[currentContext.Cluster]
    	}
    	return "", nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 21 10:21:33 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  3. cmd/kube-controller-manager/app/options/nodelifecyclecontroller.go

    	fs.Float32Var(&o.SecondaryNodeEvictionRate, "secondary-node-eviction-rate", 0.01, "Number of nodes per second on which pods are deleted in case of node failure when a zone is unhealthy (see --unhealthy-zone-threshold for definition of healthy/unhealthy). Zone refers to entire cluster in non-multizone clusters. This value is implicitly overridden to 0 if the cluster size is smaller than --large-...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 09:25:51 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  4. prow/lib.sh

            CLUSTER_NAME=$(kubectl config view --minify=true -o "jsonpath={.clusters[].name}")
            gen_kubeconf_from_sa istio-multi-test "${context}"
        done
        export KUBECONFIG="${MAIN_CONFIG}"
    }
    
    function gen_kubeconf_from_sa () {
        local service_account=$1
        local filename=$2
    
        SERVER=$(kubectl config view --minify=true -o "jsonpath={.clusters[].cluster.server}")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/envoyfilter/cluster_patch.go

    )
    
    // ApplyClusterMerge processes the MERGE operation and merges the supplied configuration to the matched clusters.
    func ApplyClusterMerge(pctx networking.EnvoyFilter_PatchContext, efw *model.EnvoyFilterWrapper,
    	c *cluster.Cluster, hosts []host.Name,
    ) (out *cluster.Cluster) {
    	defer runtime.HandleCrash(runtime.LogPanic, func(any) {
    		log.Errorf("clusters patch %s/%s caused panic, so the patches did not take effect", efw.Namespace, efw.Name)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  6. releasenotes/notes/46719.yaml

    kind: bug-fix
    area: traffic-management
    issue:
      - 46719
    releaseNotes:
      - |
        **Added** gated flag `ISTIO_ENABLE_IPV4_OUTBOUND_LISTENER_FOR_IPV6_CLUSTERS` to manage an additional outbound listener for IPv6-only clusters to deal with IPv4 NAT outbound traffic.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 03 15:28:21 UTC 2023
    - 414 bytes
    - Viewed (0)
  7. releasenotes/notes/49476.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issues:
    - 49476
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Feb 24 00:44:31 UTC 2024
    - 219 bytes
    - Viewed (0)
  8. tests/integration/telemetry/tracing/zipkin/client_tracing_test.go

    func TestClientTracing(t *testing.T) {
    	framework.NewTest(t).
    		Run(func(t framework.TestContext) {
    			appNsInst := tracing.GetAppNamespace()
    			for _, cluster := range t.Clusters().ByNetwork()[t.Clusters().Default().NetworkName()] {
    				cluster := cluster
    				t.NewSubTest(cluster.StableName()).Run(func(ctx framework.TestContext) {
    					retry.UntilSuccessOrFail(ctx, func() error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/decompose_resource_ops_pass.cc

      }
      // Return failure is `op_with_region` was modified changed in last iteration.
      return success(!changed);
    }
    
    // Applies patterns in only device clusters and functions reachable from such
    // clusters. Returns failure if it fails to converge in `max_iterations`.
    // TODO(prakalps): This can be useful to a lot of other passes in bridge.
    // Extract out as a separate utility.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Sep 08 20:01:13 UTC 2023
    - 8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/cluster_formation.cc

    limitations under the License.
    ==============================================================================*/
    
    // This transformation forms clusters from instructions in same island and
    // assigned to save devices. Clusters are represented as regions.
    // Note that side-effecting ops are not correctly handled yet.
    
    #include <memory>
    #include <string>
    #include <vector>
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 05 13:30:21 UTC 2023
    - 6.8K bytes
    - Viewed (0)
Back to top