20 lines
1.3 KiB
YAML
20 lines
1.3 KiB
YAML
version: '2'
|
|
catalog:
|
|
name: "ZeroTier-Containerized" # Name of the versioned template of the Catalog Entry
|
|
version: "latest" # Version of the versioned template of the Catalog Entry
|
|
description: ZeroTier-Containerized instance for virtual networking # Description of the versioned template of the Catalog Entry
|
|
questions: #Used to request user input for configuration options
|
|
- variable: "NAME"
|
|
label: "Container Name"
|
|
description: |
|
|
(Optional) Enter a name for the container, otherwise one will be randomly generated.
|
|
default: "ZeroTier"
|
|
required: false
|
|
type: string
|
|
- variable: "CONFIG_STORAGE" # A single word that is used to pair the question and answer.
|
|
label: "Persistent Config Path" # The "question" to be answered.
|
|
description: | # The description of the question to show the user how to answer the question.
|
|
The path to where ZeroTier should hold it's persistent files. Preferrably a local-only location.
|
|
default: "/var/lib/Storage-Local/zerotier-one" # (Optional) A default value that will be pre-populated into the UI
|
|
required: false # (Optional) Whether or not an answer is required. By default, it's considered `false`.
|
|
type: string # How the questions are formatted and types of response expected |