Skip to content

nexcess/ansible-role-influxdb-enterprise

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Role Name

Ansible role for InfluxDB Enterprise

Requirements

None

Role Variables

The 3 varaibles you need to worry about in terms of operation are the flags for which server components you're working on (data vs. meta vs console). You pass this in (typically) as role vars and they are:

influxdb_is_meta: false
influxdb_is_data: false
influxdb_is_console: false

So, use in a playbook may look like this:

- name: Deploy InfluxDB Meta Nodes
  hosts: meta
  roles:
    - { role: ansible-role-influxdb-enterprise, influxdb_is_meta: true }
  post_tasks:
    - include: tasks/meta.yml mode="post"

- name: Deploy InfluxDB Data Nodes
  hosts: data
  roles:
    - { role: ansible-role-influxdb-enterprise, influxdb_is_data: true }
  post_tasks:
    - include: tasks/data.yml mode="post"

- name: Deploy InfluxDB Enterprise Console
  hosts: console
  roles:
    - { role: ansible-role-influxdb-enterprise, influxdb_is_console: true }

Dependencies

None

License

MIT

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Packages

No packages published