Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 39 of 39 for forZones (0.32 sec)

  1. staging/src/k8s.io/api/discovery/v1beta1/types_swagger_doc_generated.go

    	return map_EndpointConditions
    }
    
    var map_EndpointHints = map[string]string{
    	"":         "EndpointHints provides hints describing how an endpoint should be consumed.",
    	"forZones": "forZones indicates the zone(s) this endpoint should be consumed by to enable topology aware routing. May contain a maximum of 8 entries.",
    }
    
    func (EndpointHints) SwaggerDoc() map[string]string {
    	return map_EndpointHints
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:26:19 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/discovery/v1/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.
      // +listType=atomic
      repeated ForZone forZones = 1;
    }
    
    // EndpointPort represents a Port used by an EndpointSlice
    // +structType=atomic
    message EndpointPort {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  3. pkg/proxy/endpointslicecache.go

    		var zoneHints sets.Set[string]
    		if utilfeature.DefaultFeatureGate.Enabled(features.TopologyAwareHints) {
    			if endpoint.Hints != nil && len(endpoint.Hints.ForZones) > 0 {
    				zoneHints = sets.New[string]()
    				for _, zone := range endpoint.Hints.ForZones {
    					zoneHints.Insert(zone.Name)
    				}
    			}
    		}
    
    		endpointInfo := newBaseEndpointInfo(endpoint.Addresses[0], portNum, isLocal,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:07:21 UTC 2024
    - 11.7K bytes
    - Viewed (1)
  4. api/openapi-spec/v3/apis__discovery.k8s.io__v1_openapi.json

            "properties": {
              "forZones": {
                "description": "forZones indicates the zone(s) this endpoint should be consumed by to enable topology aware routing.",
                "items": {
                  "allOf": [
                    {
                      "$ref": "#/components/schemas/io.k8s.api.discovery.v1.ForZone"
                    }
                  ],
                  "default": {}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 146.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/cfg/cfg.go

    	return [...]string{
    		KindInvalid:         "Invalid",
    		KindUnreachable:     "Unreachable",
    		KindBody:            "Body",
    		KindForBody:         "ForBody",
    		KindForDone:         "ForDone",
    		KindForLoop:         "ForLoop",
    		KindForPost:         "ForPost",
    		KindIfDone:          "IfDone",
    		KindIfElse:          "IfElse",
    		KindIfThen:          "IfThen",
    		KindLabel:           "Label",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  6. pkg/generated/openapi/zz_generated.openapi.go

    				Type:        []string{"object"},
    				Properties: map[string]spec.Schema{
    					"forZones": {
    						VendorExtensible: spec.VendorExtensible{
    							Extensions: spec.Extensions{
    								"x-kubernetes-list-type": "atomic",
    							},
    						},
    						SchemaProps: spec.SchemaProps{
    							Description: "forZones indicates the zone(s) this endpoint should be consumed by to enable topology aware routing.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  7. staging/src/k8s.io/cli-runtime/artifacts/openapi/swagger-with-shared-parameters.json

          "properties": {
            "forZones": {
              "description": "forZones indicates the zone(s) this endpoint should be consumed by to enable topology aware routing.",
              "items": {
                "$ref": "#/definitions/io.k8s.api.discovery.v1.ForZone"
              },
              "type": "array",
              "x-kubernetes-list-type": "atomic"
            }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 2.3M bytes
    - Viewed (0)
  8. staging/src/k8s.io/cli-runtime/artifacts/openapi/swagger.json

          "properties": {
            "forZones": {
              "description": "forZones indicates the zone(s) this endpoint should be consumed by to enable topology aware routing.",
              "items": {
                "$ref": "#/definitions/io.k8s.api.discovery.v1.ForZone"
              },
              "type": "array",
              "x-kubernetes-list-type": "atomic"
            }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 4.5M bytes
    - Viewed (0)
  9. api/openapi-spec/swagger.json

          "properties": {
            "forZones": {
              "description": "forZones indicates the zone(s) this endpoint should be consumed by to enable topology aware routing.",
              "items": {
                "$ref": "#/definitions/io.k8s.api.discovery.v1.ForZone"
              },
              "type": "array",
              "x-kubernetes-list-type": "atomic"
            }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
Back to top