Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 801 for cluster1 (0.23 sec)

  1. tests/integration/telemetry/api/customize_metrics_test.go

    					httpMetricVal, err = util.QueryPrometheus(t, cluster, httpDestinationQuery, promInst)
    					if err != nil {
    						util.PromDiff(t, promInst, cluster, httpDestinationQuery)
    						return err
    					}
    					httpChecked = true
    				}
    				_, err = util.QueryPrometheus(t, cluster, grpcDestinationQuery, promInst)
    				if err != nil {
    					util.PromDiff(t, promInst, cluster, grpcDestinationQuery)
    					return err
    				}
    				return nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  2. prow/config/mixedlb-service.yaml

    # This configs KinD to spin up a k8s cluster with mixed protocol LB support
    # This should be used to create K8s clusters with versions >= 1.20
    kind: Cluster
    apiVersion: kind.x-k8s.io/v1alpha4
    featureGates:
      MixedProtocolLBService: true
      EndpointSlice: true
    kubeadmConfigPatches:
      - |
        kind: ClusterConfiguration
        metadata:
          name: config
        etcd:
          local:
            # Run etcd in a tmpfs (in RAM) for performance improvements
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 02 18:38:35 UTC 2023
    - 801 bytes
    - Viewed (0)
  3. cni/pkg/install/testdata/kubeconfig-tls

    apiVersion: v1
    clusters:
    - cluster:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 17 02:22:22 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  4. cni/pkg/install/testdata/kubeconfig-skip-tls

    apiVersion: v1
    clusters:
    - cluster:
        insecure-skip-tls-verify: true
        server: https://10.96.0.1:443
      name: local
    contexts:
    - context:
        cluster: local
        user: istio-cni
      name: istio-cni-context
    current-context: istio-cni-context
    kind: Config
    preferences: {}
    users:
    - name: istio-cni
      user:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 17 02:22:22 UTC 2023
    - 342 bytes
    - Viewed (0)
  5. releasenotes/notes/35884.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    releaseNotes:
      - |
        **Updated** `WorkloadEntry` resources will be read across clusters and no longer need to be manually mirrored to other
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 03 22:48:19 UTC 2021
    - 335 bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/encapsulate_util.h

    // Finds dependencies between outside compilation clusters, including both data
    // dependencies and control dependencies. cluster_deps maps the name name of an
    // outside compilation cluster to a set of names of outside compilation clusters
    // that it depends on.
    absl::StatusOr<
        std::unique_ptr<absl::flat_hash_map<string, std::vector<string>>>>
    OutsideCompilationClusterDependencies(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  7. pkg/test/framework/components/registryredirector/kube.go

    )
    
    type kubeComponent struct {
    	id        resource.ID
    	ns        namespace.Instance
    	cluster   cluster.Cluster
    	address   string
    	forwarder kube.PortForwarder
    }
    
    func newKube(ctx resource.Context, cfg Config) (Instance, error) {
    	c := &kubeComponent{
    		cluster: ctx.Clusters().GetOrDefault(cfg.Cluster),
    	}
    	c.id = ctx.TrackResource(c)
    	var err error
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 00:53:57 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  8. prow/config/default.yaml

    # This configs KinD to spin up a k8s cluster with mixed protocol LB support and GRPCContainerProbe enabled
    # This should be used to create K8s clusters with versions >= 1.23
    kind: Cluster
    apiVersion: kind.x-k8s.io/v1alpha4
    kubeadmConfigPatches:
      - |
        apiVersion: kubeadm.k8s.io/v1beta3
        kind: ClusterConfiguration
        metadata:
          name: config
        etcd:
          local:
            # Run etcd in a tmpfs (in RAM) for performance improvements
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 29 19:17:14 UTC 2023
    - 1002 bytes
    - Viewed (0)
  9. cni/pkg/install/kubeconfig.go

    		Clusters: map[string]*api.Cluster{
    			clusterName: cluster,
    		},
    		AuthInfos: map[string]*api.AuthInfo{
    			userName: {
    				Token: string(token),
    			},
    		},
    		Contexts: map[string]*api.Context{
    			contextName: {
    				AuthInfo: userName,
    				Cluster:  clusterName,
    			},
    		},
    		CurrentContext: contextName,
    	}
    
    	lcfg, err := latest.Scheme.ConvertToVersion(kcfg, latest.ExternalVersion)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:29 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  10. tests/integration/security/filebased_tls_origination/main_test.go

    			Annotations: map[string]string{annotation.SidecarInject.Name: "false"},
    		}},
    		Cluster: ctx.Clusters().Default(),
    	}
    
    	internalClient := echo.Config{
    		Service:   "internal-client",
    		Namespace: appNamespace,
    		Ports:     []echo.Port{},
    		Subsets: []echo.SubsetConfig{{
    			Version: "v1",
    		}},
    		Cluster: ctx.Clusters().Default(),
    	}
    
    	externalService := echo.Config{
    		Service:   "external-service",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 7.3K bytes
    - Viewed (0)
Back to top