Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 340 for clusterIPs (0.16 sec)

  1. pkg/test/framework/testcontext.go

    }
    
    func (c *testContext) Environment() resource.Environment {
    	return c.suite.environment
    }
    
    func (c *testContext) Clusters() cluster.Clusters {
    	if c == nil || c.Environment() == nil {
    		return nil
    	}
    	return c.Environment().Clusters()
    }
    
    func (c *testContext) AllClusters() cluster.Clusters {
    	if c == nil || c.Environment() == nil {
    		return nil
    	}
    	return c.Environment().AllClusters()
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  2. pilot/pkg/features/pilot.go

    		"If true, pilot will configure an additional IPv4 listener for outbound traffic in IPv6 only clusters, e.g. AWS EKS IPv6 only clusters.").Get()
    
    	EnableAutoSni = env.Register("ENABLE_AUTO_SNI", true,
    		"If enabled, automatically set SNI when `DestinationRules` do not specify the same").Get()
    
    	VerifyCertAtClient = env.Register("VERIFY_CERTIFICATE_AT_CLIENT", true,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. tests/integration/security/sds_ingress/util/util.go

    ) {
    	t.Helper()
    
    	t.CleanupConditionally(func() {
    		deleteKubeSecret(t, credName)
    	})
    
    	// Create Kubernetes secret for ingress gateway
    	wg := multierror.Group{}
    	if len(clusters) == 0 {
    		clusters = t.Clusters()
    	}
    	for _, c := range clusters {
    		c := c
    		wg.Go(func() error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 25 05:12:36 UTC 2023
    - 20.2K bytes
    - Viewed (0)
  4. tests/integration/security/fuzz/fuzz_test.go

    	if _, err := kube.WaitUntilPodsAreReady(kube.NewPodFetch(t.Clusters().Default(), ns, "app="+name)); err != nil {
    		t.Fatalf("Wait for pod %s failed: %v", name, err)
    	}
    	t.Logf("deploy %s is ready", name)
    }
    
    func waitService(t framework.TestContext, name, ns string) {
    	if _, _, err := kube.WaitUntilServiceEndpointsAreReady(t.Clusters().Default().Kube(), ns, name); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  5. cluster/gce/config-test.sh

    CNI_HASH=${CNI_HASH:-}
    CNI_TAR_PREFIX=${CNI_TAR_PREFIX:-cni-plugins-linux-amd64-}
    CNI_STORAGE_URL_BASE=${CNI_STORAGE_URL_BASE:-https://storage.googleapis.com/k8s-artifacts-cni/release}
    
    # Optional: Create autoscaler for cluster's nodes.
    export ENABLE_CLUSTER_AUTOSCALER=${KUBE_ENABLE_CLUSTER_AUTOSCALER:-false}
    if [[ "${ENABLE_CLUSTER_AUTOSCALER}" = 'true' ]]; then
      export AUTOSCALER_MIN_NODES=${KUBE_AUTOSCALER_MIN_NODES:-}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 17:20:24 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  6. pkg/adsc/adsc.go

    			}
    			a.handleLDS(listeners)
    		case v3.ClusterType:
    			clusters := make([]*cluster.Cluster, 0, len(msg.Resources))
    			for _, rsc := range msg.Resources {
    				valBytes := rsc.Value
    				cl := &cluster.Cluster{}
    				_ = proto.Unmarshal(valBytes, cl)
    				clusters = append(clusters, cl)
    			}
    			a.handleCDS(clusters)
    		case v3.EndpointType:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 05 22:18:49 UTC 2024
    - 35K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/cluster_formation.mlir

            tf_executor.yield %4 : tensor<?xi32>
          }
          tf_executor.fetch %1#0 : tensor<?xi32>
        }
        func.return %0 : tensor<?xi32>
      }
    }
    
    // -----
    
    // Multiple clusters of different devices. Clusters depend on each other.
    
    module {
      // CHECK-LABEL: func @multiplerelatedclusters
      // CHECK-SAME: (%[[ARG_0:[a-z0-9]*]]: tensor<?xi32>)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/phases/kubeconfig/kubeconfig.go

    	if currentConfig.Clusters[currentCluster].Server != config.Clusters[expectedCluster].Server {
    		klog.Warningf("a kubeconfig file %q exists already but has an unexpected API Server URL: expected: %s, got: %s",
    			kubeConfigFilePath, config.Clusters[expectedCluster].Server, currentConfig.Clusters[currentCluster].Server)
    	}
    
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:04:18 UTC 2024
    - 27K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/aggregate/controller.go

    		}
    		if out == nil {
    			out = service.DeepCopy()
    		} else {
    			// If we are seeing the service for the second time, it means it is available in multiple clusters.
    			mergeService(out, service, r)
    		}
    	}
    	return out
    }
    
    // mergeService only merges two clusters' k8s services
    func mergeService(dst, src *model.Service, srcRegistry serviceregistry.Instance) {
    	if !src.Ports.Equals(dst.Ports) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 06:28:11 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  10. pilot/pkg/features/experimental.go

    	"istio.io/istio/pkg/log"
    )
    
    // Define experimental features here.
    var (
    	// FilterGatewayClusterConfig controls if a subset of clusters(only those required) should be pushed to gateways
    	FilterGatewayClusterConfig = env.Register("PILOT_FILTER_GATEWAY_CLUSTER_CONFIG", false,
    		"If enabled, Pilot will send only clusters that referenced in gateway virtual services attached to gateway").Get()
    
    	SendUnhealthyEndpoints = atomic.NewBool(env.Register(
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
Back to top