Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 40 for DefaultConfig (0.18 sec)

  1. tools/bug-report/pkg/testdata/input/ingress.log

    2020-06-29T23:37:27.285885Z	info	Obtained private IP [10.36.1.5]
    2020-06-29T23:37:27.286034Z	info	Apply mesh config from file accessLogEncoding: TEXT
    accessLogFile: /dev/stdout
    accessLogFormat: ""
    defaultConfig:
      concurrency: 2
      configPath: ./etc/istio/proxy
      connectTimeout: 10s
      controlPlaneAuthPolicy: NONE
      discoveryAddress: istiod.istio-system.svc:15012
      drainDuration: 45s
      parentShutdownDuration: 1m0s
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 03 15:51:03 UTC 2020
    - 11K bytes
    - Viewed (0)
  2. pkg/test/framework/components/echo/kube/deployment.go

    func patchProxyConfigFile(file string, overrides string) error {
    	config, err := readMeshConfig(file)
    	if err != nil {
    		return err
    	}
    	overrideYAML := "defaultConfig:\n"
    	overrideYAML += istio.Indent(overrides, "  ")
    	if err := protomarshal.ApplyYAML(overrideYAML, config.DefaultConfig); err != nil {
    		return err
    	}
    	outYAML, err := protomarshal.ToYAML(config)
    	if err != nil {
    		return err
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  3. tests/integration/security/file_mounted_certs/main_test.go

                - path: spec.template.spec.containers[name:discovery].volumeMounts[-1]
                  value: |-
                    name: server-certs
                    mountPath: /server-certs
    
    meshConfig:
      defaultConfig:
        controlPlaneAuthPolicy: "MUTUAL_TLS"
        proxyMetadata: ` + strings.Replace(ProxyMetadataJSON, "\n", "", -1) +
    		`
    values:
      global:
        pilotCertProvider: "mycopki"
      pilot:
        env:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/resolve/ResolveTestFixture.groovy

        private static final START_MARKER = "// RESOLVE_TEST_FIXTURE_START"
        private static final END_MARKER = "// RESOLVE_TEST_FIXTURE_END"
        final TestFile buildFile
        String config
        private String defaultConfig = "default"
        private boolean buildArtifacts = true
    
        ResolveTestFixture(TestFile buildFile, String config = "runtimeClasspath") {
            this.config = config
            this.buildFile = buildFile
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 37.8K bytes
    - Viewed (0)
  5. manifests/charts/gateways/istio-egress/values.yaml

        # The trust domain corresponds to the trust root of a system
        # Refer to https://github.com/spiffe/spiffe/blob/master/standards/SPIFFE-ID.md#21-trust-domain
        trustDomain: "cluster.local"
    
        defaultConfig:
          proxyMetadata: {}
          tracing:
          #      tlsSettings:
          #        mode: DISABLE # DISABLE, SIMPLE, MUTUAL, ISTIO_MUTUAL
          #        clientCertificate: # example: /etc/istio/tracer/cert-chain.pem
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  6. manifests/charts/gateways/istio-ingress/values.yaml

        # The trust domain corresponds to the trust root of a system
        # Refer to https://github.com/spiffe/spiffe/blob/master/standards/SPIFFE-ID.md#21-trust-domain
        trustDomain: "cluster.local"
    
        defaultConfig:
          proxyMetadata: {}
          tracing:
          #      tlsSettings:
          #        mode: DISABLE # DISABLE, SIMPLE, MUTUAL, ISTIO_MUTUAL
          #        clientCertificate: # example: /etc/istio/tracer/cert-chain.pem
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 13K bytes
    - Viewed (0)
  7. pkg/config/validation/agent/validation.go

    		v = AppendValidation(v, multierror.Prefix(err, "invalid protocol detection timeout:"))
    	}
    
    	if mesh.DefaultConfig == nil {
    		v = AppendValidation(v, errors.New("missing default config"))
    	} else {
    		v = AppendValidation(v, ValidateMeshConfigProxyConfig(mesh.DefaultConfig))
    	}
    
    	v = AppendValidation(v, ValidateLocalityLbSetting(mesh.LocalityLbSetting, &networking.OutlierDetection{}))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  8. istioctl/pkg/workload/workload_test.go

    		client.Kube().CoreV1().ConfigMaps("istio-system").Create(context.Background(), &v1.ConfigMap{
    			ObjectMeta: metav1.ObjectMeta{Namespace: "istio-system", Name: "istio"},
    			Data: map[string]string{
    				"mesh": "defaultConfig: {}",
    			},
    		}, metav1.CreateOptions{})
    		client.Kube().CoreV1().Secrets("bar").Create(context.Background(), &v1.Secret{
    			ObjectMeta: metav1.ObjectMeta{Namespace: "bar", Name: "test"},
    			Data: map[string][]byte{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 16:59:05 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  9. src/crypto/tls/tls.go

    		return nil, err
    	}
    
    	colonPos := strings.LastIndex(addr, ":")
    	if colonPos == -1 {
    		colonPos = len(addr)
    	}
    	hostname := addr[:colonPos]
    
    	if config == nil {
    		config = defaultConfig()
    	}
    	// If no ServerName is set, infer the ServerName
    	// from the hostname we're connecting to.
    	if config.ServerName == "" {
    		// Make a copy to avoid polluting argument or default.
    		c := config.Clone()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  10. pilot/pkg/model/context.go

    func (e *Environment) GetDiscoveryAddress() (host.Name, string, error) {
    	proxyConfig := mesh.DefaultProxyConfig()
    	if e.Mesh().DefaultConfig != nil {
    		proxyConfig = e.Mesh().DefaultConfig
    	}
    	hostname, port, err := net.SplitHostPort(proxyConfig.DiscoveryAddress)
    	if err != nil {
    		return "", "", fmt.Errorf("invalid Istiod Address: %s, %v", proxyConfig.DiscoveryAddress, err)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 33.6K bytes
    - Viewed (0)
Back to top