Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for AddResourceInfo (0.41 sec)

  1. staging/src/k8s.io/apiserver/pkg/storageversion/manager.go

    	ServedVersions []string
    }
    
    // Manager records the resources whose StorageVersions need updates, and provides a method to update those StorageVersions.
    type Manager interface {
    	// AddResourceInfo records resources whose StorageVersions need updates
    	AddResourceInfo(resources ...*ResourceInfo)
    	// UpdateStorageVersions tries to update the StorageVersions of the recorded resources
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 17:47:19 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/genericapiserver.go

    		// therefore it is safe to register ResourceInfos here. The handler will block
    		// write requests until the storage versions of the targeting resources are updated.
    		s.StorageVersionManager.AddResourceInfo(resourceInfos...)
    	}
    
    	return nil
    }
    
    // InstallLegacyAPIGroup exposes the given legacy api group in the API.
    // The <apiGroupInfo> passed into this function shouldn't be used elsewhere as the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 42.9K bytes
    - Viewed (0)
Back to top