com.pulumi.kubernetes.storage.v1beta1.inputs.VolumeNodeResourcesArgs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kubernetes Show documentation
Show all versions of kubernetes Show documentation
A Pulumi package for creating and managing Kubernetes resources.
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.pulumi.kubernetes.storage.v1beta1.inputs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import java.lang.Integer;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
/**
* VolumeNodeResources is a set of resource limits for scheduling of volumes.
*
*/
public final class VolumeNodeResourcesArgs extends com.pulumi.resources.ResourceArgs {
public static final VolumeNodeResourcesArgs Empty = new VolumeNodeResourcesArgs();
/**
* 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 nil, then the supported number of volumes on this node is unbounded.
*
*/
@Import(name="count")
private @Nullable Output count;
/**
* @return 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 nil, then the supported number of volumes on this node is unbounded.
*
*/
public Optional
© 2015 - 2024 Weber Informatics LLC | Privacy Policy