Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 53 for string (0.09 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. common/scripts/metallb-native.yaml

        - jsonPath: .spec.ipAddressPools
          name: IPAddressPools
          type: string
        - jsonPath: .spec.ipAddressPoolSelectors
          name: IPAddressPool Selectors
          type: string
        - jsonPath: .spec.peers
          name: Peers
          type: string
        - jsonPath: .spec.nodeSelectors
          name: Node Selectors
          priority: 10
          type: string
        name: v1beta1
        schema:
          openAPIV3Schema:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:31 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  4. 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)
  5. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

    message GroupVersion {
      optional string group = 1;
    
      optional string version = 2;
    }
    
    // GroupVersion contains the "group/version" and "version" string of a version.
    // It is made a struct to keep extensibility.
    message GroupVersionForDiscovery {
      // groupVersion specifies the API group and version in the form "group/version"
      optional string groupVersion = 1;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top