Skip to main content
BeeGFS on NetApp with E-Series Storage

Map BeeGFS services to file nodes

Contributors iamjoemccormick

Specify what file nodes can run each BeeGFS service using the inventory.yml file.

Overview

This section walks through how to create the inventory.yml file. This includes listing all block nodes and specifying what file nodes can run each BeeGFS service.

Steps

Create the file inventory.yml and populate it as follows:

  1. From the top of the file, create the standard Ansible inventory structure:

    # BeeGFS HA (High_Availability) cluster inventory.
    all:
      children:
  2. Create a group containing all block nodes participating in this HA cluster:

        # Ansible group representing all block nodes:
        eseries_storage_systems:
          hosts:
            <BLOCK NODE HOSTNAME>:
            <BLOCK NODE HOSTNAME>:
            # Additional block nodes as needed.
  3. Create a group that will contain all BeeGFS services in the cluster, and the file nodes that will run them:

        # Ansible group representing all file nodes:
        ha_cluster:
          children:
  4. For each BeeGFS service in the cluster, define the preferred and any secondary file node(s) that should run that service:

            <SERVICE>: # Ex. "mgmt", "meta_01", or "stor_01".
              hosts:
                <FILE NODE HOSTNAME>:
                <FILE NODE HOSTNAME>:
                # Additional file nodes as needed.

Click here for an example of a complete inventory file.