Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,506 for cluster1 (0.5 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  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. staging/src/k8s.io/apiserver/plugin/pkg/authorizer/webhook/webhook_v1beta1_test.go

    		wantErr    bool
    	}{
    		{
    			msg: "a single cluster and single user",
    			configTmpl: `
    clusters:
    - cluster:
        certificate-authority: {{ .CA }}
        server: https://authz.example.com
      name: foobar
    users:
    - name: a cluster
      user:
        client-certificate: {{ .Cert }}
        client-key: {{ .Key }}
    `,
    			wantErr: true,
    		},
    		{
    			msg: "multiple clusters with no context",
    			configTmpl: `
    clusters:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 22:41:27 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top