Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for string (0.07 sec)

  1. pilot/pkg/model/telemetry_logging_test.go

    			[]string{"envoy"},
    			[]string{},
    		},
    		{
    			"non existing",
    			[]config.Config{newTelemetry("default", nonExistant)},
    			networking.ListenerClassSidecarOutbound,
    			sidecar,
    			[]string{"envoy"},
    			[]string{},
    		},
    		{
    			"server - multi filters",
    			[]config.Config{newTelemetry("istio-system", multiFilters)},
    			networking.ListenerClassSidecarOutbound,
    			sidecar,
    			nil,
    			[]string{"envoy"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 54K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/route/route_test.go

    								Add:    map[string]string{"x-route-req-add-blue": "v2", ":authority": "blue.bar.extsvc.com"},
    								Remove: []string{"x-route-req-remove-blue"},
    							},
    							Response: &networking.Headers_HeaderOperations{
    								Set:    map[string]string{"x-route-resp-set-blue": "v1"},
    								Add:    map[string]string{"x-route-resp-add-blue": "v2"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 88.1K bytes
    - Viewed (0)
  3. pilot/pkg/model/sidecar_test.go

    		}
    	}
    
    	cases := []struct {
    		name   string
    		egress []string
    
    		contains map[ConfigKey]bool
    	}{
    		{"Just wildcard", []string{"*/*"}, allContains(nsName, true)},
    		{"Namespace and wildcard", []string{"ns/*", "*/*"}, allContains(nsName, true)},
    		{"Just Namespace", []string{"ns/*"}, allContains(nsName, true)},
    		{"Wrong Namespace", []string{"ns/*"}, allContains("other-ns", false)},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 09:38:49 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/cluster_tls_test.go

    		Mode:            networking.ClientTLSSettings_ISTIO_MUTUAL,
    		SubjectAltNames: []string{"custom.foo.com"},
    		Sni:             "custom.foo.com",
    	}
    	tests := []struct {
    		name            string
    		tls             *networking.ClientTLSSettings
    		sans            []string
    		sni             string
    		proxy           *model.Proxy
    		autoMTLSEnabled bool
    		meshExternal    bool
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 03:53:05 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  5. pkg/workloadapi/workload.pb.go

    // Enum value maps for WorkloadStatus.
    var (
    	WorkloadStatus_name = map[int32]string{
    		0: "HEALTHY",
    		1: "UNHEALTHY",
    	}
    	WorkloadStatus_value = map[string]int32{
    		"HEALTHY":   0,
    		"UNHEALTHY": 1,
    	}
    )
    
    func (x WorkloadStatus) Enum() *WorkloadStatus {
    	p := new(WorkloadStatus)
    	*p = x
    	return p
    }
    
    func (x WorkloadStatus) String() string {
    	return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    		map[string]string{}, map[string]string{},
    		[]int32{8081}, map[string]string{"test-app": "test-app-2"}, t)
    	// service event handlers should not trigger for svc3 and svc4
    	createService(controller, "svc3", nsB,
    		map[string]string{}, map[string]string{},
    		[]int32{8082}, map[string]string{"test-app": "test-app-3"}, t)
    	createService(controller, "svc4", nsB,
    		map[string]string{}, map[string]string{},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/crdclient/types.gen.go

    	default:
    		return nil, fmt.Errorf("unsupported type: %v", orig.GroupVersionKind)
    	}
    }
    
    func delete(c kube.Client, typ config.GroupVersionKind, name, namespace string, resourceVersion *string) error {
    	var deleteOptions metav1.DeleteOptions
    	if resourceVersion != nil {
    		deleteOptions.Preconditions = &metav1.Preconditions{ResourceVersion: resourceVersion}
    	}
    	switch typ {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 17:37:32 UTC 2024
    - 62.2K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/serviceregistry_test.go

    			})
    		})
    	}
    }
    
    func expectAmbient(strings []string, ambient bool) []string {
    	if !ambient {
    		return strings
    	}
    	out := make([]string, 0, len(strings))
    	for _, s := range strings {
    		out = append(out, "connect_originate;"+s)
    	}
    	return out
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/listener_test.go

    		Namespace: "not-default",
    		Labels: map[string]string{
    			"istio": "ingressgateway",
    		},
    	}
    	virtualServiceSpec = &networking.VirtualService{
    		Hosts:    []string{"test.com"},
    		Gateways: []string{"mesh"},
    		Tcp: []*networking.TCPRoute{
    			{
    				Match: []*networking.L4MatchAttributes{
    					{
    						DestinationSubnets: []string{"10.10.0.0/24"},
    						Port:               8080,
    					},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  10. istioctl/pkg/describe/describe.go

    	svcHost := extendFQDN(fmt.Sprintf("%s.%s", svc.ObjectMeta.Name, svc.ObjectMeta.Namespace))
    	facts := []string{}
    	mismatchNotes := []string{}
    	match := false
    	for _, dest := range route.Route {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
Back to top