# EphemeralVolumeSourceV1 Properties

- Package: [Aspire.Hosting.Kubernetes](/reference/api/csharp/aspire.hosting.kubernetes.md)
- Type: [EphemeralVolumeSourceV1](/reference/api/csharp/aspire.hosting.kubernetes/ephemeralvolumesourcev1.md)
- Kind: `Properties`
- Members: `1`

Represents an ephemeral volume source in Kubernetes. An ephemeral volume is a temporary storage resource that is created and managed along with a pod's lifecycle. This object allows you to specify a PersistentVolumeClaim template to define the properties of the ephemeral volume.

## VolumeClaimTemplate

- Name: `VolumeClaimTemplate`
- Modifiers: `get; set`
- Returns: [PersistentVolumeClaimTemplateV1](/reference/api/csharp/aspire.hosting.kubernetes/persistentvolumeclaimtemplatev1.md)
- Source: [GitHub](https://github.com/microsoft/aspire/blob/5bd693ae1897dee5e2ce71c2cc08879c1c7eff51/src/Aspire.Hosting.Kubernetes/Resources/EphemeralVolumeSourceV1.cs)

VolumeClaimTemplate defines the specification of a PersistentVolumeClaim template that is created as part of an EphemeralVolumeSource. This property enables the dynamic provision of storage resources by defining the metadata and spec for the generated PersistentVolumeClaim objects.

```csharp
public PersistentVolumeClaimTemplateV1 VolumeClaimTemplate { get; set; }
```
