Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 34 for allocations (0.31 sec)

  1. prow/config/calico.yaml

                  attributes:
                    description: Attributes is an array of arbitrary metadata associated
                      with allocations in the block. To find attributes for a given allocation,
                      use the value of the allocation's entry in the Allocations array
                      as the index of the element in this array.
                    items:
                      properties:
    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/registry/core/service/storage/storage_test.go

    				// same Port.
    				if prev, found := seen[p.NodePort]; found && prev != p.Port {
    					t.Errorf("found non-unique allocation in Ports[%d].NodePort: %d -> %d", i, p.NodePort, p.Port)
    				}
    				seen[p.NodePort] = p.Port
    			}
    		})
    	}
    }
    
    // Prove that create skips allocations for Headless services.
    func TestCreateSkipsAllocationsForHeadless(t *testing.T) {
    	testCases := []struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssagen/ssa.go

    // panic and show the return values as they exist at the time of
    // panic.  For precise stacks, the garbage collector assumes results
    // are always live, so we need to zero them before any allocations,
    // even allocations to move params/results to the heap.
    func (s *state) zeroResults() {
    	for _, f := range s.curfn.Type().Results() {
    		n := f.Nname.(*ir.Name)
    		if !n.OnStack() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.16.md

    - Creates an annotation `service.beta.kubernetes.io/aws-load-balancer-eip-allocations` to assign AWS EIP to the newly created Network Load Balancer. Number of allocations and subnets must match. ([#69263](https://github.com/kubernetes/kubernetes/pull/69263), [@brooksgarrett](https://github.com/brooksgarrett))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 11 10:00:57 UTC 2021
    - 345.2K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.23.md

    - The `apiserver` exposes 4 new metrics that allow to track the status of the Service CIDRs allocations:
          - current number of available IPs per Service CIDR
          - current number of used IPs per Service CIDR
          - total number of allocation per Service CIDR
          - total number of allocation errors per ServiceCIDR ([#104119](https://github.com/kubernetes/kubernetes/pull/104119), [@aojea](https://github.com/aojea))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 28 21:06:52 UTC 2023
    - 424.5K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.29.md

    - `k8s.io/dynamic-resource-allocation/controller:` `UnsuitableNodes` can now handle a mix of allocated and unallocated claims correctly. ([#120338](https://github.com/kubernetes/kubernetes/pull/120338), [@pohly](https://github.com/pohly))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  7. pkg/apis/core/types.go

    	// a start and end unless there is an implicit end.
    	Range string
    	// A byte array representing the serialized state of a range allocation. Additional clarifiers on
    	// the type or format of data should be represented with annotations. For IP allocations, this is
    	// represented as a bit array starting at the base IP of the CIDR in Range, with each bit representing
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.27.md

    - Introduced a breaking change to the `resource.k8s.io` API in its `AllocationResult` struct. This change allows a kubelet plugin for the `DynamicResourceAllocation` feature to service allocations from multiple resource driver controllers. ([#116332](https://github.com/kubernetes/kubernetes/pull/116332), [@klueska](https://github.com/klueska))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.24.md

        - [Kubelet Credential Provider Graduates to Beta](#kubelet-credential-provider-graduates-to-beta)
        - [Contextual Logging in Alpha](#contextual-logging-in-alpha)
        - [Avoiding Collisions in IP allocation to Services](#avoiding-collisions-in-ip-allocation-to-services)
      - [Urgent Upgrade Notes](#urgent-upgrade-notes)
        - [(No, really, you MUST read this before you upgrade)](#no-really-you-must-read-this-before-you-upgrade)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 00:02:43 UTC 2023
    - 473.4K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.9.md

    * IPAM controller unifies handling of node pod CIDR range allocation. ([#51374](https://github.com/kubernetes/kubernetes/pull/51374), [@bowei](https://github.com/bowei))
        * It is intended to supersede the logic that is currently in range_allocator
        * and cloud_cidr_allocator. (ALPHA FEATURE)
        * Note: for this change, the other allocators still exist and are the default.
        * It supports two modes:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 16 10:46:27 UTC 2021
    - 313.7K bytes
    - Viewed (0)
Back to top