Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 105 for targetRefs (0.22 sec)

  1. pilot/pkg/xds/mesh_network_test.go

    		},
    		&discoveryv1.EndpointSlice{
    			ObjectMeta: baseMeta,
    			Endpoints: []discoveryv1.Endpoint{{
    				Addresses:  []string{w.ip},
    				Conditions: discoveryv1.EndpointConditions{},
    				Hostname:   nil,
    				TargetRef: &corev1.ObjectReference{
    					APIVersion: "v1",
    					Kind:       "Pod",
    					Name:       podMeta.Name,
    					Namespace:  podMeta.Namespace,
    				},
    				DeprecatedTopology: nil,
    				NodeName:           nil,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 16:59:05 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  2. pkg/controller/endpoint/endpoints_controller.go

    	if endpointIP == "" {
    		return nil, fmt.Errorf("failed to find a matching endpoint for service %v", svc.Name)
    	}
    
    	return &v1.EndpointAddress{
    		IP:       endpointIP,
    		NodeName: &pod.Spec.NodeName,
    		TargetRef: &v1.ObjectReference{
    			Kind:      "Pod",
    			Namespace: pod.ObjectMeta.Namespace,
    			Name:      pod.ObjectMeta.Name,
    			UID:       pod.ObjectMeta.UID,
    		},
    	}, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    		refs = make([]*corev1.ObjectReference, len(ips))
    	}
    	var portNum int32 = 1001
    	eas := make([]corev1.EndpointAddress, 0)
    	for i, ip := range ips {
    		eas = append(eas, corev1.EndpointAddress{IP: ip, TargetRef: refs[i]})
    	}
    
    	eps := make([]corev1.EndpointPort, 0)
    	for _, name := range portNames {
    		eps = append(eps, corev1.EndpointPort{Name: name, Port: portNum})
    	}
    
    	endpoint := &corev1.Endpoints{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  4. pkg/config/analysis/msg/messages.gen.go

    	// Description: Selector has no effect when applied to Kubernetes Gateways.
    	IneffectiveSelector = diag.NewMessageType(diag.Warning, "IST0166", "Ineffective selector on Kubernetes Gateway %s. Use the TargetRef field instead.")
    
    	// IneffectivePolicy defines a diag.MessageType for message "IneffectivePolicy".
    	// 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
    - 43.2K bytes
    - Viewed (0)
  5. operator/cmd/mesh/testdata/manifest-generate/output/all_on.golden-show-in-gh-pull-request.yaml

                          pods/VMs on which a policy should be applied.
                        type: object
                    type: object
                  targetRef:
                    description: Optional.
                    properties:
                      group:
                        description: group is the group of the target resource.
                        type: string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 506.8K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    		nil)
    
    	s.addPolicy(t, "gateway-targeted", testNS, nil, gvk.AuthorizationPolicy, func(o controllers.Object) {
    		p := o.(*clientsecurityv1beta1.AuthorizationPolicy)
    		p.Spec.TargetRef = &v1beta1.PolicyTargetReference{
    			Group: gvk.KubernetesGateway.Group,
    			Kind:  gvk.KubernetesGateway.Kind,
    			Name:  "dummy-waypoint",
    		}
    	})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/listener_test.go

    	},
    	{
    		Meta: config.Meta{Name: uuid.NewString(), Namespace: "istio-system", GroupVersionKind: gvk.AuthorizationPolicy},
    		Spec: &security.AuthorizationPolicy{
    			Selector:     nil,
    			TargetRef:    nil,
    			Rules:        nil,
    			Action:       security.AuthorizationPolicy_CUSTOM,
    			ActionDetail: &security.AuthorizationPolicy_Provider{Provider: &security.AuthorizationPolicy_ExtensionProvider{Name: "extauthz"}},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
Back to top