Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for allocClusterIPs (0.1 sec)

  1. pkg/registry/core/service/storage/alloc.go

    func (al *Allocators) txnAllocClusterIPs(service *api.Service, dryRun bool) (transaction, error) {
    	// clusterIPs that were allocated may need to be released in case of
    	// failure at a higher level.
    	allocated, err := al.allocClusterIPs(service, dryRun)
    	if err != nil {
    		return nil, err
    	}
    
    	txn := callbackTransaction{
    		revert: func() {
    			if dryRun {
    				return
    			}
    			actuallyReleased, err := al.releaseIPs(allocated)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:05 UTC 2023
    - 37.3K bytes
    - Viewed (0)
Back to top