mirror of
https://github.com/kemko/nomad.git
synced 2026-01-04 17:35:43 +03:00
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
29 lines
523 B
HCL
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"
|
|
}
|