Giter Site home page Giter Site logo

inventory file about ansible-zookeeper HOT 2 OPEN

sleighzy avatar sleighzy commented on May 30, 2024
inventory file

from ansible-zookeeper.

Comments (2)

sleighzy avatar sleighzy commented on May 30, 2024

Hi. Glad to hear it's helping you.

Are you able to provide me with what your inventory file looks like? You may be experiencing a similar problem to #26 whereby if the zookeeper_id isn't provided for each node then it won't configure the cluster correctly.

One example of an inventory file, in ini format, is below:

zoo1 ansible_host=192.168.1.101
zoo2 ansible_host=192.168.1.102
zoo3 ansible_host=192.168.1.103

[zookeeper-nodes]
zoo1 zookeeper_id=1
zoo2 zookeeper_id=2
zoo3 zookeeper_id=3

I have seen other examples, e.g. https://github.com/AnsibleShipyard/ansible-zookeeper/blob/master/templates/myid.j2 and https://github.com/AnsibleShipyard/ansible-zookeeper/blob/master/templates/zoo.cfg.j2, where people have used the loop index of the hosts to specify the zookeeper id (there are more simple examples out there as well). Those examples remove the need for specifying zookeeper_id in the inventory, but this could lead to different ids being used and the myid changing on servers if updated if you add or remove hosts...this may be an edge-case and/or not applicable to you.

Presumably you have a slightly simplistic case and aren't needing dynamic inventory based on AWS EC2 tags for example?

Let me know what your inventory file, /var/lib/zookeeper/myid, and /etc/zookeeper/zoo.cfg files look like and I'll see if I can offer any further advice.

from ansible-zookeeper.

eRadical avatar eRadical commented on May 30, 2024

I've had the same issue as @cloudman1978
Inventory contains something like:

---
all:
  children:
    zk_cluster_devel:
      hosts:
        "zk-cluster-[01:03].example.com":
          provider: aws
          ......................

and I managed to fix it via a pre_tasks w/ something like:

- name: Install ZK machines for devel
  become: true
  hosts: zk_cluster_devel
  pre_tasks:
    - name: Set ZK id
      set_fact:
        zookeeper_id: "{{ inventory_hostname | replace('.example.com', '') | replace('zk-cluster-0', '') }}"
  roles:
    - sleighzy.zookeeper

from ansible-zookeeper.

Related Issues (15)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.