Package version:

Volume definitions for the Container App.

interface Volume {
    mountOptions?: string;
    name?: string;
    secrets?: SecretVolumeItem[];
    storageName?: string;
    storageType?: string;
}

Properties

mountOptions?: string

Mount options used while mounting the Azure file share or NFS Azure file share. Must be a comma-separated string.

name?: string

Volume name.

secrets?: SecretVolumeItem[]

List of secrets to be added in volume. If no secrets are provided, all secrets in collection will be added to volume.

storageName?: string

Name of storage resource. No need to provide for EmptyDir and Secret.

storageType?: string

Storage type for the volume. If not provided, use EmptyDir.