Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 89 for targetRefs (0.47 sec)

  1. common-protos/k8s.io/api/discovery/v1beta1/generated.proto

      // Label (RFC 1123) validation.
      // +optional
      optional string hostname = 3;
    
      // targetRef is a reference to a Kubernetes object that represents this
      // endpoint.
      // +optional
      optional k8s.io.api.core.v1.ObjectReference targetRef = 4;
    
      // topology contains arbitrary topology information associated with the
      // endpoint. These key/value pairs must conform with the label format.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8K bytes
    - Viewed (0)
  2. pkg/apis/discovery/types.go

    	// fungible (e.g. multiple A values in DNS). Must pass DNS Label (RFC 1123)
    	// validation.
    	// +optional
    	Hostname *string
    	// targetRef is a reference to a Kubernetes object that represents this
    	// endpoint.
    	// +optional
    	TargetRef *api.ObjectReference
    	// deprecatedTopology is deprecated and only retained for round-trip
    	// compatibility with v1beta1 Topology field.  When v1beta1 is removed, this
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 16 21:38:06 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/discovery/v1/types_swagger_doc_generated.go

    	"targetRef":          "targetRef is a reference to a Kubernetes object that represents this endpoint.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 18 15:36:48 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/discovery/v1/generated.proto

      // Label (RFC 1123) validation.
      // +optional
      optional string hostname = 3;
    
      // targetRef is a reference to a Kubernetes object that represents this
      // endpoint.
      // +optional
      optional k8s.io.api.core.v1.ObjectReference targetRef = 4;
    
      // deprecatedTopology contains topology information part of the v1beta1
      // API. This field is deprecated, and will be removed when the v1beta1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/discovery/v1beta1/generated.proto

      // Label (RFC 1123) validation.
      // +optional
      optional string hostname = 3;
    
      // targetRef is a reference to a Kubernetes object that represents this
      // endpoint.
      // +optional
      optional .k8s.io.api.core.v1.ObjectReference targetRef = 4;
    
      // topology contains arbitrary topology information associated with the
      // endpoint. These key/value pairs must conform with the label format.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/discovery/v1beta1/generated.pb.go

    			if postIndex < 0 {
    				return ErrInvalidLengthGenerated
    			}
    			if postIndex > l {
    				return io.ErrUnexpectedEOF
    			}
    			if m.TargetRef == nil {
    				m.TargetRef = &v1.ObjectReference{}
    			}
    			if err := m.TargetRef.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
    				return err
    			}
    			iNdEx = postIndex
    		case 5:
    			if wireType != 2 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 54.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/discovery/v1/generated.proto

      // Label (RFC 1123) validation.
      // +optional
      optional string hostname = 3;
    
      // targetRef is a reference to a Kubernetes object that represents this
      // endpoint.
      // +optional
      optional .k8s.io.api.core.v1.ObjectReference targetRef = 4;
    
      // deprecatedTopology contains topology information part of the v1beta1
      // API. This field is deprecated, and will be removed when the v1beta1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  8. tests/integration/telemetry/api/accesslogs_test.go

    			t.NewSubTest("enabled").Run(func(t framework.TestContext) {
    				applyTelemetryResource(t, true)
    				runAccessLogsTests(t, true, false)
    				deleteTelemetryResource(t, true)
    			})
    			t.NewSubTest("enabled-with-targetref").Run(func(t framework.TestContext) {
    				args := map[string]any{
    					"To":                GetTarget().(echo.Instances),
    					"TargetGatewayName": GetTarget().ServiceName() + "-gateway",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  9. pilot/pkg/model/telemetry_test.go

    		telemetryKey: telemetryKey{
    			Workload: namespacedName,
    		},
    		Logging: []*tpb.AccessLogging{
    			emptyEnvoyLogging,
    		},
    	}
    	validTelemetryConfigurationWithTargetRef := &tpb.Telemetry{
    		TargetRef: &v1beta1.PolicyTargetReference{
    			Group: gvk.KubernetesGateway.Group,
    			Kind:  gvk.KubernetesGateway.Kind,
    			Name:  "my-gateway",
    		},
    		Tracing: []*tpb.Tracing{
    			emptyStackDriverTracing,
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  10. pilot/pkg/xds/cds_test.go

    			Namespace: service.Namespace,
    			Labels: map[string]string{
    				discoveryv1.LabelServiceName: service.Name,
    			},
    		},
    		Endpoints: []discoveryv1.Endpoint{{
    			Addresses: []string{pod.Status.PodIP},
    			TargetRef: &v1.ObjectReference{
    				Kind:      "Pod",
    				Namespace: pod.Namespace,
    				Name:      pod.Name,
    			},
    		}},
    		Ports: []discoveryv1.EndpointPort{{Name: ptr.Of("http"), Port: ptr.Of(int32(80))}},
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 02:06:39 UTC 2024
    - 9.2K bytes
    - Viewed (0)
Back to top