Show / Hide Table of Contents

Class VolumeAttachmentSourceArgs

VolumeAttachmentSource represents a volume that should be attached. Right now only PersistenVolumes can be attached via external attacher, in future we may allow also inline volumes in pods. Exactly one member can be set.

Inheritance
System.Object
InputArgs
ResourceArgs
VolumeAttachmentSourceArgs
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Kubernetes.Types.Inputs.Storage.V1Beta1
Assembly: Pulumi.Kubernetes.dll
Syntax
public class VolumeAttachmentSourceArgs : ResourceArgs

Properties

View Source

InlineVolumeSpec

inlineVolumeSpec contains all the information necessary to attach a persistent volume defined by a pod's inline VolumeSource. This field is populated only for the CSIMigration feature. It contains translated fields from a pod's inline VolumeSource to a PersistentVolumeSpec. This field is alpha-level and is only honored by servers that enabled the CSIMigration feature.

Declaration
public Input<PersistentVolumeSpecArgs> InlineVolumeSpec { get; set; }
Property Value
Type Description
Input<PersistentVolumeSpecArgs>
View Source

PersistentVolumeName

Name of the persistent volume to attach.

Declaration
public Input<string> PersistentVolumeName { get; set; }
Property Value
Type Description
Input<System.String>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.