Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 136 for zone2 (0.18 sec)

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

    	// be used to determine endpoints local to a Node.
    	// +optional
    	NodeName *string `json:"nodeName,omitempty" protobuf:"bytes,6,opt,name=nodeName"`
    
    	// zone is the name of the Zone this endpoint exists in.
    	// +optional
    	Zone *string `json:"zone,omitempty" protobuf:"bytes,7,opt,name=zone"`
    
    	// hints contains information associated with how an endpoint should be
    	// consumed.
    	// +optional
    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/discovery/v1/generated.proto

      // in the zone and nodeName fields instead.
      // +optional
      map<string, string> deprecatedTopology = 5;
    
      // nodeName represents the name of the Node hosting this endpoint. This can
      // be used to determine endpoints local to a Node.
      // +optional
      optional string nodeName = 6;
    
      // zone is the name of the Zone this endpoint exists in.
      // +optional
      optional string zone = 7;
    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/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)
  4. staging/src/k8s.io/api/discovery/v1beta1/generated.proto

      // items is the list of endpoint slices
      repeated EndpointSlice items = 2;
    }
    
    // ForZone provides information about which zones should consume this endpoint.
    message ForZone {
      // name represents the name of the zone.
      optional string name = 1;
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/discovery/v1/types_swagger_doc_generated.go

    	"nodeName":           "nodeName represents the name of the Node hosting this endpoint. This can be used to determine endpoints local to a Node.",
    	"zone":               "zone is the name of the Zone this endpoint exists in.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 18 15:36:48 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/discovery/v1beta1/types_swagger_doc_generated.go

    func (EndpointSliceList) SwaggerDoc() map[string]string {
    	return map_EndpointSliceList
    }
    
    var map_ForZone = map[string]string{
    	"":     "ForZone provides information about which zones should consume this endpoint.",
    	"name": "name represents the name of the zone.",
    }
    
    func (ForZone) SwaggerDoc() map[string]string {
    	return map_ForZone
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:26:19 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/discovery/v1beta1/generated.proto

      // items is the list of endpoint slices
      repeated EndpointSlice items = 2;
    }
    
    // ForZone provides information about which zones should consume this endpoint.
    message ForZone {
      // name represents the name of the zone.
      optional string name = 1;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/discovery/v1beta1/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.
    	// +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 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:26:19 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  9. cluster/gce/list-resources.sh

    gcloud-list compute instance-templates "name ~ '${INSTANCE_PREFIX}.*'"
    gcloud-list compute instance-groups "${ZONE:+"zone:(${ZONE}) AND "}name ~ '${INSTANCE_PREFIX}.*'"
    gcloud-list compute instances "${ZONE:+"zone:(${ZONE}) AND "}name ~ '${INSTANCE_PREFIX}.*'"
    
    # List disk resources, filtering by instance prefix if provided.
    gcloud-list compute disks "${ZONE:+"zone:(${ZONE}) AND "}name ~ '${INSTANCE_PREFIX}.*'"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 27 15:44:25 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  10. pkg/apis/discovery/v1beta1/conversion.go

    		out.DeprecatedTopology = make(map[string]string, len(in.Topology))
    		for k, v := range in.Topology {
    			out.DeprecatedTopology[k] = v
    		}
    
    		// Move zone from the topology map into a field
    		if zone, ok := in.Topology[corev1.LabelTopologyZone]; ok {
    			out.Zone = &zone
    			delete(out.DeprecatedTopology, corev1.LabelTopologyZone)
    		}
    
    		// Remove hostname from the topology map ONLY IF it is the same value as
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 05 20:02:41 UTC 2021
    - 3K bytes
    - Viewed (0)
Back to top