Files
nomad/enos/modules/run_workloads/scripts/nfs-volume.hcl
Tim Gross 694b10d71c upgrade testing: commit missing volume specification (#25305)
In #25285 we converted the CSI workload for upgrade testing to use a self-hosted
NFS. But the volume spec name got changed to `volume.hcl` in the process, which
is in our `.gitignore` file for the repo. We missed this during testing because
the file existed locally, but it fails in nightly runs.

Ref: https://github.com/hashicorp/nomad/pull/25285
Ref: https://github.com/hashicorp/nomad-e2e/actions/runs/13703979647/job/38324786351
2025-03-06 14:36:34 -05:00

29 lines
523 B
HCL

# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: BUSL-1.1
type = "csi"
id = "nfsTestVolume"
name = "nfsTestVolume"
plugin_id = "rocketduck-nfs"
capability {
access_mode = "multi-node-multi-writer"
attachment_mode = "file-system"
}
capability {
access_mode = "multi-node-single-writer"
attachment_mode = "file-system"
}
capability {
access_mode = "multi-node-reader-only"
attachment_mode = "file-system"
}
parameters {
uid = "1000"
gid = "1000"
mode = "770"
}