├── LICENSE ├── README.md ├── configuration ├── elastic-env.xml └── elastic-site.xml ├── metainfo.xml └── package ├── .hash ├── scripts ├── elastic.py ├── elastic_master.py ├── elastic_slave.py ├── params.py ├── properties_config.py ├── service_check.py ├── slave.py └── status_params.py └── templates ├── elasticsearch.master.yaml.j2 ├── elasticsearch.slave.yaml.j2 └── elasticsearch.sysconfig.j2 /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symantec/ambari-elasticsearch-service/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symantec/ambari-elasticsearch-service/HEAD/README.md -------------------------------------------------------------------------------- /configuration/elastic-env.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symantec/ambari-elasticsearch-service/HEAD/configuration/elastic-env.xml -------------------------------------------------------------------------------- /configuration/elastic-site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symantec/ambari-elasticsearch-service/HEAD/configuration/elastic-site.xml -------------------------------------------------------------------------------- /metainfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symantec/ambari-elasticsearch-service/HEAD/metainfo.xml -------------------------------------------------------------------------------- /package/.hash: -------------------------------------------------------------------------------- 1 | 3801aa53a15f3170f0740fd4aac4aa7d74599654 -------------------------------------------------------------------------------- /package/scripts/elastic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symantec/ambari-elasticsearch-service/HEAD/package/scripts/elastic.py -------------------------------------------------------------------------------- /package/scripts/elastic_master.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symantec/ambari-elasticsearch-service/HEAD/package/scripts/elastic_master.py -------------------------------------------------------------------------------- /package/scripts/elastic_slave.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symantec/ambari-elasticsearch-service/HEAD/package/scripts/elastic_slave.py -------------------------------------------------------------------------------- /package/scripts/params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symantec/ambari-elasticsearch-service/HEAD/package/scripts/params.py -------------------------------------------------------------------------------- /package/scripts/properties_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symantec/ambari-elasticsearch-service/HEAD/package/scripts/properties_config.py -------------------------------------------------------------------------------- /package/scripts/service_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symantec/ambari-elasticsearch-service/HEAD/package/scripts/service_check.py -------------------------------------------------------------------------------- /package/scripts/slave.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symantec/ambari-elasticsearch-service/HEAD/package/scripts/slave.py -------------------------------------------------------------------------------- /package/scripts/status_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symantec/ambari-elasticsearch-service/HEAD/package/scripts/status_params.py -------------------------------------------------------------------------------- /package/templates/elasticsearch.master.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symantec/ambari-elasticsearch-service/HEAD/package/templates/elasticsearch.master.yaml.j2 -------------------------------------------------------------------------------- /package/templates/elasticsearch.slave.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symantec/ambari-elasticsearch-service/HEAD/package/templates/elasticsearch.slave.yaml.j2 -------------------------------------------------------------------------------- /package/templates/elasticsearch.sysconfig.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symantec/ambari-elasticsearch-service/HEAD/package/templates/elasticsearch.sysconfig.j2 --------------------------------------------------------------------------------