An open API service indexing awesome lists of open source software.

https://github.com/grycap/ansible-role-spark

Ansible role to install Apache Spark
https://github.com/grycap/ansible-role-spark

Last synced: 5 months ago
JSON representation

Ansible role to install Apache Spark

Awesome Lists containing this project

README

          

[![License](https://img.shields.io/badge/license-Apache%202-blue.svg)](https://www.apache.org/licenses/LICENSE-2.0)
[![Build Status](https://travis-ci.org/grycap/ansible-role-spark.svg?branch=master)](https://travis-ci.org/grycap/ansible-role-spark)

Apache Spark Role
==================

Ansible role to install Apache Spark (http://spark.apache.org/). A recipe for EC3 is also available in the EC3 repo.

Role Variables
--------------

The following variables can be passed to this role:

# The version of Spark (default value: 3.0.1)
spark_version: 3.0.1

Example Playbook
----------------
```
- hosts: server
roles:
- { role: 'grycap.spark', spark_version: '3.0.0'}
```
```
- hosts: client
roles:
- { role: 'grycap.spark', spark_version: '3.0.0'}
```

Contributing to the role
========================
In order to keep the code clean, pushing changes to the master branch has been disabled. If you want to contribute, you have to create a branch, upload your changes and then create a pull request.
Thanks