Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for subkeys (0.38 sec)

  1. prow/config/calico.yaml

                  classes:
                    description: Classes declares the types of information to monitor
                      for this calico/node, and allows for selective status reporting
                      about certain subsets of information.
                    items:
                      type: string
                    type: array
                  node:
                    description: The node name identifies the Calico node instance for
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  2. pkg/proxy/iptables/proxier_test.go

    		expectedLocalEndpoints: map[types.NamespacedName]int{
    			makeNSN("ns1", "ep1"): 1,
    		},
    	}, {
    		// Case[2]: no change, multiple subsets
    		name:              "no change, multiple subsets",
    		previousEndpoints: multipleSubsets,
    		currentEndpoints:  multipleSubsets,
    		oldEndpoints: map[proxy.ServicePortName][]endpointExpectation{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.21.md

    - AWS cloud provider supports auto-discovering subnets without any `kubernetes.io/cluster/<clusterName>` tags. It also supports additional service annotation `service.beta.kubernetes.io/aws-load-balancer-subnets` to manually configure the subnets. ([#97431](https://github.com/kubernetes/kubernetes/pull/97431), [@kishorj](https://github.com/kishorj))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 14 07:03:14 UTC 2022
    - 367.3K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/core/v1/generated.proto

      // The set of all endpoints is the union of all subsets. Addresses are placed into
      // subsets according to the IPs they share. A single address with multiple ports,
      // some of which are ready and some of which are not (because they come from
      // different containers) will result in the address being displayed in different
      // subsets for the different ports. No address will appear in both Addresses and
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"subsets":  "The set of all endpoints is the union of all subsets. Addresses are placed into subsets according to the IPs they share. A single address with multiple ports, some of which are ready and some of which are not (because they come from different containers) will result in the address being displayed in different subsets for the different ports. No address will appear in both Addresses and NotReadyAddresses...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/types.go

    	// The set of all endpoints is the union of all subsets. Addresses are placed into
    	// subsets according to the IPs they share. A single address with multiple ports,
    	// some of which are ready and some of which are not (because they come from
    	// different containers) will result in the address being displayed in different
    	// subsets for the different ports. No address will appear in both Addresses and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  7. pkg/apis/core/validation/validation.go

    	allErrs = append(allErrs, ValidateEndpoints(newEndpoints)...)
    	return allErrs
    }
    
    func validateEndpointSubsets(subsets []core.EndpointSubset, fldPath *field.Path) field.ErrorList {
    	allErrs := field.ErrorList{}
    	for i := range subsets {
    		ss := &subsets[i]
    		idxPath := fldPath.Index(i)
    
    		// EndpointSubsets must include endpoint address. For headless service, we allow its endpoints not to have ports.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/generated.proto

      // The set of all endpoints is the union of all subsets. Addresses are placed into
      // subsets according to the IPs they share. A single address with multiple ports,
      // some of which are ready and some of which are not (because they come from
      // different containers) will result in the address being displayed in different
      // subsets for the different ports. No address will appear in both Addresses and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  9. pkg/apis/core/v1/zz_generated.conversion.go

    }
    
    func autoConvert_v1_Endpoints_To_core_Endpoints(in *v1.Endpoints, out *core.Endpoints, s conversion.Scope) error {
    	out.ObjectMeta = in.ObjectMeta
    	out.Subsets = *(*[]core.EndpointSubset)(unsafe.Pointer(&in.Subsets))
    	return nil
    }
    
    // Convert_v1_Endpoints_To_core_Endpoints is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  10. pkg/apis/core/types.go

    //	   },
    //	]
    type Endpoints struct {
    	metav1.TypeMeta
    	// +optional
    	metav1.ObjectMeta
    
    	// The set of all endpoints is the union of all subsets.
    	Subsets []EndpointSubset
    }
    
    // EndpointSubset is a group of addresses with a common set of ports.  The
    // expanded set of endpoints is the Cartesian product of Addresses x Ports.
    // For example, given:
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
Back to top