mirror of
https://github.com/kemko/nomad.git
synced 2026-01-02 08:25:43 +03:00
This directory and its subdirectories (packages) contain files licensed with the MPLv2 `LICENSE` file in this directory and are intentionally licensed separately from the BSL `LICENSE` file at the root of this repository. Co-authored-by: hashicorp-copywrite[bot] <110428419+hashicorp-copywrite[bot]@users.noreply.github.com>
29 lines
477 B
HCL
29 lines
477 B
HCL
# Copyright (c) HashiCorp, Inc.
|
|
# SPDX-License-Identifier: MPL-2.0
|
|
|
|
id = "VOLUME_NAME"
|
|
name = "VOLUME_NAME"
|
|
type = "csi"
|
|
plugin_id = "hostpath-plugin0"
|
|
|
|
capacity_min = "1MB"
|
|
capacity_max = "1GB"
|
|
|
|
capability {
|
|
access_mode = "single-node-reader-only"
|
|
attachment_mode = "file-system"
|
|
}
|
|
|
|
capability {
|
|
access_mode = "single-node-writer"
|
|
attachment_mode = "file-system"
|
|
}
|
|
|
|
secrets {
|
|
somesecret = "xyzzy"
|
|
}
|
|
|
|
mount_options {
|
|
mount_flags = ["ro"]
|
|
}
|