Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 105 for targetRefs (0.21 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. pilot/pkg/features/pilot.go

    		"If disabled, Gateway API gateways will ignore workloadSelector policies, only"+
    			"applying policies that select the gateway with a targetRef.").Get()
    
    	// Useful for IPv6-only EKS clusters. See https://aws.github.io/aws-eks-best-practices/networking/ipv6/ why it assigns an additional IPv4 NAT address.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. pilot/pkg/model/telemetry_logging_test.go

    					{
    						Name: "envoy",
    					},
    				},
    				Disabled: &wrappers.BoolValue{
    					Value: true,
    				},
    			},
    		},
    	}
    	targetRefClient := &tpb.Telemetry{
    		TargetRef: &v1beta1.PolicyTargetReference{
    			Group: gvk.KubernetesGateway.Group,
    			Kind:  gvk.KubernetesGateway.Kind,
    			Name:  "my-gateway",
    		},
    		AccessLogging: []*tpb.AccessLogging{
    			{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 54K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/controller/ambient/authorization.go

    }
    
    func convertAuthorizationPolicy(rootns string, obj *securityclient.AuthorizationPolicy) *security.Authorization {
    	pol := &obj.Spec
    
    	polTargetRef := model.GetTargetRefs(pol)
    	if len(polTargetRef) > 0 {
    		// TargetRef is not intended for ztunnel
    		return nil
    	}
    
    	scope := security.Scope_WORKLOAD_SELECTOR
    	if pol.GetSelector() == nil {
    		scope = security.Scope_NAMESPACE
    		// TODO: TDA
    		if rootns == obj.Namespace {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 16:23:36 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  10. pkg/config/analysis/msg/messages.yaml

      - name: "IneffectiveSelector"
        code: IST0166
        level: Warning
        description: "Selector has no effect when applied to Kubernetes Gateways."
        template: "Ineffective selector on Kubernetes Gateway %s. Use the TargetRef field instead."
        args:
          - name: gateway
            type: string
    
      - name: "IneffectivePolicy"
        code: IST0167
        level: Warning
        description: "The policy applied has no impact."
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
Back to top