Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 105 for targetRefs (0.18 sec)

  1. staging/src/k8s.io/api/testdata/HEAD/core.v1.Endpoints.json

          }
        ]
      },
      "subsets": [
        {
          "addresses": [
            {
              "ip": "ipValue",
              "hostname": "hostnameValue",
              "nodeName": "nodeNameValue",
              "targetRef": {
                "kind": "kindValue",
                "namespace": "namespaceValue",
                "name": "nameValue",
                "uid": "uidValue",
                "apiVersion": "apiVersionValue",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 06 21:25:20 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  2. pkg/controller/endpoint/endpoints_controller_test.go

    			}
    			if epa.TargetRef.Kind != "Pod" {
    				t.Fatalf("TargetRef.Kind: expected: %s, got: %s", "Pod", epa.TargetRef.Kind)
    			}
    			if epa.TargetRef.Namespace != pod.ObjectMeta.Namespace {
    				t.Fatalf("TargetRef.Namespace: expected: %s, got: %s", pod.ObjectMeta.Namespace, epa.TargetRef.Namespace)
    			}
    			if epa.TargetRef.Name != pod.ObjectMeta.Name {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/HEAD/core.v1.Endpoints.yaml

        ip: ipValue
        nodeName: nodeNameValue
        targetRef:
          apiVersion: apiVersionValue
          fieldPath: fieldPathValue
          kind: kindValue
          name: nameValue
          namespace: namespaceValue
          resourceVersion: resourceVersionValue
          uid: uidValue
      notReadyAddresses:
      - hostname: hostnameValue
        ip: ipValue
        nodeName: nodeNameValue
        targetRef:
          apiVersion: apiVersionValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 06 21:25:20 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.Endpoints.json

          }
        ]
      },
      "subsets": [
        {
          "addresses": [
            {
              "ip": "ipValue",
              "hostname": "hostnameValue",
              "nodeName": "nodeNameValue",
              "targetRef": {
                "kind": "kindValue",
                "namespace": "namespaceValue",
                "name": "nameValue",
                "uid": "uidValue",
                "apiVersion": "apiVersionValue",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.Endpoints.yaml

        ip: ipValue
        nodeName: nodeNameValue
        targetRef:
          apiVersion: apiVersionValue
          fieldPath: fieldPathValue
          kind: kindValue
          name: nameValue
          namespace: namespaceValue
          resourceVersion: resourceVersionValue
          uid: uidValue
      notReadyAddresses:
      - hostname: hostnameValue
        ip: ipValue
        nodeName: nodeNameValue
        targetRef:
          apiVersion: apiVersionValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  6. pkg/api/v1/endpoints/util.go

    	ipComparison := bytes.Compare([]byte(a.IP), []byte(b.IP))
    	if ipComparison != 0 {
    		return ipComparison < 0
    	}
    	if b.TargetRef == nil {
    		return false
    	}
    	if a.TargetRef == nil {
    		return true
    	}
    	return a.TargetRef.UID < b.TargetRef.UID
    }
    
    // SortSubsets sorts an array of EndpointSubset objects in place.  For ease of
    // use it returns the input slice.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 07 07:01:25 UTC 2018
    - 8K bytes
    - Viewed (0)
  7. releasenotes/notes/46846.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: security
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 27 22:08:42 UTC 2023
    - 196 bytes
    - Viewed (0)
  8. pkg/config/analysis/analyzers/testdata/k8sgateway-selector.yaml

          gateway.networking.k8s.io/gateway-name: bookinfo-gateway
    ---
    # has targetRef set, should be effective
    apiVersion: telemetry.istio.io/v1alpha1
    kind: Telemetry
    metadata:
      name: telemetry-effective
      namespace: default
    spec:
      selector:
        matchLabels:
          gateway.networking.k8s.io/gateway-name: bookinfo-gateway
      targetRef:
        group: gateway.networking.k8s.io
        kind: Gateway
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 15 01:19:33 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/controller/endpointslice.go

    // * It is an endpoint with an associate Pod, but its not found.
    func (c *Controller) getPod(ip string, namespace string, targetRef *corev1.ObjectReference) *corev1.Pod {
    	if targetRef != nil && targetRef.Kind == "Pod" {
    		key := types.NamespacedName{Name: targetRef.Name, Namespace: targetRef.Namespace}
    		pod := c.pods.getPodByKey(key)
    		return pod
    	}
    	// This means the endpoint is manually controlled
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  10. releasenotes/notes/46845.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: extensibility
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 05 19:48:31 UTC 2023
    - 192 bytes
    - Viewed (0)
Back to top