Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 800 for cluster1 (0.12 sec)

  1. pkg/test/framework/components/environment/kube/fake.go

    	}
    	return f.Name
    }
    
    func (f FakeEnvironment) AllClusters() cluster.Clusters {
    	res := cluster.Clusters{}
    	allClusters := make(cluster.Map)
    
    	for i := 0; i < f.NumClusters; i++ {
    		topo := cluster.NewTopology(cluster.Config{
    			Name:               fmt.Sprintf("cluster-%d", i),
    			PrimaryClusterName: fmt.Sprintf("cluster-%d", i),
    			ConfigClusterName:  fmt.Sprintf("cluster-%d", i),
    		}, allClusters)
    		c := &kube.Cluster{Topology: topo}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. pkg/test/framework/components/echo/kube/sidecar.go

    )
    
    var _ echo.Sidecar = &sidecar{}
    
    type sidecar struct {
    	podNamespace string
    	podName      string
    	cluster      cluster.Cluster
    }
    
    func newSidecar(pod corev1.Pod, cluster cluster.Cluster) *sidecar {
    	sidecar := &sidecar{
    		podNamespace: pod.Namespace,
    		podName:      pod.Name,
    		cluster:      cluster,
    	}
    
    	return sidecar
    }
    
    func (s *sidecar) Info() (*admin.ServerInfo, error) {
    	msg := &admin.ServerInfo{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 09 03:49:49 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/plugin/pkg/audit/webhook/webhook_test.go

    	http.Error(w, err.Error(), http.StatusInternalServerError)
    }
    
    func newWebhook(t *testing.T, endpoint string, groupVersion schema.GroupVersion) *backend {
    	config := v1.Config{
    		Clusters: []v1.NamedCluster{
    			{Cluster: v1.Cluster{Server: endpoint, InsecureSkipTLSVerify: true}},
    		},
    	}
    	f, err := ioutil.TempFile("", "k8s_audit_webhook_test_")
    	require.NoError(t, err, "creating temp file")
    
    	defer func() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 08 06:37:26 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  4. tests/integration/operator/install_test.go

    				}
    			}
    		})
    }
    
    func TestReInstallAfterFailure(t *testing.T) {
    	framework.NewTest(t).
    		Run(func(t framework.TestContext) {
    			istioCtl := istioctl.NewOrFail(t, t, istioctl.Config{})
    			cs := t.Clusters().Default()
    			t.Cleanup(func() {
    				cleanupIstioResources(t, cs, istioCtl)
    			})
    
    			// Install with a fake tag to make the installation fail
    			_, _, err := istioCtl.Invoke([]string{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 14:30:43 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  5. pilot/cmd/pilot-discovery/app/cmd.go

    	c.PersistentFlags().StringVar((*string)(&serverArgs.RegistryOptions.KubeOptions.ClusterID), "clusterID", features.ClusterName,
    		"The ID of the cluster that this Istiod instance resides")
    	c.PersistentFlags().StringToStringVar(&serverArgs.RegistryOptions.KubeOptions.ClusterAliases, "clusterAliases", map[string]string{},
    		"Alias names for clusters")
    
    	// using address, so it can be configured as localhost:.. (possibly UDS in future)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  6. istioctl/pkg/proxyconfig/proxyconfig_test.go

    		{
    			args:           []string{},
    			expectedString: "A group of commands used to retrieve information about",
    		},
    		{ // clusters invalid
    			args:           strings.Split("clusters invalid", " "),
    			expectedString: "unable to retrieve Pod: pods \"invalid\" not found",
    			wantException:  true, // "istioctl proxy-config clusters invalid" should fail
    		},
    		{ // listeners invalid
    			args:           strings.Split("listeners invalid", " "),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 21:51:29 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  7. releasenotes/notes/49011.yaml

    kind: feature
    area: security
    issue:
      - 47489
    releaseNotes:
      - |-
        **Added** support for istio CA to handle node authorization for CSRs with impersonate identity from remote clusters.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 05 15:46:44 UTC 2024
    - 328 bytes
    - Viewed (0)
  8. tests/integration/pilot/vm_test.go

    	stdOut, _, err := t.Clusters().Default().
    		PodExec(pilot, i.Settings().SystemNamespace, "discovery", cmd)
    	if err != nil {
    		scopes.Framework.Warnf("failed to force disconnect %s: %v: %v", proxyID, stdOut, err)
    	}
    }
    
    func scaleDeploymentOrFail(t framework.TestContext, name, namespace string, scale int32) {
    	s, err := t.Clusters().Default().Kube().AppsV1().Deployments(namespace).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  9. docs/bucket/lifecycle/DESIGN.md

    Lifecycle transition functionality provided in [bucket lifecycle guide](https://github.com/minio/minio/master/docs/bucket/lifecycle/README.md) allows tiering of content from MinIO object store to public clouds or other MinIO clusters.
    
    Transition tiers can be added to MinIO using `mc admin tier add` command to associate a `gcs`, `s3` or `azure` bucket or prefix path on a bucket to the tier name.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  10. tests/integration/pilot/testdata/mcs-serviceexport-crd.yaml

          "schema":
            "openAPIV3Schema":
              description: ServiceExport declares that the Service with the same name and
                namespace as this export should be consumable from other clusters.
              type: object
              properties:
                apiVersion:
                  description: 'APIVersion defines the versioned schema of this representation
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 00:51:29 UTC 2021
    - 4K bytes
    - Viewed (0)
Back to top