io.k8s.api.storage.v1.VolumeNodeResources Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bl-k8s131 Show documentation
Show all versions of bl-k8s131 Show documentation
Programmatic resource management for Kubernetes
The newest version!
package io.k8s.api.storage.v1;
import java.lang.Long;
/**
* VolumeNodeResources is a set of resource limits for scheduling of volumes.
*/
public class VolumeNodeResources {
public Long count;
/**
* count indicates the maximum number of unique volumes managed by the CSI driver that can be used on a node. A volume that is both attached and mounted on a node is considered to be used once, not twice. The same rule applies for a unique volume that is shared among multiple pods on the same node. If this field is not specified, then the supported number of volumes on this node is unbounded.
*/
public VolumeNodeResources count(Long count) {
this.count = count;
return this;
}
public static VolumeNodeResources volumeNodeResources() {
return new VolumeNodeResources();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy