├── LICENSE ├── README.md ├── configuration ├── redis-sentinel.xml └── redis.xml ├── metainfo.xml ├── metrics.json └── package ├── scripts ├── params.py ├── redis.py ├── redis_sentinel.py ├── redis_sentinel_service.py ├── redis_service.py ├── redis_slave_service.py ├── service_check.py └── status_params.py └── templates ├── redis-sentinel.conf.j2 └── redis.conf.j2 /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symantec/ambari-redis-service/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symantec/ambari-redis-service/HEAD/README.md -------------------------------------------------------------------------------- /configuration/redis-sentinel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symantec/ambari-redis-service/HEAD/configuration/redis-sentinel.xml -------------------------------------------------------------------------------- /configuration/redis.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symantec/ambari-redis-service/HEAD/configuration/redis.xml -------------------------------------------------------------------------------- /metainfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symantec/ambari-redis-service/HEAD/metainfo.xml -------------------------------------------------------------------------------- /metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symantec/ambari-redis-service/HEAD/metrics.json -------------------------------------------------------------------------------- /package/scripts/params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symantec/ambari-redis-service/HEAD/package/scripts/params.py -------------------------------------------------------------------------------- /package/scripts/redis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symantec/ambari-redis-service/HEAD/package/scripts/redis.py -------------------------------------------------------------------------------- /package/scripts/redis_sentinel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symantec/ambari-redis-service/HEAD/package/scripts/redis_sentinel.py -------------------------------------------------------------------------------- /package/scripts/redis_sentinel_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symantec/ambari-redis-service/HEAD/package/scripts/redis_sentinel_service.py -------------------------------------------------------------------------------- /package/scripts/redis_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symantec/ambari-redis-service/HEAD/package/scripts/redis_service.py -------------------------------------------------------------------------------- /package/scripts/redis_slave_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symantec/ambari-redis-service/HEAD/package/scripts/redis_slave_service.py -------------------------------------------------------------------------------- /package/scripts/service_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symantec/ambari-redis-service/HEAD/package/scripts/service_check.py -------------------------------------------------------------------------------- /package/scripts/status_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symantec/ambari-redis-service/HEAD/package/scripts/status_params.py -------------------------------------------------------------------------------- /package/templates/redis-sentinel.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symantec/ambari-redis-service/HEAD/package/templates/redis-sentinel.conf.j2 -------------------------------------------------------------------------------- /package/templates/redis.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symantec/ambari-redis-service/HEAD/package/templates/redis.conf.j2 --------------------------------------------------------------------------------