Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for targetRefs (0.22 sec)

  1. pkg/config/validation/validation.go

    }
    
    func validatePolicyTargetReference(targetRef *type_beta.PolicyTargetReference) (v Validation) {
    	if targetRef == nil {
    		return
    	}
    	if targetRef.Name == "" {
    		v = appendErrorf(v, "targetRef name must be set")
    	}
    	if targetRef.Namespace != "" {
    		// cross namespace referencing is currently not supported
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  2. pkg/config/validation/validation_test.go

    									Name: "FOO",
    								},
    							},
    						},
    					},
    				}},
    				TargetRef: &api.PolicyTargetReference{
    					Group: gvk.KubernetesGateway.Group,
    					Kind:  gvk.KubernetesGateway.Kind,
    				},
    			},
    			"targetRef name must be set", "",
    		},
    		{
    			"bad targetRef - non-empty namespace",
    			&telemetry.Telemetry{
    				Tracing: []*telemetry.Tracing{{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/managedfields/endpoints.yaml

          kind: Pod
          name: pod-name-1234-0004
          namespace: default
          resourceVersion: '1234567890'
          uid: 11111111-2222-3333-4444-555555555555
      - ip: 10.0.0.1
        targetRef:
          kind: Pod
          name: pod-name-1234-0005
          namespace: default
          resourceVersion: '1234567890'
          uid: 11111111-2222-3333-4444-555555555555
      - ip: 10.0.0.1
        targetRef:
          kind: Pod
          name: pod-name-1234-0006
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 183.9K bytes
    - Viewed (0)
  4. pkg/apis/core/zz_generated.deepcopy.go

    	*out = *in
    	if in.NodeName != nil {
    		in, out := &in.NodeName, &out.NodeName
    		*out = new(string)
    		**out = **in
    	}
    	if in.TargetRef != nil {
    		in, out := &in.TargetRef, &out.TargetRef
    		*out = new(ObjectReference)
    		**out = **in
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EndpointAddress.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    	*out = *in
    	if in.NodeName != nil {
    		in, out := &in.NodeName, &out.NodeName
    		*out = new(string)
    		**out = **in
    	}
    	if in.TargetRef != nil {
    		in, out := &in.TargetRef, &out.TargetRef
    		*out = new(ObjectReference)
    		**out = **in
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EndpointAddress.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__discovery.k8s.io__v1_openapi.json

                "type": "string"
              },
              "targetRef": {
                "allOf": [
                  {
                    "$ref": "#/components/schemas/io.k8s.api.core.v1.ObjectReference"
                  }
                ],
                "description": "targetRef is a reference to a Kubernetes object that represents this endpoint."
              },
              "zone": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 146.6K bytes
    - Viewed (0)
  7. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    labels that indicate a specific set of pods/VMs on which a policy should be applied. type: object type: object sha256: description: SHA256 checksum that will be used to verify Wasm module or OCI container. pattern: (^$|^[a-f0-9]{64}$) type: string targetRef: description: Optional. properties: group: description: group is the group of the target resource. type: string kind: description: kind is kind of the target resource. type: string name: description: name is the name of the target resource. type:...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
Back to top