Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 289 for External (0.19 sec)

  1. pkg/test/framework/components/echo/echotest/filters_test.go

    	}}}
    	// external svc
    	external1 = &fakeInstance{
    		Cluster: cls1, Namespace: echo1NS, Service: "external", DefaultHostHeader: "external.com", Subsets: []echo.SubsetConfig{{
    			Annotations: map[string]string{annotation.SidecarInject.Name: "false"},
    		}},
    	}
    	external2 = &fakeInstance{
    		Cluster: cls2, Namespace: echo1NS, Service: "external", DefaultHostHeader: "external.com", Subsets: []echo.SubsetConfig{{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. tests/integration/ambient/main_test.go

    					},
    				},
    			},
    		})
    	}
    
    	external := cdeployment.External{Namespace: apps.ExternalNamespace}
    	external.Build(t, builder)
    
    	echos, err := builder.Build()
    	if err != nil {
    		return err
    	}
    	for _, b := range echos {
    		scopes.Framework.Infof("built %v", b.Config().Service)
    	}
    
    	external.LoadValues(echos)
    	apps.MockExternal = external.All
    
    	// All does not include external
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/cmd/phases/init/certs.go

    		data, ok := c.(InitData)
    		if !ok {
    			return errors.New("certs phase invoked with an invalid data struct")
    		}
    
    		// if using external etcd, skips etcd certificate authority generation
    		if data.Cfg().Etcd.External != nil && ca.Name == "etcd-ca" {
    			fmt.Printf("[certs] External etcd mode: Skipping %s certificate authority generation\n", ca.BaseName)
    			return nil
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 06:35:45 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  4. pkg/test/framework/components/istio/kube.go

    		}
    	}
    
    	// First install remote-config clusters.
    	// We do this first because the external istiod needs to read the config cluster at startup.
    	for _, c := range ctx.Clusters().Configs().Remotes() {
    		if err = i.installConfigCluster(c); err != nil {
    			return i, err
    		}
    	}
    
    	// Install control plane clusters (can be external or primary).
    	errG := multierror.Group{}
    	for _, c := range ctx.AllClusters().Primaries() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/initialization/DefaultScriptClassPathResolver.java

    import org.gradle.api.internal.initialization.transform.utils.InstrumentationClasspathMerger;
    import org.gradle.api.internal.model.NamedObjectInstantiator;
    import org.gradle.api.invocation.Gradle;
    import org.gradle.internal.classpath.ClassPath;
    import org.gradle.internal.classpath.TransformedClassPath;
    import org.gradle.internal.component.local.model.OpaqueComponentIdentifier;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  6. pkg/test/framework/suite.go

    		for _, c := range ctx.Clusters() {
    			if c.IsConfig() && !c.IsPrimary() {
    				// the test environment is an external control plane topology, the test can go on
    				return nil
    			}
    		}
    		// the test environment is not an external control plane topology, skip the test
    		s.Skip("Not an external control plane topology, skip this test")
    		return nil
    	}
    	s.requireFns = append(s.requireFns, fn)
    	return s
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  7. Makefile

    	@echo "Running unit tests under -race"
    	@(env bash $(PWD)/buildscripts/race.sh)
    
    test-iam: install-race ## verify IAM (external IDP, etcd backends)
    	@echo "Running tests for IAM (external IDP, etcd backends)"
    	@MINIO_API_REQUESTS_MAX=10000 CGO_ENABLED=0 go test -tags kqueue,dev -v -run TestIAM* ./cmd
    	@echo "Running tests for IAM (external IDP, etcd backends) with -race"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 17:41:02 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  8. pkg/security/security.go

    	CredentialMetaDataName = "credential"
    
    	// SDSExternalClusterName is the name of the cluster for external SDS connections which is defined via CredentialNameSocketPath
    	SDSExternalClusterName = "sds-external"
    
    	// SDSExternalCredentialPrefix is the prefix for the credentialName which will utilize external SDS connections defined via CredentialNameSocketPath
    	SDSExternalCredentialPrefix = "sds://"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  9. pilot/pkg/bootstrap/istio_ca.go

    	}
    
    	return caOpts, nil
    }
    
    // createIstioRA initializes the Istio RA signing functionality.
    // the caOptions defines the external provider
    // ca cert can come from three sources, order matters:
    // 1. Define ca cert via kubernetes secret and mount the secret through `external-ca-cert` volume
    // 2. Use kubernetes ca cert `/var/run/secrets/kubernetes.io/serviceaccount/ca.crt` if signer is
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  10. pkg/controlplane/apiserver/config.go

    	if err != nil {
    		return nil, nil, fmt.Errorf("failed to create real client-go external client: %w", err)
    	}
    	dynamicExternalClient, err := dynamic.NewForConfig(genericConfig.LoopbackClientConfig)
    	if err != nil {
    		return nil, nil, fmt.Errorf("failed to create real dynamic external client: %w", err)
    	}
    	err = opts.Admission.ApplyTo(
    		genericConfig,
    		versionedInformers,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 14.9K bytes
    - Viewed (0)
Back to top