Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for ConfigType (0.25 sec)

  1. pilot/pkg/networking/core/envoyfilter/listener_patch_test.go

    					Filters: []*listener.Filter{
    						{
    							Name: wellknown.HTTPConnectionManager,
    							ConfigType: &listener.Filter_TypedConfig{
    								TypedConfig: protoconv.MessageToAny(&hcm.HttpConnectionManager{
    									HttpFilters: []*hcm.HttpFilter{
    										{
    											Name:       wellknown.Fault,
    											ConfigType: &hcm.HttpFilter_TypedConfig{TypedConfig: faultFilterInAny},
    										},
    										{Name: "http-filter2"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 70.1K bytes
    - Viewed (0)
  2. istioctl/cmd/root.go

    func ConfigAndEnvProcessing() error {
    	configPath := filepath.Dir(root.IstioConfig)
    	baseName := filepath.Base(root.IstioConfig)
    	configType := filepath.Ext(root.IstioConfig)
    	configName := baseName[0 : len(baseName)-len(configType)]
    	if configType != "" {
    		configType = configType[1:]
    	}
    
    	// Allow users to override some variables through $HOME/.istioctl/config.yaml
    	// and environment variables.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 15:59:33 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/accesslog.go

    		}
    
    		if telFilter := buildAccessLogFilterFromTelemetry(c); telFilter != nil {
    			filters = append(filters, telFilter)
    		}
    
    		al := &accesslog.AccessLog{
    			Name:       c.AccessLog.Name,
    			ConfigType: c.AccessLog.ConfigType,
    			Filter:     buildAccessLogFilter(filters...),
    		}
    
    		als = append(als, al)
    	}
    	return als
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/accesslog_test.go

    			},
    			tcp:   &tcp.TcpProxy{},
    			class: networking.ListenerClassSidecarInbound,
    			expected: &tcp.TcpProxy{
    				AccessLog: []*accesslog.AccessLog{
    					{
    						Name:       wellknown.FileAccessLog,
    						ConfigType: &accesslog.AccessLog_TypedConfig{TypedConfig: protoconv.MessageToAny(defaultJSONLabelsOut)},
    					},
    				},
    			},
    		},
    		{
    			name: "log-selector-unmatched-telemetry",
    			push: env.PushContext(),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  5. pilot/pkg/model/telemetry_logging_test.go

    				Name:       wellknown.FileAccessLog,
    				ConfigType: &accesslog.AccessLog_TypedConfig{TypedConfig: protoconv.MessageToAny(stdout)},
    			},
    		},
    		{
    			name: "stderr",
    			meshConfig: &meshconfig.MeshConfig{
    				AccessLogEncoding: meshconfig.MeshConfig_TEXT,
    			},
    			fp: stderr,
    			expected: &accesslog.AccessLog{
    				Name:       wellknown.FileAccessLog,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 54K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/tracing_test.go

    								},
    							},
    						},
    					}),
    				},
    			}
    
    			fakeOtelHTTPAny := &tracingcfg.Tracing_Http{
    				Name:       envoyOpenTelemetry,
    				ConfigType: &tracingcfg.Tracing_Http_TypedConfig{TypedConfig: protoconv.MessageToAny(fakeOTelHTTPProviderConfig)},
    			}
    			want := fakeTracingConfig(fakeOtelHTTPAny, 100, 256, append(defaultTracingTags(), fakeEnvTag))
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 20:47:52 UTC 2024
    - 38.6K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/networkfilter.go

    ) *listener.Filter {
    	accessLogBuilder.setTCPAccessLog(push, node, config, class, svc)
    
    	tcpFilter := &listener.Filter{
    		Name:       wellknown.TCPProxy,
    		ConfigType: &listener.Filter_TypedConfig{TypedConfig: protoconv.MessageToAny(config)},
    	}
    	return tcpFilter
    }
    
    // buildOutboundNetworkFiltersWithSingleDestination takes a single cluster name
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/listener_inbound.go

    		}
    		// Ensure consistent ordering as we are looping over a map
    		sort.Ints(ports)
    		filter := &listener.ListenerFilter{
    			Name:           wellknown.TLSInspector,
    			ConfigType:     xdsfilters.TLSInspector.ConfigType,
    			FilterDisabled: listenerPredicateExcludePorts(ports),
    		}
    		return filter
    	}
    	ports := make([]int, 0, len(inspectors))
    	// Collect all ports where TLS inspector is disabled.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/extension/wasmplugin.go

    	}
    	delete(filterMap, phase)
    	return list
    }
    
    func toEnvoyHTTPFilter(wasmPlugin *model.WasmPluginWrapper) *hcm.HttpFilter {
    	return &hcm.HttpFilter{
    		Name: wasmPlugin.ResourceName,
    		ConfigType: &hcm.HttpFilter_ConfigDiscovery{
    			ConfigDiscovery: &core.ExtensionConfigSource{
    				ConfigSource: defaultConfigSource,
    				TypeUrls: []string{
    					xds.WasmHTTPFilterType,
    					xds.RBACHTTPFilterType,
    				},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  10. pilot/pkg/model/telemetry_logging.go

    					},
    				},
    			},
    			TransportApiVersion:     core.ApiVersion_V3,
    			FilterStateObjectsToLog: filterObjects,
    		},
    	}
    
    	return &accesslog.AccessLog{
    		Name:       TCPEnvoyALSName,
    		ConfigType: &accesslog.AccessLog_TypedConfig{TypedConfig: protoconv.MessageToAny(fl)},
    	}
    }
    
    func fileAccessLogFromTelemetry(prov *meshconfig.MeshConfig_ExtensionProvider_EnvoyFileAccessLogProvider) *accesslog.AccessLog {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 23K bytes
    - Viewed (0)
Back to top