mirror of
https://github.com/kemko/nomad.git
synced 2026-01-01 16:05:42 +03:00
15 lines
326 B
Bash
Executable File
15 lines
326 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Copyright (c) HashiCorp, Inc.
|
|
# SPDX-License-Identifier: BUSL-1.1
|
|
|
|
set -xeuo pipefail
|
|
|
|
nomad volume create external-plugin.volume.hcl
|
|
nomad volume create internal-plugin.volume.hcl
|
|
|
|
nomad job run job.nomad.hcl
|
|
|
|
nomad volume status -type=host -verbose
|
|
nomad operator api /v1/nodes | jq '.[].HostVolumes'
|
|
|