Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 408 for meshconfigs (0.14 sec)

  1. manifests/charts/istio-control/istio-discovery/templates/NOTES.txt

        "global.outboundTrafficPolicy" "meshConfig.outboundTrafficPolicy"
        "global.certificates" "meshConfig.certificates"
        "global.localityLbSetting" "meshConfig.localityLbSetting"
        "global.policyCheckFailOpen" "meshConfig.policyCheckFailOpen"
        "global.enableTracing" "meshConfig.enableTracing"
        "global.proxy.accessLogFormat" "meshConfig.accessLogFormat"
        "global.proxy.accessLogFile" "meshConfig.accessLogFile"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 20:02:28 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. pilot/pkg/networking/plugin/authn/util.go

    // limitations under the License.
    
    package authn
    
    import (
    	meshconfig "istio.io/api/mesh/v1alpha1"
    	"istio.io/istio/pilot/pkg/features"
    	"istio.io/istio/pkg/util/sets"
    )
    
    func TrustDomainsForValidation(meshConfig *meshconfig.MeshConfig) []string {
    	if features.SkipValidateTrustDomain {
    		return nil
    	}
    
    	tds := append([]string{meshConfig.TrustDomain}, meshConfig.TrustDomainAliases...)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 24 16:11:07 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/tracing_test.go

    	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",
    				},
    			},
    			ExtensionProviders: []*meshconfig.MeshConfig_ExtensionProvider{
    				{
    					Name: "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)
  4. pkg/config/mesh/watcher.go

    func (w *internalWatcher) HandleMeshConfig(meshConfig *meshconfig.MeshConfig) {
    	w.mutex.Lock()
    	defer w.mutex.Unlock()
    	w.handleMeshConfigInternal(meshConfig)
    }
    
    // handleMeshConfigInternal behaves the same as HandleMeshConfig but must be called under a lock
    func (w *internalWatcher) handleMeshConfigInternal(meshConfig *meshconfig.MeshConfig) {
    	var handlers []*WatcherHandlerRegistration
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 20 18:33:38 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  5. pilot/pkg/security/authn/utils/utils_test.go

    		name                     string
    		mesh                     meshconfig.MeshConfig
    		expectedMTLSCipherSuites []string
    	}{
    		{
    			name:                     "Default MTLS supported Ciphers",
    			expectedMTLSCipherSuites: SupportedCiphers,
    		},
    		{
    			name: "Configure 1 MTLS cipher suite",
    			mesh: meshconfig.MeshConfig{
    				MeshMTLS: &meshconfig.MeshConfig_TLSConfig{
    					CipherSuites: []string{"ECDHE-RSA-AES256-GCM-SHA384"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 10 20:24:43 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  6. pilot/pkg/networking/plugin/authn/util_test.go

    package authn
    
    import (
    	"reflect"
    	"testing"
    
    	meshconfig "istio.io/api/mesh/v1alpha1"
    )
    
    func TestTrustDomainsForValidation(t *testing.T) {
    	tests := []struct {
    		name       string
    		meshConfig *meshconfig.MeshConfig
    		want       []string
    	}{
    		{
    			name: "No duplicated trust domain in mesh config",
    			meshConfig: &meshconfig.MeshConfig{
    				TrustDomain:        "cluster.local",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 24 16:11:07 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  7. pkg/config/validation/agent/extensionprovider_test.go

    	cases := []struct {
    		name   string
    		config *meshconfig.MeshConfig_ExtensionProvider_ZipkinTracingProvider
    		valid  bool
    	}{
    		{
    			name: "zipkin normal",
    			config: &meshconfig.MeshConfig_ExtensionProvider_ZipkinTracingProvider{
    				Service: "zipkin.istio-system",
    				Port:    9411,
    			},
    			valid: true,
    		},
    		{
    			name: "zipkin service with namespace",
    			config: &meshconfig.MeshConfig_ExtensionProvider_ZipkinTracingProvider{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. pkg/config/mesh/mesh_test.go

    	want := mesh.EmptyMeshNetworks()
    	want.Networks = map[string]*meshconfig.Network{
    		"network1": {
    			Endpoints: []*meshconfig.Network_NetworkEndpoints{
    				{
    					Ne: &meshconfig.Network_NetworkEndpoints_FromCidr{
    						FromCidr: "192.168.0.1/24",
    					},
    				},
    			},
    			Gateways: []*meshconfig.Network_IstioNetworkGateway{
    				{
    					Gw: &meshconfig.Network_IstioNetworkGateway_Address{
    						Address: "1.1.1.1",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  9. pilot/pkg/security/authz/builder/builder_test.go

    	httpbin = map[string]string{
    		"app":     "httpbin",
    		"version": "v1",
    	}
    	meshConfigGRPCNoNamespace = &meshconfig.MeshConfig{
    		ExtensionProviders: []*meshconfig.MeshConfig_ExtensionProvider{
    			{
    				Name: "default",
    				Provider: &meshconfig.MeshConfig_ExtensionProvider_EnvoyExtAuthzGrpc{
    					EnvoyExtAuthzGrpc: &meshconfig.MeshConfig_ExtensionProvider_EnvoyExternalAuthorizationGrpcProvider{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  10. pkg/config/validation/agent/extensionprovider.go

    	}
    	return
    }
    
    func validateExtensionProviderMetricsPrometheus(_ *meshconfig.MeshConfig_ExtensionProvider_PrometheusMetricsProvider) error {
    	return nil
    }
    
    func validateExtensionProviderStackdriver(_ *meshconfig.MeshConfig_ExtensionProvider_StackdriverProvider) error {
    	return nil
    }
    
    func validateExtensionProviderEnvoyFileAccessLog(_ *meshconfig.MeshConfig_ExtensionProvider_EnvoyFileAccessLogProvider) error {
    	return nil
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 11K bytes
    - Viewed (0)
Back to top