Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 30 for parentRef (0.28 sec)

  1. pilot/pkg/config/kube/gateway/conditions_test.go

    	lastTransitionTime := metav1.Now()
    	parentRef := httpRouteSpec.ParentRefs[0]
    	parentStatus := []k8s.RouteParentStatus{
    		{
    			ParentRef:      parentRef,
    			ControllerName: k8s.GatewayController("another-gateway-controller"),
    			Conditions: []metav1.Condition{
    				{Type: "foo", Status: "bar"},
    			},
    		},
    		{
    			ParentRef:      parentRef,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 13:05:41 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. pkg/registry/core/service/ipallocator/controller/repairip.go

    		if ipAddress.Spec.ParentRef.Namespace != svc.Namespace ||
    			ipAddress.Spec.ParentRef.Name != svc.Name {
    			// verify that there are no two Services with the same IP, otherwise
    			// it will keep deleting and recreating the same IPAddress changing the reference
    			refService, err := r.serviceLister.Services(ipAddress.Spec.ParentRef.Namespace).Get(ipAddress.Spec.ParentRef.Name)
    			if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/gateway/testdata/isolation.status.yaml.golden

            not found
          reason: BackendNotFound
          status: "False"
          type: ResolvedRefs
        controllerName: istio.io/gateway-controller
        parentRef:
          name: isolation
          namespace: gateway-conformance-infra
          sectionName: abc-foo-example-com
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 20:24:52 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/v1.30.0/networking.k8s.io.v1alpha1.IPAddress.json

            "time": "2004-01-01T01:01:01Z",
            "fieldsType": "fieldsTypeValue",
            "fieldsV1": {},
            "subresource": "subresourceValue"
          }
        ]
      },
      "spec": {
        "parentRef": {
          "group": "groupValue",
          "resource": "resourceValue",
          "namespace": "namespaceValue",
          "name": "nameValue"
        }
      }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/v1.30.0/networking.k8s.io.v1alpha1.IPAddress.yaml

        blockOwnerDeletion: true
        controller: true
        kind: kindValue
        name: nameValue
        uid: uidValue
      resourceVersion: resourceVersionValue
      selfLink: selfLinkValue
      uid: uidValue
    spec:
      parentRef:
        group: groupValue
        name: nameValue
        namespace: namespaceValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 986 bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/gateway/testdata/grpc.status.yaml.golden

          type: Accepted
        - lastTransitionTime: fake
          message: All references resolved
          reason: ResolvedRefs
          status: "True"
          type: ResolvedRefs
        controllerName: istio.io/gateway-controller
        parentRef:
          name: gateway
          namespace: istio-system
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 17:37:32 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/gateway/conditions.go

    			return parentRefString(s.ParentRef) == parentRefString(gw.OriginalReference) &&
    				s.ControllerName == k8s.GatewayController(features.ManagedGatewayController)
    		})
    		if currentStatus != nil {
    			currentConditions = currentStatus.Conditions
    		}
    		parents = append(parents, k8s.RouteParentStatus{
    			ParentRef:      gw.OriginalReference,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 13:05:41 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/gateway/conversion.go

    ) *ParentError {
    	if parentRef.Kind == gvk.Service || parentRef.Kind == gvk.ServiceEntry {
    		// TODO: check if the service reference is valid
    		if false {
    			return &ParentError{
    				Reason:  ParentErrorParentRefConflict,
    				Message: fmt.Sprintf("parent service: %q is invalid", parentRef.Name),
    			}
    		}
    	} else {
    		// First, check section and port apply. This must come first
    		if parentRef.Port != 0 && parentRef.Port != parent.Port {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  9. tests/integration/pilot/testdata/gateway-api-crd.yaml

    
                      * If one ParentRef sets `sectionName`, all ParentRefs referencing the
                        same object must also set `sectionName`.
                      * If one ParentRef sets `port`, all ParentRefs referencing the same
                        object must also set `port`.
                      * If one ParentRef sets `sectionName` and `port`, all ParentRefs
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 02:01:51 UTC 2024
    - 912.2K bytes
    - Viewed (0)
  10. pkg/printers/internalversion/printers.go

    	parentRefName := "<none>"
    	if obj.Spec.ParentRef != nil {
    		gr := schema.GroupResource{
    			Group:    obj.Spec.ParentRef.Group,
    			Resource: obj.Spec.ParentRef.Resource,
    		}
    		parentRefName = strings.ToLower(gr.String())
    		if obj.Spec.ParentRef.Namespace != "" {
    			parentRefName += "/" + obj.Spec.ParentRef.Namespace
    		}
    		parentRefName += "/" + obj.Spec.ParentRef.Name
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
Back to top