You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@fluo.apache.org by kt...@apache.org on 2019/09/09 16:19:22 UTC

[fluo-muchos] branch master updated (aac2459 -> 5861e87)

This is an automated email from the ASF dual-hosted git repository.

kturner pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/fluo-muchos.git.


    from aac2459  Fixes #268: Setup fails when swarmmanager enabled (#278)
     new e02e3d7  Support Accumulo installs on Microsoft Azure
     new 98da5b3  PR Updates based on reviews
     new 5861e87  Merge pull request #270 from srajtiwari/master

The 277 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 README.md                                          | 120 ++++++++--
 ansible/accumulo.yml                               |   2 +-
 lib/tests/__init__.py => ansible/azure.yml         |   5 +
 ansible/common.yml                                 |  12 +-
 ansible/conf/ansible.cfg                           |   2 +
 ansible/docker.yml                                 |   2 +-
 ansible/hadoop.yml                                 |   2 +-
 ansible/mesos.yml                                  |   2 +-
 ansible/roles/azure/tasks/create_vmss.yml          | 243 +++++++++++++++++++++
 .../zookeeper-env.sh => azure/tasks/main.yml}      |   5 +-
 ansible/roles/common/tasks/azure.yml               |  66 ++++++
 ansible/roles/common/tasks/hosts.yml               |   2 +-
 ansible/roles/common/tasks/os.yml                  |  18 ++
 ansible/roles/proxy/tasks/main.yml                 |   2 +
 .../roles/{common => proxy}/templates/etc_hosts    |   0
 ansible/spark.yml                                  |   2 +-
 ansible/zookeeper.yml                              |   2 +-
 conf/checksums                                     |   5 +
 conf/muchos.props.example                          |  69 +++++-
 lib/main.py                                        |   4 +
 lib/muchos/azure.py                                |  54 +++++
 lib/muchos/config.py                               |  57 +++--
 lib/muchos/existing.py                             |  23 +-
 lib/muchos/util.py                                 |   4 +-
 lib/tests/test_config.py                           |  73 ++++++-
 25 files changed, 724 insertions(+), 52 deletions(-)
 copy lib/tests/__init__.py => ansible/azure.yml (94%)
 create mode 100644 ansible/roles/azure/tasks/create_vmss.yml
 copy ansible/roles/{zookeeper/templates/zookeeper-env.sh => azure/tasks/main.yml} (92%)
 create mode 100644 ansible/roles/common/tasks/azure.yml
 copy ansible/roles/{common => proxy}/templates/etc_hosts (100%)
 create mode 100644 lib/muchos/azure.py