Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 40 for DefaultConfig (0.26 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/resourceconfig/helpers_test.go

    				return config
    			},
    			expectedEnabledAPIs: map[schema.GroupVersionResource]bool{
    				extensionsapiv1beta1.SchemeGroupVersion.WithResource("ingresses"):   false, // this becomes false because the DisableVersions set in the defaultConfig is now order dependent.
    				extensionsapiv1beta1.SchemeGroupVersion.WithResource("deployments"): false,
    				extensionsapiv1beta1.SchemeGroupVersion.WithResource("replicasets"): false,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 23 18:36:33 UTC 2022
    - 25.2K bytes
    - Viewed (0)
  2. istioctl/pkg/precheck/precheck.go

    		return err
    	}
    	if err != nil {
    		// not found
    		return nil
    	}
    	// found
    	res := ObjectToInstance(svc)
    	messages.Add(msg.NewUpdateIncompatibility(res,
    		"meshConfig.defaultConfig.tracer", "1.21",
    		"tracing is no longer by default enabled to send to 'zipkin.istio-system.svc'; "+
    			"follow https://istio.io/latest/docs/tasks/observability/distributed-tracing/telemetry-api/",
    		"1.21"))
    	return nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 02:57:30 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  3. pkg/model/proxy.go

    	// Note that this setting may be configured different for each proxy, due user overrides
    	// or from different versions of proxies connecting. While Pilot has access to the meshConfig.defaultConfig,
    	// this field should be preferred if it is present.
    	ProxyConfig *NodeMetaProxyConfig `json:"PROXY_CONFIG,omitempty"`
    
    	// IstioVersion specifies the Istio version associated with the proxy
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 17:18:17 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  4. operator/pkg/manifest/shared.go

    		}
    	}
    
    	out, err := yaml.Marshal(iop)
    	if err != nil {
    		return "", err
    	}
    
    	return string(out), nil
    }
    
    var defaultSetFlagConvertPaths = []string{
    	"meshConfig.defaultConfig.proxyMetadata",
    }
    
    // convertDefaultIOPMapValues converts default map[string]string values into string.
    func convertDefaultIOPMapValues(outYAML string, setFlags []string) (string, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 03 06:27:07 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/tracing_test.go

    			},
    		})
    }
    
    func fakeOptsWithDefaultProviders() gatewayListenerOpts {
    	var opts gatewayListenerOpts
    	opts.push = &model.PushContext{
    		Mesh: &meshconfig.MeshConfig{
    			EnableTracing: true,
    			DefaultConfig: &meshconfig.ProxyConfig{
    				Tracing: &meshconfig.Tracing{
    					Sampling: 55.5,
    				},
    			},
    			DefaultProviders: &meshconfig.MeshConfig_DefaultProviders{
    				Tracing: []string{
    					"foo",
    				},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 20:47:52 UTC 2024
    - 38.6K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/httproute.go

    	SkipIstioMXHeaders         bool
    }
    
    func GetProxyHeaders(node *model.Proxy, push *model.PushContext, class istionetworking.ListenerClass) ProxyHeaders {
    	pc := node.Metadata.ProxyConfigOrDefault(push.Mesh.DefaultConfig)
    	return GetProxyHeadersFromProxyConfig(pc, class)
    }
    
    func GetProxyHeadersFromProxyConfig(pc *meshconfig.ProxyConfig, class istionetworking.ListenerClass) ProxyHeaders {
    	base := ProxyHeaders{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  7. pkg/test/framework/components/istio/kube.go

    	if cfg.EnableCNI {
    		args.AppendSet("components.cni.enabled", "true")
    	}
    
    	if ctx.Settings().EnableDualStack {
    		args.AppendSet("values.pilot.env.ISTIO_DUAL_STACK", "true")
    		args.AppendSet("meshConfig.defaultConfig.proxyMetadata.ISTIO_DUAL_STACK", "true")
    		args.AppendSet("values.gateways.istio-ingressgateway.ipFamilyPolicy", "RequireDualStack")
    		args.AppendSet("values.gateways.istio-egressgateway.ipFamilyPolicy", "RequireDualStack")
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  8. pkg/config/validation/agent/validation_test.go

    		t.Error("expected an error on an empty mesh config")
    	}
    
    	invalid := &meshconfig.MeshConfig{
    		ProxyListenPort:    0,
    		ConnectTimeout:     durationpb.New(-1 * time.Second),
    		DefaultConfig:      &meshconfig.ProxyConfig{},
    		TrustDomain:        "",
    		TrustDomainAliases: []string{"a.$b", "a/b", ""},
    		ExtensionProviders: []*meshconfig.MeshConfig_ExtensionProvider{
    			{
    				Name: "default",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  9. src/crypto/tls/handshake_client.go

    	innerTranscript hash.Hash
    	kdfID           uint16
    	aeadID          uint16
    	echRejected     bool
    }
    
    func (c *Conn) clientHandshake(ctx context.Context) (err error) {
    	if c.config == nil {
    		c.config = defaultConfig()
    	}
    
    	// This may be a renegotiation handshake, in which case some fields
    	// need to be reset.
    	c.didResume = false
    
    	hello, keyShareKeys, ech, err := c.makeClientHello()
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 38.6K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/gateway.go

    	// Mutable objects keyed by listener name so that we can build listeners at the end.
    	mutableopts := make(map[string]mutableListenerOpts)
    	proxyConfig := builder.node.Metadata.ProxyConfigOrDefault(builder.push.Mesh.DefaultConfig)
    	// listener port -> host/bind
    	tlsHostsByPort := map[uint32]map[string]string{}
    	for _, port := range mergedGateway.ServerPorts {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 46.4K bytes
    - Viewed (0)
Back to top