Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 39 for forZones (0.14 sec)

  1. staging/src/k8s.io/api/discovery/v1/types.go

    type EndpointHints struct {
    	// forZones indicates the zone(s) this endpoint should be consumed by to
    	// enable topology aware routing.
    	// +listType=atomic
    	ForZones []ForZone `json:"forZones,omitempty" protobuf:"bytes,1,name=forZones"`
    }
    
    // ForZone provides information about which zones should consume this endpoint.
    type ForZone struct {
    	// name represents the name of the zone.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.30.0/discovery.k8s.io.v1beta1.EndpointSlice.json

            "fieldPath": "fieldPathValue"
          },
          "topology": {
            "topologyKey": "topologyValue"
          },
          "nodeName": "nodeNameValue",
          "hints": {
            "forZones": [
              {
                "name": "nameValue"
              }
            ]
          }
        }
      ],
      "ports": [
        {
          "name": "nameValue",
          "protocol": "protocolValue",
          "port": 3,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.30.0/discovery.k8s.io.v1beta1.EndpointSlice.yaml

    addressType: addressTypeValue
    apiVersion: discovery.k8s.io/v1beta1
    endpoints:
    - addresses:
      - addressesValue
      conditions:
        ready: true
        serving: true
        terminating: true
      hints:
        forZones:
        - name: nameValue
      hostname: hostnameValue
      nodeName: nodeNameValue
      targetRef:
        apiVersion: apiVersionValue
        fieldPath: fieldPathValue
        kind: kindValue
        name: nameValue
        namespace: namespaceValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/HEAD/discovery.k8s.io.v1.EndpointSlice.json

          },
          "deprecatedTopology": {
            "deprecatedTopologyKey": "deprecatedTopologyValue"
          },
          "nodeName": "nodeNameValue",
          "zone": "zoneValue",
          "hints": {
            "forZones": [
              {
                "name": "nameValue"
              }
            ]
          }
        }
      ],
      "ports": [
        {
          "name": "nameValue",
          "protocol": "protocolValue",
          "port": 3,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 06 21:25:20 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/HEAD/discovery.k8s.io.v1beta1.EndpointSlice.yaml

    addressType: addressTypeValue
    apiVersion: discovery.k8s.io/v1beta1
    endpoints:
    - addresses:
      - addressesValue
      conditions:
        ready: true
        serving: true
        terminating: true
      hints:
        forZones:
        - name: nameValue
      hostname: hostnameValue
      nodeName: nodeNameValue
      targetRef:
        apiVersion: apiVersionValue
        fieldPath: fieldPathValue
        kind: kindValue
        name: nameValue
        namespace: namespaceValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 06 21:25:20 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/v1.29.0/discovery.k8s.io.v1beta1.EndpointSlice.json

            "fieldPath": "fieldPathValue"
          },
          "topology": {
            "topologyKey": "topologyValue"
          },
          "nodeName": "nodeNameValue",
          "hints": {
            "forZones": [
              {
                "name": "nameValue"
              }
            ]
          }
        }
      ],
      "ports": [
        {
          "name": "nameValue",
          "protocol": "protocolValue",
          "port": 3,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/v1.29.0/discovery.k8s.io.v1beta1.EndpointSlice.yaml

    addressType: addressTypeValue
    apiVersion: discovery.k8s.io/v1beta1
    endpoints:
    - addresses:
      - addressesValue
      conditions:
        ready: true
        serving: true
        terminating: true
      hints:
        forZones:
        - name: nameValue
      hostname: hostnameValue
      nodeName: nodeNameValue
      targetRef:
        apiVersion: apiVersionValue
        fieldPath: fieldPathValue
        kind: kindValue
        name: nameValue
        namespace: namespaceValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/HEAD/discovery.k8s.io.v1beta1.EndpointSlice.json

            "fieldPath": "fieldPathValue"
          },
          "topology": {
            "topologyKey": "topologyValue"
          },
          "nodeName": "nodeNameValue",
          "hints": {
            "forZones": [
              {
                "name": "nameValue"
              }
            ]
          }
        }
      ],
      "ports": [
        {
          "name": "nameValue",
          "protocol": "protocolValue",
          "port": 3,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 06 21:25:20 UTC 2022
    - 2K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/discovery/v1beta1/generated.proto

    }
    
    // EndpointHints provides hints describing how an endpoint should be consumed.
    message EndpointHints {
      // forZones indicates the zone(s) this endpoint should be consumed by to
      // enable topology aware routing. May contain a maximum of 8 entries.
      // +listType=atomic
      repeated ForZone forZones = 1;
    }
    
    // EndpointPort represents a Port used by an EndpointSlice
    message EndpointPort {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8K bytes
    - Viewed (0)
  10. pkg/apis/discovery/types.go

    type EndpointHints struct {
    	// forZones indicates the zone(s) this endpoint should be consumed by to
    	// enable topology aware routing. May contain a maximum of 8 entries.
    	ForZones []ForZone
    }
    
    // ForZone provides information about which zones should consume this endpoint.
    type ForZone struct {
    	// name represents the name of the zone.
    	Name string
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 16 21:38:06 UTC 2023
    - 7.5K bytes
    - Viewed (0)
Back to top