惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

U
Unit 42
A
About on SuperTechFans
J
Java Code Geeks
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Stack Overflow Blog
Stack Overflow Blog
Recent Announcements
Recent Announcements
GbyAI
GbyAI
F
Fortinet All Blogs
Blog — PlanetScale
Blog — PlanetScale
MongoDB | Blog
MongoDB | Blog
MyScale Blog
MyScale Blog
aimingoo的专栏
aimingoo的专栏
H
Help Net Security
月光博客
月光博客
博客园 - Franky
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Apple Machine Learning Research
Apple Machine Learning Research
The Cloudflare Blog
WordPress大学
WordPress大学
S
SegmentFault 最新的问题
T
Tailwind CSS Blog
Jina AI
Jina AI
有赞技术团队
有赞技术团队
博客园_首页

OneUptime Blog

How to Monitor Azure App Services (PaaS) with OpenTelemetry Grafana Stack vs OneUptime: DIY Observability or Unified Platform? Your AI Workloads Are About to Blow Up Your Observability Bill The Great Observability Consolidation Is Here How to Write Custom Object Classes for Ceph How to Write Custom Ceph Manager Modules How to Write a ceph.conf Configuration File How to Use Rook-Ceph with OpenShift How to Use Rook-Ceph with Longhorn for Comparison How to Configure Volume Snapshot Class for RBD in Rook How to Configure VolumeReplicationClass Scheduling Intervals in Rook How to Set Up Volume Replication with Rook-Ceph How to Create Volume Group Snapshots with Rook CSI How to Visualize Ceph Network Performance in Grafana How to Enable Virtual Host-Style Bucket Access in Rook How to View Runtime Configuration via Admin Socket How to View Quota Settings and Update Stats in Ceph RGW How to View PG Scaling Recommendations with autoscale-status How to View PG Distribution via Admin Socket How to View Performance Metrics in the Ceph Dashboard How to View OSD Performance Counters in Ceph How to View Connection Status via Admin Socket How to View Ceph Cluster Summary Dashboard via CLI How to Version Control Rook-Ceph Configuration How to Version Control Ceph Infrastructure with Terraform How to Verify Kubernetes Node Requirements for Rook-Ceph Deployment How to Verify Health Before and After Rook Upgrades How to Verify Data Integrity with Deep Scrubbing How to Verify Complete Rook-Ceph Cleanup How to Verify Backup Integrity from Ceph Snapshots
How to Use RBD with Nomad
Nawaz Dhandala · 2026-03-31 · via OneUptime Blog

RBD Storage with HashiCorp Nomad

HashiCorp Nomad supports persistent storage through the Container Storage Interface (CSI), enabling it to provision and attach Ceph RBD volumes to job tasks. The Ceph CSI driver used with Kubernetes also works with Nomad, providing the same RBD block storage capabilities in a Nomad cluster.

This guide covers deploying the Ceph RBD CSI plugin for Nomad and using it to provision block volumes.

Step 1 - Deploy the CSI Controller Plugin

Deploy the RBD CSI controller as a Nomad system job:

job "ceph-csi-rbdplugin-provisioner" {
  type = "service"
  group "controller" {
    count = 1
    task "csi-rbdplugin-provisioner" {
      driver = "docker"
      config {
        image = "quay.io/cephcsi/cephcsi:v3.11.0"
        args = [
          "--type=rbd",
          "--controllerserver=true",
          "--endpoint=unix://csi/csi.sock",
          "--nodeid=${node.unique.name}",
          "--instanceid=${NOMAD_ALLOC_ID}",
          "--pidlimit=-1"
        ]
      }
      csi_plugin {
        id        = "ceph-csi-rbd"
        type      = "controller"
        mount_dir = "/csi"
      }
    }
  }
}

Step 2 - Deploy the CSI Node Plugin

Deploy the node plugin as a system job running on all clients:

job "ceph-csi-rbdplugin-node" {
  type = "system"
  group "node" {
    task "csi-rbdplugin" {
      driver = "docker"
      config {
        image      = "quay.io/cephcsi/cephcsi:v3.11.0"
        privileged = true
        args = [
          "--type=rbd",
          "--nodeserver=true",
          "--endpoint=unix://csi/csi.sock",
          "--nodeid=${node.unique.name}"
        ]
      }
      csi_plugin {
        id        = "ceph-csi-rbd"
        type      = "node"
        mount_dir = "/csi"
      }
    }
  }
}

Step 3 - Create a CSI Volume

Define and register a Ceph RBD volume with Nomad:

id        = "ceph-rbd-volume-1"
name      = "ceph-rbd-volume-1"
type      = "csi"
plugin_id = "ceph-csi-rbd"

capacity_min = "10GiB"
capacity_max = "10GiB"

capability {
  access_mode     = "single-node-writer"
  attachment_mode = "file-system"
}

parameters {
  clusterID  = "rook-ceph"
  pool       = "replicapool"
  imageFeatures = "layering"
}

secrets {
  userID  = "admin"
  userKey = "<ceph-client-admin-key>"
}

Register it:

nomad volume register /tmp/ceph-volume.hcl

Step 4 - Use the Volume in a Nomad Job

Attach the CSI volume to a task:

job "stateful-app" {
  group "app" {
    volume "data" {
      type            = "csi"
      source          = "ceph-rbd-volume-1"
      attachment_mode = "file-system"
      access_mode     = "single-node-writer"
    }
    task "app" {
      driver = "docker"
      config {
        image = "postgres:15"
      }
      volume_mount {
        volume      = "data"
        destination = "/var/lib/postgresql/data"
      }
    }
  }
}

Step 5 - Verify Volume Attachment

Check volume status in Nomad:

nomad volume status ceph-rbd-volume-1
ID           = ceph-rbd-volume-1
Name         = ceph-rbd-volume-1
Type         = csi
State        = ready
Plugin ID    = ceph-csi-rbd

Summary

Rook-Ceph RBD storage can be used with HashiCorp Nomad via the Ceph CSI plugin. Deploy the controller and node plugins as Nomad system jobs, register volumes using nomad volume register, and reference them in job specs with the volume stanza. The same Ceph cluster used for Kubernetes can simultaneously serve Nomad workloads, enabling a unified storage layer across schedulers.