nomad
HashiCorp Nomadを活用し、コンテナや仮想マシン、単独アプリケーションのデプロイ、ジョブ定義、デプロイ管理、スケーリング設定、バッチ処理やサービスワークロードの実行をクラスタ全体で効率的に行うSkill。
📜 元の英語説明(参考)
HashiCorp Nomad workload orchestrator for deploying containers, VMs, and standalone applications. Use when the user needs to write job specifications, manage deployments, configure scaling, or run batch and service workloads across a cluster.
🇯🇵 日本人クリエイター向け解説
HashiCorp Nomadを活用し、コンテナや仮想マシン、単独アプリケーションのデプロイ、ジョブ定義、デプロイ管理、スケーリング設定、バッチ処理やサービスワークロードの実行をクラスタ全体で効率的に行うSkill。
※ jpskill.com 編集部が日本のビジネス現場向けに補足した解説です。Skill本体の挙動とは独立した参考情報です。
下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o nomad.zip https://jpskill.com/download/15177.zip && unzip -o nomad.zip && rm nomad.zip
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/15177.zip -OutFile "$d\nomad.zip"; Expand-Archive "$d\nomad.zip" -DestinationPath $d -Force; ri "$d\nomad.zip"
完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。
💾 手動でダウンロードしたい(コマンドが難しい人向け)
- 1. 下の青いボタンを押して
nomad.zipをダウンロード - 2. ZIPファイルをダブルクリックで解凍 →
nomadフォルダができる - 3. そのフォルダを
C:\Users\あなたの名前\.claude\skills\(Win)または~/.claude/skills/(Mac)へ移動 - 4. Claude Code を再起動
⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。
🎯 このSkillでできること
下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。
📦 インストール方法 (3ステップ)
- 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
- 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
- 3. 展開してできたフォルダを、ホームフォルダの
.claude/skills/に置く- · macOS / Linux:
~/.claude/skills/ - · Windows:
%USERPROFILE%\.claude\skills\
- · macOS / Linux:
Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。
詳しい使い方ガイドを見る →- 最終更新
- 2026-05-18
- 取得日時
- 2026-05-18
- 同梱ファイル
- 1
📖 Skill本文(日本語訳)
※ 原文(英語/中国語)を Gemini で日本語化したものです。Claude 自身は原文を読みます。誤訳がある場合は原文をご確認ください。
Nomad
Nomad は、コンテナ、レガシーアプリ、およびバッチジョブをデプロイする柔軟なワークロードオーケストレーターです。
インストール
# Nomad のインストール
wget -O- https://apt.releases.hashicorp.com/gpg | sudo gpg --dearmor -o /usr/share/keyrings/hashicorp-archive-keyring.gpg
echo "deb [signed-by=/usr/share/keyrings/hashicorp-archive-keyring.gpg] https://apt.releases.hashicorp.com $(lsb_release -cs) main" | sudo tee /etc/apt/sources.list.d/hashicorp.list
sudo apt update && sudo apt install nomad
# 開発エージェントの起動
nomad agent -dev
# ステータスの確認
nomad status
nomad node status
サーバー構成
# nomad-server.hcl — 本番サーバー構成
datacenter = "dc1"
data_dir = "/opt/nomad/data"
server {
enabled = true
bootstrap_expect = 3
server_join {
retry_join = ["10.0.1.10", "10.0.1.11", "10.0.1.12"]
}
}
tls {
http = true
rpc = true
ca_file = "/opt/nomad/tls/ca.pem"
cert_file = "/opt/nomad/tls/server.pem"
key_file = "/opt/nomad/tls/server-key.pem"
}
consul {
address = "127.0.0.1:8500"
}
vault {
enabled = true
address = "https://vault.example.com:8200"
}
telemetry {
prometheus_metrics = true
}
サービスジョブ
# jobs/web.nomad.hcl — Web アプリケーションサービスジョブ
job "web" {
datacenters = ["dc1"]
type = "service"
update {
max_parallel = 1
min_healthy_time = "30s"
healthy_deadline = "5m"
auto_revert = true
canary = 1
}
group "web" {
count = 3
network {
port "http" { to = 8080 }
}
service {
name = "web"
port = "http"
provider = "consul"
tags = ["urlprefix-/"]
check {
type = "http"
path = "/health"
interval = "10s"
timeout = "3s"
}
}
task "app" {
driver = "docker"
config {
image = "myregistry.com/web:${var.version}"
ports = ["http"]
}
env {
PORT = "${NOMAD_PORT_http}"
DB_HOST = "db.example.com"
ENVIRONMENT = "production"
}
template {
data = <<-EOF
{{ with secret "secret/data/myapp/config" }}
DB_PASSWORD={{ .Data.data.db_pass }}
API_KEY={{ .Data.data.api_key }}
{{ end }}
EOF
destination = "secrets/env.txt"
env = true
}
resources {
cpu = 500
memory = 256
}
scaling {
min = 2
max = 10
enabled = true
policy {
evaluation_interval = "30s"
cooldown = "2m"
check "cpu_usage" {
source = "prometheus"
query = "avg(nomad_client_allocs_cpu_total_percent{task='app'})"
strategy "target-value" {
target = 70
}
}
}
}
}
}
}
バッチジョブ
# jobs/backup.nomad.hcl — 定期的なデータベースバックアップジョブ
job "db-backup" {
datacenters = ["dc1"]
type = "batch"
periodic {
crons = ["0 2 * * *"]
prohibit_overlap = true
time_zone = "UTC"
}
group "backup" {
task "dump" {
driver = "docker"
config {
image = "postgres:15"
command = "/bin/sh"
args = ["-c", "pg_dump -h $DB_HOST -U $DB_USER $DB_NAME | gzip > /alloc/data/backup.sql.gz"]
}
template {
data = <<-EOF
{{ with secret "database/creds/backup" }}
DB_USER={{ .Data.username }}
DB_PASSWORD={{ .Data.password }}
{{ end }}
DB_HOST=db.example.com
DB_NAME=production
EOF
destination = "secrets/env"
env = true
}
resources {
cpu = 1000
memory = 512
}
}
}
}
システムジョブ
# jobs/monitoring.nomad.hcl — すべてのクライアント上のノードエクスポーター
job "node-exporter" {
datacenters = ["dc1"]
type = "system"
group "exporter" {
network {
port "metrics" { static = 9100 }
}
task "node-exporter" {
driver = "docker"
config {
image = "prom/node-exporter:latest"
ports = ["metrics"]
network_mode = "host"
pid_mode = "host"
volumes = ["/:/host:ro,rslave"]
args = ["--path.rootfs=/host"]
}
resources {
cpu = 100
memory = 64
}
}
}
}
一般的なコマンド
# ジョブのライフサイクル
nomad job run web.nomad.hcl
nomad job plan web.nomad.hcl
nomad job stop web
nomad job status web
nomad job history web
# デプロイメント管理
nomad deployment list
nomad deployment status <deployment-id>
nomad deployment promote <deployment-id>
nomad deployment fail <deployment-id>
# アロケーションの検査
nomad alloc status <alloc-id>
nomad alloc logs <alloc-id>
nomad alloc exec <alloc-id> /bin/sh
# スケーリング
nomad job scale web web 5
# クラスター管理
nomad server members
nomad node status
nomad node drain -enable <node-id> 📜 原文 SKILL.md(Claudeが読む英語/中国語)を展開
Nomad
Nomad is a flexible workload orchestrator that deploys containers, legacy apps, and batch jobs.
Installation
# Install Nomad
wget -O- https://apt.releases.hashicorp.com/gpg | sudo gpg --dearmor -o /usr/share/keyrings/hashicorp-archive-keyring.gpg
echo "deb [signed-by=/usr/share/keyrings/hashicorp-archive-keyring.gpg] https://apt.releases.hashicorp.com $(lsb_release -cs) main" | sudo tee /etc/apt/sources.list.d/hashicorp.list
sudo apt update && sudo apt install nomad
# Start dev agent
nomad agent -dev
# Check status
nomad status
nomad node status
Server Configuration
# nomad-server.hcl — Production server configuration
datacenter = "dc1"
data_dir = "/opt/nomad/data"
server {
enabled = true
bootstrap_expect = 3
server_join {
retry_join = ["10.0.1.10", "10.0.1.11", "10.0.1.12"]
}
}
tls {
http = true
rpc = true
ca_file = "/opt/nomad/tls/ca.pem"
cert_file = "/opt/nomad/tls/server.pem"
key_file = "/opt/nomad/tls/server-key.pem"
}
consul {
address = "127.0.0.1:8500"
}
vault {
enabled = true
address = "https://vault.example.com:8200"
}
telemetry {
prometheus_metrics = true
}
Service Job
# jobs/web.nomad.hcl — Web application service job
job "web" {
datacenters = ["dc1"]
type = "service"
update {
max_parallel = 1
min_healthy_time = "30s"
healthy_deadline = "5m"
auto_revert = true
canary = 1
}
group "web" {
count = 3
network {
port "http" { to = 8080 }
}
service {
name = "web"
port = "http"
provider = "consul"
tags = ["urlprefix-/"]
check {
type = "http"
path = "/health"
interval = "10s"
timeout = "3s"
}
}
task "app" {
driver = "docker"
config {
image = "myregistry.com/web:${var.version}"
ports = ["http"]
}
env {
PORT = "${NOMAD_PORT_http}"
DB_HOST = "db.example.com"
ENVIRONMENT = "production"
}
template {
data = <<-EOF
{{ with secret "secret/data/myapp/config" }}
DB_PASSWORD={{ .Data.data.db_pass }}
API_KEY={{ .Data.data.api_key }}
{{ end }}
EOF
destination = "secrets/env.txt"
env = true
}
resources {
cpu = 500
memory = 256
}
scaling {
min = 2
max = 10
enabled = true
policy {
evaluation_interval = "30s"
cooldown = "2m"
check "cpu_usage" {
source = "prometheus"
query = "avg(nomad_client_allocs_cpu_total_percent{task='app'})"
strategy "target-value" {
target = 70
}
}
}
}
}
}
}
Batch Job
# jobs/backup.nomad.hcl — Periodic database backup job
job "db-backup" {
datacenters = ["dc1"]
type = "batch"
periodic {
crons = ["0 2 * * *"]
prohibit_overlap = true
time_zone = "UTC"
}
group "backup" {
task "dump" {
driver = "docker"
config {
image = "postgres:15"
command = "/bin/sh"
args = ["-c", "pg_dump -h $DB_HOST -U $DB_USER $DB_NAME | gzip > /alloc/data/backup.sql.gz"]
}
template {
data = <<-EOF
{{ with secret "database/creds/backup" }}
DB_USER={{ .Data.username }}
DB_PASSWORD={{ .Data.password }}
{{ end }}
DB_HOST=db.example.com
DB_NAME=production
EOF
destination = "secrets/env"
env = true
}
resources {
cpu = 1000
memory = 512
}
}
}
}
System Job
# jobs/monitoring.nomad.hcl — Node exporter on all clients
job "node-exporter" {
datacenters = ["dc1"]
type = "system"
group "exporter" {
network {
port "metrics" { static = 9100 }
}
task "node-exporter" {
driver = "docker"
config {
image = "prom/node-exporter:latest"
ports = ["metrics"]
network_mode = "host"
pid_mode = "host"
volumes = ["/:/host:ro,rslave"]
args = ["--path.rootfs=/host"]
}
resources {
cpu = 100
memory = 64
}
}
}
}
Common Commands
# Job lifecycle
nomad job run web.nomad.hcl
nomad job plan web.nomad.hcl
nomad job stop web
nomad job status web
nomad job history web
# Deployment management
nomad deployment list
nomad deployment status <deployment-id>
nomad deployment promote <deployment-id>
nomad deployment fail <deployment-id>
# Allocation inspection
nomad alloc status <alloc-id>
nomad alloc logs <alloc-id>
nomad alloc exec <alloc-id> /bin/sh
# Scaling
nomad job scale web web 5
# Cluster management
nomad server members
nomad node status
nomad node drain -enable <node-id>