crowbar/crowbar-ha

View on GitHub
chef/cookbooks/drbd/examples/roles/drbd-master.rb

Summary

Maintainability
A
0 mins
Test Coverage
name "drbd-master"
description "DRBD master role."

override_attributes(
  "drbd" => {
    "rsc" => {
      "shared" => {
        "remote_host" => "ha-node1",
        "disk" => "/dev/sdb1",
        "fs_type" => "xfs",
        "mount" => "/shared",
        "master" => true
      }
    }
  }
  )

run_list(
  "recipe[xfs]",
  "recipe[drbd::default]",
  "recipe[drbd::resource]"
  )