Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 399 for MeshConfig (0.27 sec)

  1. pilot/pkg/serviceregistry/kube/controller/ambient/meshconfig.go

    	"istio.io/istio/pkg/log"
    )
    
    type MeshConfig struct {
    	*meshapi.MeshConfig
    }
    
    func (m MeshConfig) ResourceName() string { return " " }
    
    func (m MeshConfig) Equals(other MeshConfig) bool { return proto.Equal(m.MeshConfig, other.MeshConfig) }
    
    func MeshConfigCollection(ConfigMaps krt.Collection[*v1.ConfigMap], options Options) krt.Singleton[MeshConfig] {
    	cmName := "istio"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 09 19:55:53 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. istioctl/pkg/workload/testdata/vmconfig/ipv4/meshconfig.yaml

    Xiaopeng Han <******@****.***> 1686841337 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 300 bytes
    - Viewed (0)
  3. istioctl/pkg/workload/testdata/vmconfig/ipv6/meshconfig.yaml

    Xiaopeng Han <******@****.***> 1686841337 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 300 bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/testdata/common/meshconfig.yaml

    Xiaopeng Han <******@****.***> 1701140112 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 28 02:55:12 UTC 2023
    - 50 bytes
    - Viewed (0)
  5. pkg/config/analysis/analyzers/testdata/telemetry-lightstep-meshconfig.yaml

    zirain <******@****.***> 1679323003 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 20 14:36:43 UTC 2023
    - 157 bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/testdata/injection-image-distroless-no-meshconfig.yaml

    Xiaopeng Han <******@****.***> 1702395114 +0300
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 12 15:31:54 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  7. pkg/config/mesh/mesh.go

    // ApplyProxyConfig applies the give proxy config yaml to a mesh config object. The passed in mesh config
    // will not be modified.
    func ApplyProxyConfig(yaml string, meshConfig *meshconfig.MeshConfig) (*meshconfig.MeshConfig, error) {
    	mc := proto.Clone(meshConfig).(*meshconfig.MeshConfig)
    	pc, err := MergeProxyConfig(yaml, mc.DefaultConfig)
    	if err != nil {
    		return nil, err
    	}
    	mc.DefaultConfig = pc
    	return mc, nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 12K bytes
    - Viewed (0)
  8. pilot/pkg/model/cluster_local_test.go

    			host:     "not.cluster.local",
    			expected: false,
    		},
    		{
    			name: "override default namespace",
    			m: &meshconfig.MeshConfig{
    				// Remove the cluster-local setting for kube-system.
    				ServiceSettings: []*meshconfig.MeshConfig_ServiceSettings{
    					{
    						Settings: &meshconfig.MeshConfig_ServiceSettings_Settings{
    							ClusterLocal: false,
    						},
    						Hosts: []string{"*.kube-system.svc.cluster.local"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  9. pilot/pkg/model/proxy_config_test.go

    		first    *meshconfig.ProxyConfig
    		second   *meshconfig.ProxyConfig
    		expected *meshconfig.ProxyConfig
    	}{
    		{
    			name: "concurrency",
    			first: &meshconfig.ProxyConfig{
    				Concurrency: v(1),
    			},
    			second: &meshconfig.ProxyConfig{
    				Concurrency: v(2),
    			},
    			expected: &meshconfig.ProxyConfig{
    				Concurrency: v(1),
    			},
    		},
    		{
    			name: "concurrency value 0",
    			first: &meshconfig.ProxyConfig{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 21 01:23:19 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  10. pkg/config/validation/agent/validation_test.go

    						Tracer: &meshconfig.Tracing_Zipkin_{
    							Zipkin: &meshconfig.Tracing_Zipkin{
    								Address: "$(HOST_IP):9411",
    							},
    						},
    					}
    				},
    			),
    			isValid: true,
    		},
    		{
    			name: "zipkin config invalid",
    			in: modify(valid,
    				func(c *meshconfig.ProxyConfig) {
    					c.Tracing = &meshconfig.Tracing{
    						Tracer: &meshconfig.Tracing_Zipkin_{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 39.1K bytes
    - Viewed (0)
Back to top