├── Figs ├── Components.png ├── FreeIPA.png ├── HadoopExample.png ├── KaveComponents.pdf ├── KaveComponents.png ├── KaveComponents.svg ├── KaveExamples.pptx ├── VersionSchema.png ├── VersionSchema.pptx ├── ambarikave-advanced-example.png ├── ambarikave-hadoop-example.png └── ambarikave-simple-example.png ├── LICENSE ├── LICENSE-DOCUMENTATION-IMAGE-SUBCLAUSE ├── NOTICE ├── README.md ├── ReleaseNotes.md ├── bin └── service.sh ├── deployment ├── README.md ├── add_toolbox.py ├── aws │ ├── README.md │ ├── add_ebsvol_to_instance.py │ ├── connect_to.py │ ├── deploy_known_instance.py │ ├── deploy_one_centos_instance.py │ ├── ipfromiid.py │ ├── kill.py │ ├── kill_or_stop_smarter.py │ ├── new_dev_image.py │ ├── new_dev_machine.py │ ├── tag_cascade.py │ └── up_aws_cluster.py ├── azure │ └── instance_type_mapping.txt ├── blueprints │ ├── README.md │ ├── default.blueprint.json │ ├── default.cluster.json │ ├── hidden_hostgroup.txt │ ├── management.blueprint.json │ ├── management.cluster.json │ ├── single.blueprint.json │ └── single.cluster.json ├── cloudbreak │ ├── README.md │ ├── blueprints │ │ ├── AIRFLOW.blueprint.json │ │ ├── ESKAPADE.blueprint.json │ │ ├── GITLAB.blueprint.json │ │ ├── JENKINS.blueprint.json │ │ ├── KAVENAGIOS.blueprint.json │ │ ├── LCM.blueprint.json │ │ ├── MONGODBREPLICA.blueprint.json │ │ ├── SONARQUBE.blueprint.json │ │ ├── STORM.blueprint.json │ │ ├── TWIKI.blueprint.json │ │ ├── cmcluster.blueprint.json │ │ ├── exampledev.blueprint.json │ │ ├── examplehadoop.blueprint.json │ │ ├── examplelambda.blueprint.json │ │ └── sonar-ldap.blueprint.json │ ├── cbcommon.py │ ├── cbdeploy.py │ ├── cluster_template.json │ ├── config │ │ ├── __init__.py │ │ ├── cbparams.py │ │ └── hostgroups.azure.json │ ├── instancegroup_template.json │ ├── kill_clusters.py │ ├── recipes │ │ ├── README.md │ │ ├── custom │ │ │ ├── kafka_configroups.sh │ │ │ └── kafka_ssl.sh │ │ ├── mandatory │ │ │ ├── add_missing_jars.sh │ │ │ ├── enable_ipv6.sh │ │ │ ├── harden-sshd-config.sh │ │ │ ├── increase_agent_task_timeout.sh │ │ │ ├── ipa_security_settings.sh │ │ │ ├── limit-ssh-attempts.sh │ │ │ ├── mysql-connector-install.sh │ │ │ ├── setup_ambari_agent_tls.sh │ │ │ ├── setup_cloudbreak_fixhostsfile_all.sh │ │ │ ├── setup_cloudbreak_kavepatch_ambari.sh │ │ │ ├── setup_cloudbreak_keydistrib_all.sh │ │ │ ├── setup_cloudbreak_local_kavepatch_ambari.sh │ │ │ └── setup_snmp_daemon.sh │ │ ├── optional │ │ │ └── distribute-secrets-and-install-ipa-client.sh │ │ └── recipe_details.json │ ├── securitygroups │ │ ├── default_security_group.json │ │ └── existing_security_group.json │ ├── setup_cloudbreak.md │ └── stack_template.json ├── clusters │ ├── example.security.json │ ├── management.aws.json │ ├── minimal.aws.json │ ├── recommended.aws.json │ └── single.aws.json ├── deploy_from_blueprint.py ├── lib │ ├── kaveaws.py │ └── kavedeploy.py ├── node_tunnel.py ├── remotescripts │ ├── add_incoming_port.py │ ├── default.netrc │ ├── fdiskwrap.sh │ ├── gitwrap.sh │ ├── install_epel.sh │ └── rename_me.py ├── resource_wizard.py ├── security │ └── oozie.txt └── user_check.sh ├── dev ├── README.md ├── add_license.py ├── clean.sh ├── dist_kavecommon.py ├── install.sh ├── install_snippet.sh ├── package.sh ├── patch.sh ├── pull-update.sh ├── restart_all_services.sh └── scan.sh ├── src ├── KAVE │ ├── metainfo.xml │ ├── repos │ │ └── repoinfo.xml │ ├── role_command_order.json │ └── services │ │ ├── AIRFLOW │ │ ├── configuration │ │ │ └── airflow.xml │ │ ├── metainfo.xml │ │ └── package │ │ │ ├── scripts │ │ │ ├── airflow.py │ │ │ └── params.py │ │ │ └── templates │ │ │ ├── airflow │ │ │ ├── airflow-scheduler.service │ │ │ ├── airflow-webserver.service │ │ │ └── airflow.j2 │ │ ├── APACHE │ │ ├── configuration │ │ │ └── apache.xml │ │ ├── metainfo.xml │ │ └── package │ │ │ └── scripts │ │ │ ├── apachehttpd.py │ │ │ └── params.py │ │ ├── ARCHIVA │ │ ├── configuration │ │ │ └── archiva.xml │ │ ├── metainfo.xml │ │ └── package │ │ │ ├── scripts │ │ │ ├── archiva.py │ │ │ └── params.py │ │ │ └── templates │ │ │ ├── archiva.service │ │ │ ├── archiva.xml.j2 │ │ │ ├── jetty.xml.j2 │ │ │ ├── security.properties.j2 │ │ │ ├── shared.xml.j2 │ │ │ └── wrapper.conf.j2 │ │ ├── ESKAPADE │ │ ├── configuration │ │ │ └── eskapade.xml │ │ ├── metainfo.xml │ │ └── package │ │ │ ├── scripts │ │ │ ├── eskapade.py │ │ │ └── params.py │ │ │ └── templates │ │ │ └── eskapade.sh.j2 │ │ ├── FREEIPA │ │ ├── README.md │ │ ├── configuration │ │ │ └── freeipa.xml │ │ ├── metainfo.xml │ │ └── package │ │ │ ├── scripts │ │ │ ├── freeipa.py │ │ │ ├── freeipa_client.py │ │ │ ├── freeipa_server.py │ │ │ └── params.py │ │ │ └── templates │ │ │ ├── admin-password.j2 │ │ │ ├── bind_user.ldif.j2 │ │ │ ├── centos6_server.json.j2 │ │ │ ├── centos7_server.json.j2 │ │ │ ├── createkeytabs.py │ │ │ ├── expire_date.ldif.j2 │ │ │ └── resolv.conf.j2 │ │ ├── GITLAB │ │ ├── README.md │ │ ├── configuration │ │ │ └── gitlab.xml │ │ ├── metainfo.xml │ │ └── package │ │ │ └── scripts │ │ │ ├── gitlab.py │ │ │ └── params.py │ │ ├── JENKINS │ │ ├── configuration │ │ │ └── jenkins.xml │ │ ├── metainfo.xml │ │ └── package │ │ │ ├── scripts │ │ │ ├── jenkins.py │ │ │ └── params.py │ │ │ └── templates │ │ │ ├── config.xml.j2 │ │ │ └── jenkins.j2 │ │ ├── KAVELANDING │ │ ├── configuration │ │ │ └── kavelanding.xml │ │ ├── metainfo.xml │ │ └── package │ │ │ ├── scripts │ │ │ ├── KAVE-logo-thin.png │ │ │ ├── kavelanding.py │ │ │ ├── kavescan.py │ │ │ └── params.py │ │ │ └── templates │ │ │ ├── LICENSE │ │ │ ├── LICENSE-DOCUMENTATION-IMAGE-SUBCLAUSE │ │ │ ├── NOTICE │ │ │ ├── bootstrap.min.css │ │ │ └── kavelanding.html.j2 │ │ ├── KAVENAGIOS │ │ ├── configuration │ │ │ └── kavenagios.xml │ │ ├── metainfo.xml │ │ └── package │ │ │ ├── scripts │ │ │ ├── nagios.py │ │ │ ├── nagios_client.py │ │ │ └── params.py │ │ │ └── templates │ │ │ └── nagios_cfg.j2 │ │ ├── KAVETOOLBOX │ │ ├── configuration │ │ │ └── kavetoolbox.xml │ │ ├── metainfo.xml │ │ └── package │ │ │ └── scripts │ │ │ ├── kavetoolbox.py │ │ │ ├── kavetoolboxgate.py │ │ │ └── params.py │ │ ├── LCM │ │ ├── configuration │ │ │ ├── lcm_application.xml │ │ │ ├── lcm_logs.xml │ │ │ └── lcm_security.xml │ │ ├── metainfo.xml │ │ ├── package │ │ │ ├── scripts │ │ │ │ ├── lcmserver.py │ │ │ │ ├── lcmui.py │ │ │ │ └── params.py │ │ │ └── templates │ │ │ │ ├── lcm-server.service │ │ │ │ └── lcm-ui.service │ │ └── quicklinks │ │ │ └── quicklinks.json │ │ ├── MAIL │ │ ├── configuration │ │ │ └── mail.xml │ │ ├── metainfo.xml │ │ └── package │ │ │ ├── scripts │ │ │ ├── dovecot.py │ │ │ ├── params.py │ │ │ └── postfix_server.py │ │ │ └── templates │ │ │ ├── 10-auth.conf.j2 │ │ │ ├── 10-mail.conf.j2 │ │ │ ├── 10-master.conf.j2 │ │ │ ├── dovecot.conf.j2 │ │ │ └── main.cf.j2 │ │ ├── MONGODB │ │ ├── configuration │ │ │ └── mongodb.xml │ │ ├── metainfo.xml │ │ └── package │ │ │ ├── scripts │ │ │ ├── mongo_arbiter.py │ │ │ ├── mongo_base.py │ │ │ ├── mongo_client.py │ │ │ ├── mongo_master.py │ │ │ └── params.py │ │ │ └── templates │ │ │ ├── mongo_replication.conf.j2 │ │ │ ├── mongoclient.conf.j2 │ │ │ ├── mongodb.repo │ │ │ └── mongok │ │ ├── SONARQUBE │ │ ├── configuration │ │ │ └── sonarqube.xml │ │ ├── metainfo.xml │ │ └── package │ │ │ ├── files │ │ │ ├── addMysqlUser.sh │ │ │ └── removeMysqlUser.sh │ │ │ ├── scripts │ │ │ ├── mysql.py │ │ │ ├── mysql_users.py │ │ │ ├── mysql_utils.py │ │ │ ├── params.py │ │ │ ├── sonarqube.py │ │ │ ├── sonarqube_runner.py │ │ │ └── status_params.py │ │ │ └── templates │ │ │ ├── sonar-runner.properties.j2 │ │ │ ├── sonar-runner.sh.j2 │ │ │ └── sonar.properties.j2 │ │ ├── STORMSD │ │ ├── configuration │ │ │ └── stormsd.xml │ │ ├── metainfo.xml │ │ └── package │ │ │ ├── scripts │ │ │ ├── params.py │ │ │ ├── storm_client.py │ │ │ ├── storm_drpc.py │ │ │ ├── storm_logviewer.py │ │ │ ├── storm_nimbus.py │ │ │ ├── storm_sd_generic.py │ │ │ ├── storm_supervisor.py │ │ │ └── ui_server.py │ │ │ └── templates │ │ │ ├── cluster.xml.j2 │ │ │ ├── prog.conf │ │ │ ├── supervisor.j2 │ │ │ └── supervisord.conf.j2 │ │ ├── TWIKI │ │ ├── configuration │ │ │ └── twiki.xml │ │ ├── metainfo.xml │ │ └── package │ │ │ ├── scripts │ │ │ ├── params.py │ │ │ └── twiki.py │ │ │ └── templates │ │ │ ├── LocalLib.cfg.txt │ │ │ ├── LocalSite.cfg.j2 │ │ │ └── authtest.html.j2 │ │ ├── WILDFLY │ │ ├── configuration │ │ │ └── wildfly.xml │ │ ├── metainfo.xml │ │ └── package │ │ │ ├── scripts │ │ │ ├── params.py │ │ │ └── wildfly.py │ │ │ └── templates │ │ │ └── wildfly.j2 │ │ └── stack_advisor.py └── shared │ ├── README.md │ └── kavecommon.py └── tests ├── README.md ├── base ├── README.md └── base.py ├── deployment ├── README.md ├── all.py ├── blueprints │ └── micro.aws.json ├── knownami.py ├── micro_cluster.py ├── one_centos_dev.py └── single_machine_cluster.py ├── docker ├── dockerbase.py └── localdocker.py ├── integration ├── README.md ├── all.py ├── blueprints │ ├── AIRFLOW.aws.json │ ├── AIRFLOW.blueprint.json │ ├── AIRFLOW.cluster.json │ ├── ESKAPADE.aws.json │ ├── ESKAPADE.blueprint.json │ ├── ESKAPADE.cluster.json │ ├── FREEIPA.aws.json │ ├── FREEIPA.blueprint.json │ ├── FREEIPA.cluster.json │ ├── GITLAB.aws.json │ ├── GITLAB.blueprint.json │ ├── GITLAB.cluster.json │ ├── KAVELANDING.aws.json │ ├── KAVELANDING.blueprint.json │ ├── KAVELANDING.cluster.json │ ├── KAVENAGIOS.aws.json │ ├── KAVENAGIOS.blueprint.json │ ├── KAVENAGIOS.cluster.json │ ├── LCM.aws.json │ ├── LCM.blueprint.json │ ├── LCM.cluster.json │ ├── MONGODBREPLICA.aws.json │ ├── MONGODBREPLICA.blueprint.json │ ├── MONGODBREPLICA.cluster.json │ ├── README.md │ ├── SONARQUBE.aws.json │ ├── SONARQUBE.blueprint.json │ ├── SONARQUBE.cluster.json │ ├── STORM.aws.json │ ├── STORM.blueprint.json │ ├── STORM.cluster.json │ ├── TWIKI.aws.json │ ├── TWIKI.blueprint.json │ ├── TWIKI.cluster.json │ ├── default.aws.json │ ├── default.blueprint.json │ ├── default.cluster.json │ ├── exampledev.aws.json │ ├── exampledev.blueprint.json │ ├── exampledev.cluster.json │ ├── examplehadoop.aws.json │ ├── examplehadoop.blueprint.json │ ├── examplehadoop.cluster.json │ ├── examplelambda.aws.json │ ├── examplelambda.blueprint.json │ ├── examplelambda.cluster.json │ ├── sonar-ldap.aws.json │ ├── sonar-ldap.blueprint.json │ └── sonar-ldap.cluster.json ├── clusters.py ├── kerberostest.csv └── test_eskapade_branch.py ├── kill_recent_tests.py ├── release ├── README.md ├── _compile_root_custom.py ├── all.py ├── checkpackage.py ├── kavetoolbox.py ├── ktb_package_all_root_os.py └── ktb_package_root_version.py ├── service ├── README.md ├── all.py ├── blueprints │ ├── ARCHIVA.blueprint.json │ ├── ESKAPADE.blueprint.json │ ├── JENKINS.blueprint.json │ ├── KAVELANDING.blueprint.json │ ├── KAVENAGIOS.blueprint2.json │ ├── LCM.blueprint.json │ ├── MAIL.blueprint.json │ ├── MONGODB.blueprint.json │ ├── README.md │ ├── SONARQUBE.blueprint.json │ ├── STORM.blueprint.json │ ├── TWIKI.blueprint.json │ ├── WILDFLY.blueprint.json │ ├── default.aws.json │ └── default.cluster.json ├── kerberostest.csv ├── remote_blueprint.py ├── remote_service_with_blueprint.py ├── remote_service_with_servicesh.py └── test_kavetoolbox_head.py ├── test.sh └── unit ├── README.md ├── all.py ├── checkdistkclib.py ├── checkpep8.py ├── deploylib.py ├── jsonbpchecks.py ├── kclib.py ├── license.py ├── mock_ambari ├── __init__.py ├── ambari_commons │ ├── __init__.py │ └── os_check.py ├── resource_management │ ├── __init__.py │ ├── core │ │ ├── __init__.py │ │ ├── base.py │ │ ├── exceptions.py │ │ ├── source.py │ │ └── system.py │ └── libraries │ │ ├── __init__.py │ │ ├── functions │ │ ├── __init__.py │ │ ├── default.py │ │ └── version.py │ │ └── script │ │ ├── __init__.py │ │ └── script.py └── socket.py ├── pep8.conf ├── pep8functions.py ├── pep8variables.py ├── pyfilenames.py ├── repoimports.py ├── scan.py ├── sedtests ├── fake_extension.sh ├── ignoredir │ └── ignoresubdir │ │ └── matchfile.txt ├── ignorefile.txt └── subdira │ └── subdirb │ └── matchfile.txt ├── servicesh.py ├── testpythonimport.py ├── testresourcewizard.py ├── testversion.py └── verifyxml.py /Figs/Components.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/Figs/Components.png -------------------------------------------------------------------------------- /Figs/FreeIPA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/Figs/FreeIPA.png -------------------------------------------------------------------------------- /Figs/HadoopExample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/Figs/HadoopExample.png -------------------------------------------------------------------------------- /Figs/KaveComponents.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/Figs/KaveComponents.pdf -------------------------------------------------------------------------------- /Figs/KaveComponents.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/Figs/KaveComponents.png -------------------------------------------------------------------------------- /Figs/KaveComponents.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/Figs/KaveComponents.svg -------------------------------------------------------------------------------- /Figs/KaveExamples.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/Figs/KaveExamples.pptx -------------------------------------------------------------------------------- /Figs/VersionSchema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/Figs/VersionSchema.png -------------------------------------------------------------------------------- /Figs/VersionSchema.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/Figs/VersionSchema.pptx -------------------------------------------------------------------------------- /Figs/ambarikave-advanced-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/Figs/ambarikave-advanced-example.png -------------------------------------------------------------------------------- /Figs/ambarikave-hadoop-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/Figs/ambarikave-hadoop-example.png -------------------------------------------------------------------------------- /Figs/ambarikave-simple-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/Figs/ambarikave-simple-example.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE-DOCUMENTATION-IMAGE-SUBCLAUSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/LICENSE-DOCUMENTATION-IMAGE-SUBCLAUSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/README.md -------------------------------------------------------------------------------- /ReleaseNotes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/ReleaseNotes.md -------------------------------------------------------------------------------- /bin/service.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/bin/service.sh -------------------------------------------------------------------------------- /deployment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/deployment/README.md -------------------------------------------------------------------------------- /deployment/add_toolbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/deployment/add_toolbox.py -------------------------------------------------------------------------------- /deployment/aws/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/deployment/aws/README.md -------------------------------------------------------------------------------- /deployment/aws/add_ebsvol_to_instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/deployment/aws/add_ebsvol_to_instance.py -------------------------------------------------------------------------------- /deployment/aws/connect_to.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/deployment/aws/connect_to.py -------------------------------------------------------------------------------- /deployment/aws/deploy_known_instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/deployment/aws/deploy_known_instance.py -------------------------------------------------------------------------------- /deployment/aws/deploy_one_centos_instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/deployment/aws/deploy_one_centos_instance.py -------------------------------------------------------------------------------- /deployment/aws/ipfromiid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/deployment/aws/ipfromiid.py -------------------------------------------------------------------------------- /deployment/aws/kill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/deployment/aws/kill.py -------------------------------------------------------------------------------- /deployment/aws/kill_or_stop_smarter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/deployment/aws/kill_or_stop_smarter.py -------------------------------------------------------------------------------- /deployment/aws/new_dev_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/deployment/aws/new_dev_image.py -------------------------------------------------------------------------------- /deployment/aws/new_dev_machine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/deployment/aws/new_dev_machine.py -------------------------------------------------------------------------------- /deployment/aws/tag_cascade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/deployment/aws/tag_cascade.py -------------------------------------------------------------------------------- /deployment/aws/up_aws_cluster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/deployment/aws/up_aws_cluster.py -------------------------------------------------------------------------------- /deployment/azure/instance_type_mapping.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/deployment/azure/instance_type_mapping.txt -------------------------------------------------------------------------------- /deployment/blueprints/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/deployment/blueprints/README.md -------------------------------------------------------------------------------- /deployment/blueprints/default.blueprint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/deployment/blueprints/default.blueprint.json -------------------------------------------------------------------------------- /deployment/blueprints/default.cluster.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/deployment/blueprints/default.cluster.json -------------------------------------------------------------------------------- /deployment/blueprints/hidden_hostgroup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/deployment/blueprints/hidden_hostgroup.txt -------------------------------------------------------------------------------- /deployment/blueprints/management.blueprint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/deployment/blueprints/management.blueprint.json -------------------------------------------------------------------------------- /deployment/blueprints/management.cluster.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/deployment/blueprints/management.cluster.json -------------------------------------------------------------------------------- /deployment/blueprints/single.blueprint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/deployment/blueprints/single.blueprint.json -------------------------------------------------------------------------------- /deployment/blueprints/single.cluster.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/deployment/blueprints/single.cluster.json -------------------------------------------------------------------------------- /deployment/cloudbreak/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/deployment/cloudbreak/README.md -------------------------------------------------------------------------------- /deployment/cloudbreak/blueprints/AIRFLOW.blueprint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/deployment/cloudbreak/blueprints/AIRFLOW.blueprint.json -------------------------------------------------------------------------------- /deployment/cloudbreak/blueprints/ESKAPADE.blueprint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/deployment/cloudbreak/blueprints/ESKAPADE.blueprint.json -------------------------------------------------------------------------------- /deployment/cloudbreak/blueprints/GITLAB.blueprint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/deployment/cloudbreak/blueprints/GITLAB.blueprint.json -------------------------------------------------------------------------------- /deployment/cloudbreak/blueprints/JENKINS.blueprint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/deployment/cloudbreak/blueprints/JENKINS.blueprint.json -------------------------------------------------------------------------------- /deployment/cloudbreak/blueprints/KAVENAGIOS.blueprint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/deployment/cloudbreak/blueprints/KAVENAGIOS.blueprint.json -------------------------------------------------------------------------------- /deployment/cloudbreak/blueprints/LCM.blueprint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/deployment/cloudbreak/blueprints/LCM.blueprint.json -------------------------------------------------------------------------------- /deployment/cloudbreak/blueprints/MONGODBREPLICA.blueprint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/deployment/cloudbreak/blueprints/MONGODBREPLICA.blueprint.json -------------------------------------------------------------------------------- /deployment/cloudbreak/blueprints/SONARQUBE.blueprint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/deployment/cloudbreak/blueprints/SONARQUBE.blueprint.json -------------------------------------------------------------------------------- /deployment/cloudbreak/blueprints/STORM.blueprint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/deployment/cloudbreak/blueprints/STORM.blueprint.json -------------------------------------------------------------------------------- /deployment/cloudbreak/blueprints/TWIKI.blueprint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/deployment/cloudbreak/blueprints/TWIKI.blueprint.json -------------------------------------------------------------------------------- /deployment/cloudbreak/blueprints/cmcluster.blueprint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/deployment/cloudbreak/blueprints/cmcluster.blueprint.json -------------------------------------------------------------------------------- /deployment/cloudbreak/blueprints/exampledev.blueprint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/deployment/cloudbreak/blueprints/exampledev.blueprint.json -------------------------------------------------------------------------------- /deployment/cloudbreak/blueprints/examplehadoop.blueprint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/deployment/cloudbreak/blueprints/examplehadoop.blueprint.json -------------------------------------------------------------------------------- /deployment/cloudbreak/blueprints/examplelambda.blueprint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/deployment/cloudbreak/blueprints/examplelambda.blueprint.json -------------------------------------------------------------------------------- /deployment/cloudbreak/blueprints/sonar-ldap.blueprint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/deployment/cloudbreak/blueprints/sonar-ldap.blueprint.json -------------------------------------------------------------------------------- /deployment/cloudbreak/cbcommon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/deployment/cloudbreak/cbcommon.py -------------------------------------------------------------------------------- /deployment/cloudbreak/cbdeploy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/deployment/cloudbreak/cbdeploy.py -------------------------------------------------------------------------------- /deployment/cloudbreak/cluster_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/deployment/cloudbreak/cluster_template.json -------------------------------------------------------------------------------- /deployment/cloudbreak/config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/deployment/cloudbreak/config/__init__.py -------------------------------------------------------------------------------- /deployment/cloudbreak/config/cbparams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/deployment/cloudbreak/config/cbparams.py -------------------------------------------------------------------------------- /deployment/cloudbreak/config/hostgroups.azure.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/deployment/cloudbreak/config/hostgroups.azure.json -------------------------------------------------------------------------------- /deployment/cloudbreak/instancegroup_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/deployment/cloudbreak/instancegroup_template.json -------------------------------------------------------------------------------- /deployment/cloudbreak/kill_clusters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/deployment/cloudbreak/kill_clusters.py -------------------------------------------------------------------------------- /deployment/cloudbreak/recipes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/deployment/cloudbreak/recipes/README.md -------------------------------------------------------------------------------- /deployment/cloudbreak/recipes/custom/kafka_configroups.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/deployment/cloudbreak/recipes/custom/kafka_configroups.sh -------------------------------------------------------------------------------- /deployment/cloudbreak/recipes/custom/kafka_ssl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/deployment/cloudbreak/recipes/custom/kafka_ssl.sh -------------------------------------------------------------------------------- /deployment/cloudbreak/recipes/mandatory/add_missing_jars.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/deployment/cloudbreak/recipes/mandatory/add_missing_jars.sh -------------------------------------------------------------------------------- /deployment/cloudbreak/recipes/mandatory/enable_ipv6.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/deployment/cloudbreak/recipes/mandatory/enable_ipv6.sh -------------------------------------------------------------------------------- /deployment/cloudbreak/recipes/mandatory/harden-sshd-config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/deployment/cloudbreak/recipes/mandatory/harden-sshd-config.sh -------------------------------------------------------------------------------- /deployment/cloudbreak/recipes/mandatory/increase_agent_task_timeout.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/deployment/cloudbreak/recipes/mandatory/increase_agent_task_timeout.sh -------------------------------------------------------------------------------- /deployment/cloudbreak/recipes/mandatory/ipa_security_settings.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/deployment/cloudbreak/recipes/mandatory/ipa_security_settings.sh -------------------------------------------------------------------------------- /deployment/cloudbreak/recipes/mandatory/limit-ssh-attempts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/deployment/cloudbreak/recipes/mandatory/limit-ssh-attempts.sh -------------------------------------------------------------------------------- /deployment/cloudbreak/recipes/mandatory/mysql-connector-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/deployment/cloudbreak/recipes/mandatory/mysql-connector-install.sh -------------------------------------------------------------------------------- /deployment/cloudbreak/recipes/mandatory/setup_ambari_agent_tls.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/deployment/cloudbreak/recipes/mandatory/setup_ambari_agent_tls.sh -------------------------------------------------------------------------------- /deployment/cloudbreak/recipes/mandatory/setup_cloudbreak_fixhostsfile_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/deployment/cloudbreak/recipes/mandatory/setup_cloudbreak_fixhostsfile_all.sh -------------------------------------------------------------------------------- /deployment/cloudbreak/recipes/mandatory/setup_cloudbreak_kavepatch_ambari.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/deployment/cloudbreak/recipes/mandatory/setup_cloudbreak_kavepatch_ambari.sh -------------------------------------------------------------------------------- /deployment/cloudbreak/recipes/mandatory/setup_cloudbreak_keydistrib_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/deployment/cloudbreak/recipes/mandatory/setup_cloudbreak_keydistrib_all.sh -------------------------------------------------------------------------------- /deployment/cloudbreak/recipes/mandatory/setup_cloudbreak_local_kavepatch_ambari.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/deployment/cloudbreak/recipes/mandatory/setup_cloudbreak_local_kavepatch_ambari.sh -------------------------------------------------------------------------------- /deployment/cloudbreak/recipes/mandatory/setup_snmp_daemon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/deployment/cloudbreak/recipes/mandatory/setup_snmp_daemon.sh -------------------------------------------------------------------------------- /deployment/cloudbreak/recipes/optional/distribute-secrets-and-install-ipa-client.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/deployment/cloudbreak/recipes/optional/distribute-secrets-and-install-ipa-client.sh -------------------------------------------------------------------------------- /deployment/cloudbreak/recipes/recipe_details.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/deployment/cloudbreak/recipes/recipe_details.json -------------------------------------------------------------------------------- /deployment/cloudbreak/securitygroups/default_security_group.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/deployment/cloudbreak/securitygroups/default_security_group.json -------------------------------------------------------------------------------- /deployment/cloudbreak/securitygroups/existing_security_group.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/deployment/cloudbreak/securitygroups/existing_security_group.json -------------------------------------------------------------------------------- /deployment/cloudbreak/setup_cloudbreak.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/deployment/cloudbreak/setup_cloudbreak.md -------------------------------------------------------------------------------- /deployment/cloudbreak/stack_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/deployment/cloudbreak/stack_template.json -------------------------------------------------------------------------------- /deployment/clusters/example.security.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/deployment/clusters/example.security.json -------------------------------------------------------------------------------- /deployment/clusters/management.aws.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/deployment/clusters/management.aws.json -------------------------------------------------------------------------------- /deployment/clusters/minimal.aws.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/deployment/clusters/minimal.aws.json -------------------------------------------------------------------------------- /deployment/clusters/recommended.aws.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/deployment/clusters/recommended.aws.json -------------------------------------------------------------------------------- /deployment/clusters/single.aws.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/deployment/clusters/single.aws.json -------------------------------------------------------------------------------- /deployment/deploy_from_blueprint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/deployment/deploy_from_blueprint.py -------------------------------------------------------------------------------- /deployment/lib/kaveaws.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/deployment/lib/kaveaws.py -------------------------------------------------------------------------------- /deployment/lib/kavedeploy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/deployment/lib/kavedeploy.py -------------------------------------------------------------------------------- /deployment/node_tunnel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/deployment/node_tunnel.py -------------------------------------------------------------------------------- /deployment/remotescripts/add_incoming_port.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/deployment/remotescripts/add_incoming_port.py -------------------------------------------------------------------------------- /deployment/remotescripts/default.netrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/deployment/remotescripts/default.netrc -------------------------------------------------------------------------------- /deployment/remotescripts/fdiskwrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/deployment/remotescripts/fdiskwrap.sh -------------------------------------------------------------------------------- /deployment/remotescripts/gitwrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/deployment/remotescripts/gitwrap.sh -------------------------------------------------------------------------------- /deployment/remotescripts/install_epel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/deployment/remotescripts/install_epel.sh -------------------------------------------------------------------------------- /deployment/remotescripts/rename_me.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/deployment/remotescripts/rename_me.py -------------------------------------------------------------------------------- /deployment/resource_wizard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/deployment/resource_wizard.py -------------------------------------------------------------------------------- /deployment/security/oozie.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/deployment/security/oozie.txt -------------------------------------------------------------------------------- /deployment/user_check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/deployment/user_check.sh -------------------------------------------------------------------------------- /dev/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/dev/README.md -------------------------------------------------------------------------------- /dev/add_license.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/dev/add_license.py -------------------------------------------------------------------------------- /dev/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/dev/clean.sh -------------------------------------------------------------------------------- /dev/dist_kavecommon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/dev/dist_kavecommon.py -------------------------------------------------------------------------------- /dev/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/dev/install.sh -------------------------------------------------------------------------------- /dev/install_snippet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/dev/install_snippet.sh -------------------------------------------------------------------------------- /dev/package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/dev/package.sh -------------------------------------------------------------------------------- /dev/patch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/dev/patch.sh -------------------------------------------------------------------------------- /dev/pull-update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/dev/pull-update.sh -------------------------------------------------------------------------------- /dev/restart_all_services.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/dev/restart_all_services.sh -------------------------------------------------------------------------------- /dev/scan.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/dev/scan.sh -------------------------------------------------------------------------------- /src/KAVE/metainfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/metainfo.xml -------------------------------------------------------------------------------- /src/KAVE/repos/repoinfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/repos/repoinfo.xml -------------------------------------------------------------------------------- /src/KAVE/role_command_order.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/role_command_order.json -------------------------------------------------------------------------------- /src/KAVE/services/AIRFLOW/configuration/airflow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/AIRFLOW/configuration/airflow.xml -------------------------------------------------------------------------------- /src/KAVE/services/AIRFLOW/metainfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/AIRFLOW/metainfo.xml -------------------------------------------------------------------------------- /src/KAVE/services/AIRFLOW/package/scripts/airflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/AIRFLOW/package/scripts/airflow.py -------------------------------------------------------------------------------- /src/KAVE/services/AIRFLOW/package/scripts/params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/AIRFLOW/package/scripts/params.py -------------------------------------------------------------------------------- /src/KAVE/services/AIRFLOW/package/templates/airflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/AIRFLOW/package/templates/airflow -------------------------------------------------------------------------------- /src/KAVE/services/AIRFLOW/package/templates/airflow-scheduler.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/AIRFLOW/package/templates/airflow-scheduler.service -------------------------------------------------------------------------------- /src/KAVE/services/AIRFLOW/package/templates/airflow-webserver.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/AIRFLOW/package/templates/airflow-webserver.service -------------------------------------------------------------------------------- /src/KAVE/services/AIRFLOW/package/templates/airflow.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/AIRFLOW/package/templates/airflow.j2 -------------------------------------------------------------------------------- /src/KAVE/services/APACHE/configuration/apache.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/APACHE/configuration/apache.xml -------------------------------------------------------------------------------- /src/KAVE/services/APACHE/metainfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/APACHE/metainfo.xml -------------------------------------------------------------------------------- /src/KAVE/services/APACHE/package/scripts/apachehttpd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/APACHE/package/scripts/apachehttpd.py -------------------------------------------------------------------------------- /src/KAVE/services/APACHE/package/scripts/params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/APACHE/package/scripts/params.py -------------------------------------------------------------------------------- /src/KAVE/services/ARCHIVA/configuration/archiva.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/ARCHIVA/configuration/archiva.xml -------------------------------------------------------------------------------- /src/KAVE/services/ARCHIVA/metainfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/ARCHIVA/metainfo.xml -------------------------------------------------------------------------------- /src/KAVE/services/ARCHIVA/package/scripts/archiva.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/ARCHIVA/package/scripts/archiva.py -------------------------------------------------------------------------------- /src/KAVE/services/ARCHIVA/package/scripts/params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/ARCHIVA/package/scripts/params.py -------------------------------------------------------------------------------- /src/KAVE/services/ARCHIVA/package/templates/archiva.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/ARCHIVA/package/templates/archiva.service -------------------------------------------------------------------------------- /src/KAVE/services/ARCHIVA/package/templates/archiva.xml.j2: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/KAVE/services/ARCHIVA/package/templates/jetty.xml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/ARCHIVA/package/templates/jetty.xml.j2 -------------------------------------------------------------------------------- /src/KAVE/services/ARCHIVA/package/templates/security.properties.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/ARCHIVA/package/templates/security.properties.j2 -------------------------------------------------------------------------------- /src/KAVE/services/ARCHIVA/package/templates/shared.xml.j2: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/KAVE/services/ARCHIVA/package/templates/wrapper.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/ARCHIVA/package/templates/wrapper.conf.j2 -------------------------------------------------------------------------------- /src/KAVE/services/ESKAPADE/configuration/eskapade.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/ESKAPADE/configuration/eskapade.xml -------------------------------------------------------------------------------- /src/KAVE/services/ESKAPADE/metainfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/ESKAPADE/metainfo.xml -------------------------------------------------------------------------------- /src/KAVE/services/ESKAPADE/package/scripts/eskapade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/ESKAPADE/package/scripts/eskapade.py -------------------------------------------------------------------------------- /src/KAVE/services/ESKAPADE/package/scripts/params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/ESKAPADE/package/scripts/params.py -------------------------------------------------------------------------------- /src/KAVE/services/ESKAPADE/package/templates/eskapade.sh.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/ESKAPADE/package/templates/eskapade.sh.j2 -------------------------------------------------------------------------------- /src/KAVE/services/FREEIPA/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/FREEIPA/README.md -------------------------------------------------------------------------------- /src/KAVE/services/FREEIPA/configuration/freeipa.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/FREEIPA/configuration/freeipa.xml -------------------------------------------------------------------------------- /src/KAVE/services/FREEIPA/metainfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/FREEIPA/metainfo.xml -------------------------------------------------------------------------------- /src/KAVE/services/FREEIPA/package/scripts/freeipa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/FREEIPA/package/scripts/freeipa.py -------------------------------------------------------------------------------- /src/KAVE/services/FREEIPA/package/scripts/freeipa_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/FREEIPA/package/scripts/freeipa_client.py -------------------------------------------------------------------------------- /src/KAVE/services/FREEIPA/package/scripts/freeipa_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/FREEIPA/package/scripts/freeipa_server.py -------------------------------------------------------------------------------- /src/KAVE/services/FREEIPA/package/scripts/params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/FREEIPA/package/scripts/params.py -------------------------------------------------------------------------------- /src/KAVE/services/FREEIPA/package/templates/admin-password.j2: -------------------------------------------------------------------------------- 1 | {{admin_password}} -------------------------------------------------------------------------------- /src/KAVE/services/FREEIPA/package/templates/bind_user.ldif.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/FREEIPA/package/templates/bind_user.ldif.j2 -------------------------------------------------------------------------------- /src/KAVE/services/FREEIPA/package/templates/centos6_server.json.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/FREEIPA/package/templates/centos6_server.json.j2 -------------------------------------------------------------------------------- /src/KAVE/services/FREEIPA/package/templates/centos7_server.json.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/FREEIPA/package/templates/centos7_server.json.j2 -------------------------------------------------------------------------------- /src/KAVE/services/FREEIPA/package/templates/createkeytabs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/FREEIPA/package/templates/createkeytabs.py -------------------------------------------------------------------------------- /src/KAVE/services/FREEIPA/package/templates/expire_date.ldif.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/FREEIPA/package/templates/expire_date.ldif.j2 -------------------------------------------------------------------------------- /src/KAVE/services/FREEIPA/package/templates/resolv.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/FREEIPA/package/templates/resolv.conf.j2 -------------------------------------------------------------------------------- /src/KAVE/services/GITLAB/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/GITLAB/README.md -------------------------------------------------------------------------------- /src/KAVE/services/GITLAB/configuration/gitlab.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/GITLAB/configuration/gitlab.xml -------------------------------------------------------------------------------- /src/KAVE/services/GITLAB/metainfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/GITLAB/metainfo.xml -------------------------------------------------------------------------------- /src/KAVE/services/GITLAB/package/scripts/gitlab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/GITLAB/package/scripts/gitlab.py -------------------------------------------------------------------------------- /src/KAVE/services/GITLAB/package/scripts/params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/GITLAB/package/scripts/params.py -------------------------------------------------------------------------------- /src/KAVE/services/JENKINS/configuration/jenkins.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/JENKINS/configuration/jenkins.xml -------------------------------------------------------------------------------- /src/KAVE/services/JENKINS/metainfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/JENKINS/metainfo.xml -------------------------------------------------------------------------------- /src/KAVE/services/JENKINS/package/scripts/jenkins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/JENKINS/package/scripts/jenkins.py -------------------------------------------------------------------------------- /src/KAVE/services/JENKINS/package/scripts/params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/JENKINS/package/scripts/params.py -------------------------------------------------------------------------------- /src/KAVE/services/JENKINS/package/templates/config.xml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/JENKINS/package/templates/config.xml.j2 -------------------------------------------------------------------------------- /src/KAVE/services/JENKINS/package/templates/jenkins.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/JENKINS/package/templates/jenkins.j2 -------------------------------------------------------------------------------- /src/KAVE/services/KAVELANDING/configuration/kavelanding.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/KAVELANDING/configuration/kavelanding.xml -------------------------------------------------------------------------------- /src/KAVE/services/KAVELANDING/metainfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/KAVELANDING/metainfo.xml -------------------------------------------------------------------------------- /src/KAVE/services/KAVELANDING/package/scripts/KAVE-logo-thin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/KAVELANDING/package/scripts/KAVE-logo-thin.png -------------------------------------------------------------------------------- /src/KAVE/services/KAVELANDING/package/scripts/kavelanding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/KAVELANDING/package/scripts/kavelanding.py -------------------------------------------------------------------------------- /src/KAVE/services/KAVELANDING/package/scripts/kavescan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/KAVELANDING/package/scripts/kavescan.py -------------------------------------------------------------------------------- /src/KAVE/services/KAVELANDING/package/scripts/params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/KAVELANDING/package/scripts/params.py -------------------------------------------------------------------------------- /src/KAVE/services/KAVELANDING/package/templates/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/KAVELANDING/package/templates/LICENSE -------------------------------------------------------------------------------- /src/KAVE/services/KAVELANDING/package/templates/LICENSE-DOCUMENTATION-IMAGE-SUBCLAUSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/KAVELANDING/package/templates/LICENSE-DOCUMENTATION-IMAGE-SUBCLAUSE -------------------------------------------------------------------------------- /src/KAVE/services/KAVELANDING/package/templates/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/KAVELANDING/package/templates/NOTICE -------------------------------------------------------------------------------- /src/KAVE/services/KAVELANDING/package/templates/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/KAVELANDING/package/templates/bootstrap.min.css -------------------------------------------------------------------------------- /src/KAVE/services/KAVELANDING/package/templates/kavelanding.html.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/KAVELANDING/package/templates/kavelanding.html.j2 -------------------------------------------------------------------------------- /src/KAVE/services/KAVENAGIOS/configuration/kavenagios.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/KAVENAGIOS/configuration/kavenagios.xml -------------------------------------------------------------------------------- /src/KAVE/services/KAVENAGIOS/metainfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/KAVENAGIOS/metainfo.xml -------------------------------------------------------------------------------- /src/KAVE/services/KAVENAGIOS/package/scripts/nagios.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/KAVENAGIOS/package/scripts/nagios.py -------------------------------------------------------------------------------- /src/KAVE/services/KAVENAGIOS/package/scripts/nagios_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/KAVENAGIOS/package/scripts/nagios_client.py -------------------------------------------------------------------------------- /src/KAVE/services/KAVENAGIOS/package/scripts/params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/KAVENAGIOS/package/scripts/params.py -------------------------------------------------------------------------------- /src/KAVE/services/KAVENAGIOS/package/templates/nagios_cfg.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/KAVENAGIOS/package/templates/nagios_cfg.j2 -------------------------------------------------------------------------------- /src/KAVE/services/KAVETOOLBOX/configuration/kavetoolbox.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/KAVETOOLBOX/configuration/kavetoolbox.xml -------------------------------------------------------------------------------- /src/KAVE/services/KAVETOOLBOX/metainfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/KAVETOOLBOX/metainfo.xml -------------------------------------------------------------------------------- /src/KAVE/services/KAVETOOLBOX/package/scripts/kavetoolbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/KAVETOOLBOX/package/scripts/kavetoolbox.py -------------------------------------------------------------------------------- /src/KAVE/services/KAVETOOLBOX/package/scripts/kavetoolboxgate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/KAVETOOLBOX/package/scripts/kavetoolboxgate.py -------------------------------------------------------------------------------- /src/KAVE/services/KAVETOOLBOX/package/scripts/params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/KAVETOOLBOX/package/scripts/params.py -------------------------------------------------------------------------------- /src/KAVE/services/LCM/configuration/lcm_application.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/LCM/configuration/lcm_application.xml -------------------------------------------------------------------------------- /src/KAVE/services/LCM/configuration/lcm_logs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/LCM/configuration/lcm_logs.xml -------------------------------------------------------------------------------- /src/KAVE/services/LCM/configuration/lcm_security.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/LCM/configuration/lcm_security.xml -------------------------------------------------------------------------------- /src/KAVE/services/LCM/metainfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/LCM/metainfo.xml -------------------------------------------------------------------------------- /src/KAVE/services/LCM/package/scripts/lcmserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/LCM/package/scripts/lcmserver.py -------------------------------------------------------------------------------- /src/KAVE/services/LCM/package/scripts/lcmui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/LCM/package/scripts/lcmui.py -------------------------------------------------------------------------------- /src/KAVE/services/LCM/package/scripts/params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/LCM/package/scripts/params.py -------------------------------------------------------------------------------- /src/KAVE/services/LCM/package/templates/lcm-server.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/LCM/package/templates/lcm-server.service -------------------------------------------------------------------------------- /src/KAVE/services/LCM/package/templates/lcm-ui.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/LCM/package/templates/lcm-ui.service -------------------------------------------------------------------------------- /src/KAVE/services/LCM/quicklinks/quicklinks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/LCM/quicklinks/quicklinks.json -------------------------------------------------------------------------------- /src/KAVE/services/MAIL/configuration/mail.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/MAIL/configuration/mail.xml -------------------------------------------------------------------------------- /src/KAVE/services/MAIL/metainfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/MAIL/metainfo.xml -------------------------------------------------------------------------------- /src/KAVE/services/MAIL/package/scripts/dovecot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/MAIL/package/scripts/dovecot.py -------------------------------------------------------------------------------- /src/KAVE/services/MAIL/package/scripts/params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/MAIL/package/scripts/params.py -------------------------------------------------------------------------------- /src/KAVE/services/MAIL/package/scripts/postfix_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/MAIL/package/scripts/postfix_server.py -------------------------------------------------------------------------------- /src/KAVE/services/MAIL/package/templates/10-auth.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/MAIL/package/templates/10-auth.conf.j2 -------------------------------------------------------------------------------- /src/KAVE/services/MAIL/package/templates/10-mail.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/MAIL/package/templates/10-mail.conf.j2 -------------------------------------------------------------------------------- /src/KAVE/services/MAIL/package/templates/10-master.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/MAIL/package/templates/10-master.conf.j2 -------------------------------------------------------------------------------- /src/KAVE/services/MAIL/package/templates/dovecot.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/MAIL/package/templates/dovecot.conf.j2 -------------------------------------------------------------------------------- /src/KAVE/services/MAIL/package/templates/main.cf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/MAIL/package/templates/main.cf.j2 -------------------------------------------------------------------------------- /src/KAVE/services/MONGODB/configuration/mongodb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/MONGODB/configuration/mongodb.xml -------------------------------------------------------------------------------- /src/KAVE/services/MONGODB/metainfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/MONGODB/metainfo.xml -------------------------------------------------------------------------------- /src/KAVE/services/MONGODB/package/scripts/mongo_arbiter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/MONGODB/package/scripts/mongo_arbiter.py -------------------------------------------------------------------------------- /src/KAVE/services/MONGODB/package/scripts/mongo_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/MONGODB/package/scripts/mongo_base.py -------------------------------------------------------------------------------- /src/KAVE/services/MONGODB/package/scripts/mongo_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/MONGODB/package/scripts/mongo_client.py -------------------------------------------------------------------------------- /src/KAVE/services/MONGODB/package/scripts/mongo_master.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/MONGODB/package/scripts/mongo_master.py -------------------------------------------------------------------------------- /src/KAVE/services/MONGODB/package/scripts/params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/MONGODB/package/scripts/params.py -------------------------------------------------------------------------------- /src/KAVE/services/MONGODB/package/templates/mongo_replication.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/MONGODB/package/templates/mongo_replication.conf.j2 -------------------------------------------------------------------------------- /src/KAVE/services/MONGODB/package/templates/mongoclient.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/MONGODB/package/templates/mongoclient.conf.j2 -------------------------------------------------------------------------------- /src/KAVE/services/MONGODB/package/templates/mongodb.repo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/MONGODB/package/templates/mongodb.repo -------------------------------------------------------------------------------- /src/KAVE/services/MONGODB/package/templates/mongok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/MONGODB/package/templates/mongok -------------------------------------------------------------------------------- /src/KAVE/services/SONARQUBE/configuration/sonarqube.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/SONARQUBE/configuration/sonarqube.xml -------------------------------------------------------------------------------- /src/KAVE/services/SONARQUBE/metainfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/SONARQUBE/metainfo.xml -------------------------------------------------------------------------------- /src/KAVE/services/SONARQUBE/package/files/addMysqlUser.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/SONARQUBE/package/files/addMysqlUser.sh -------------------------------------------------------------------------------- /src/KAVE/services/SONARQUBE/package/files/removeMysqlUser.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/SONARQUBE/package/files/removeMysqlUser.sh -------------------------------------------------------------------------------- /src/KAVE/services/SONARQUBE/package/scripts/mysql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/SONARQUBE/package/scripts/mysql.py -------------------------------------------------------------------------------- /src/KAVE/services/SONARQUBE/package/scripts/mysql_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/SONARQUBE/package/scripts/mysql_users.py -------------------------------------------------------------------------------- /src/KAVE/services/SONARQUBE/package/scripts/mysql_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/SONARQUBE/package/scripts/mysql_utils.py -------------------------------------------------------------------------------- /src/KAVE/services/SONARQUBE/package/scripts/params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/SONARQUBE/package/scripts/params.py -------------------------------------------------------------------------------- /src/KAVE/services/SONARQUBE/package/scripts/sonarqube.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/SONARQUBE/package/scripts/sonarqube.py -------------------------------------------------------------------------------- /src/KAVE/services/SONARQUBE/package/scripts/sonarqube_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/SONARQUBE/package/scripts/sonarqube_runner.py -------------------------------------------------------------------------------- /src/KAVE/services/SONARQUBE/package/scripts/status_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/SONARQUBE/package/scripts/status_params.py -------------------------------------------------------------------------------- /src/KAVE/services/SONARQUBE/package/templates/sonar-runner.properties.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/SONARQUBE/package/templates/sonar-runner.properties.j2 -------------------------------------------------------------------------------- /src/KAVE/services/SONARQUBE/package/templates/sonar-runner.sh.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/SONARQUBE/package/templates/sonar-runner.sh.j2 -------------------------------------------------------------------------------- /src/KAVE/services/SONARQUBE/package/templates/sonar.properties.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/SONARQUBE/package/templates/sonar.properties.j2 -------------------------------------------------------------------------------- /src/KAVE/services/STORMSD/configuration/stormsd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/STORMSD/configuration/stormsd.xml -------------------------------------------------------------------------------- /src/KAVE/services/STORMSD/metainfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/STORMSD/metainfo.xml -------------------------------------------------------------------------------- /src/KAVE/services/STORMSD/package/scripts/params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/STORMSD/package/scripts/params.py -------------------------------------------------------------------------------- /src/KAVE/services/STORMSD/package/scripts/storm_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/STORMSD/package/scripts/storm_client.py -------------------------------------------------------------------------------- /src/KAVE/services/STORMSD/package/scripts/storm_drpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/STORMSD/package/scripts/storm_drpc.py -------------------------------------------------------------------------------- /src/KAVE/services/STORMSD/package/scripts/storm_logviewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/STORMSD/package/scripts/storm_logviewer.py -------------------------------------------------------------------------------- /src/KAVE/services/STORMSD/package/scripts/storm_nimbus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/STORMSD/package/scripts/storm_nimbus.py -------------------------------------------------------------------------------- /src/KAVE/services/STORMSD/package/scripts/storm_sd_generic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/STORMSD/package/scripts/storm_sd_generic.py -------------------------------------------------------------------------------- /src/KAVE/services/STORMSD/package/scripts/storm_supervisor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/STORMSD/package/scripts/storm_supervisor.py -------------------------------------------------------------------------------- /src/KAVE/services/STORMSD/package/scripts/ui_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/STORMSD/package/scripts/ui_server.py -------------------------------------------------------------------------------- /src/KAVE/services/STORMSD/package/templates/cluster.xml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/STORMSD/package/templates/cluster.xml.j2 -------------------------------------------------------------------------------- /src/KAVE/services/STORMSD/package/templates/prog.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/STORMSD/package/templates/prog.conf -------------------------------------------------------------------------------- /src/KAVE/services/STORMSD/package/templates/supervisor.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/STORMSD/package/templates/supervisor.j2 -------------------------------------------------------------------------------- /src/KAVE/services/STORMSD/package/templates/supervisord.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/STORMSD/package/templates/supervisord.conf.j2 -------------------------------------------------------------------------------- /src/KAVE/services/TWIKI/configuration/twiki.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/TWIKI/configuration/twiki.xml -------------------------------------------------------------------------------- /src/KAVE/services/TWIKI/metainfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/TWIKI/metainfo.xml -------------------------------------------------------------------------------- /src/KAVE/services/TWIKI/package/scripts/params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/TWIKI/package/scripts/params.py -------------------------------------------------------------------------------- /src/KAVE/services/TWIKI/package/scripts/twiki.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/TWIKI/package/scripts/twiki.py -------------------------------------------------------------------------------- /src/KAVE/services/TWIKI/package/templates/LocalLib.cfg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/TWIKI/package/templates/LocalLib.cfg.txt -------------------------------------------------------------------------------- /src/KAVE/services/TWIKI/package/templates/LocalSite.cfg.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/TWIKI/package/templates/LocalSite.cfg.j2 -------------------------------------------------------------------------------- /src/KAVE/services/TWIKI/package/templates/authtest.html.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/TWIKI/package/templates/authtest.html.j2 -------------------------------------------------------------------------------- /src/KAVE/services/WILDFLY/configuration/wildfly.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/WILDFLY/configuration/wildfly.xml -------------------------------------------------------------------------------- /src/KAVE/services/WILDFLY/metainfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/WILDFLY/metainfo.xml -------------------------------------------------------------------------------- /src/KAVE/services/WILDFLY/package/scripts/params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/WILDFLY/package/scripts/params.py -------------------------------------------------------------------------------- /src/KAVE/services/WILDFLY/package/scripts/wildfly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/WILDFLY/package/scripts/wildfly.py -------------------------------------------------------------------------------- /src/KAVE/services/WILDFLY/package/templates/wildfly.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/WILDFLY/package/templates/wildfly.j2 -------------------------------------------------------------------------------- /src/KAVE/services/stack_advisor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/KAVE/services/stack_advisor.py -------------------------------------------------------------------------------- /src/shared/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/shared/README.md -------------------------------------------------------------------------------- /src/shared/kavecommon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/src/shared/kavecommon.py -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/base/README.md: -------------------------------------------------------------------------------- 1 | Test libraries used in unit tests. -------------------------------------------------------------------------------- /tests/base/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/base/base.py -------------------------------------------------------------------------------- /tests/deployment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/deployment/README.md -------------------------------------------------------------------------------- /tests/deployment/all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/deployment/all.py -------------------------------------------------------------------------------- /tests/deployment/blueprints/micro.aws.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/deployment/blueprints/micro.aws.json -------------------------------------------------------------------------------- /tests/deployment/knownami.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/deployment/knownami.py -------------------------------------------------------------------------------- /tests/deployment/micro_cluster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/deployment/micro_cluster.py -------------------------------------------------------------------------------- /tests/deployment/one_centos_dev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/deployment/one_centos_dev.py -------------------------------------------------------------------------------- /tests/deployment/single_machine_cluster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/deployment/single_machine_cluster.py -------------------------------------------------------------------------------- /tests/docker/dockerbase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/docker/dockerbase.py -------------------------------------------------------------------------------- /tests/docker/localdocker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/docker/localdocker.py -------------------------------------------------------------------------------- /tests/integration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/integration/README.md -------------------------------------------------------------------------------- /tests/integration/all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/integration/all.py -------------------------------------------------------------------------------- /tests/integration/blueprints/AIRFLOW.aws.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/integration/blueprints/AIRFLOW.aws.json -------------------------------------------------------------------------------- /tests/integration/blueprints/AIRFLOW.blueprint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/integration/blueprints/AIRFLOW.blueprint.json -------------------------------------------------------------------------------- /tests/integration/blueprints/AIRFLOW.cluster.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/integration/blueprints/AIRFLOW.cluster.json -------------------------------------------------------------------------------- /tests/integration/blueprints/ESKAPADE.aws.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/integration/blueprints/ESKAPADE.aws.json -------------------------------------------------------------------------------- /tests/integration/blueprints/ESKAPADE.blueprint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/integration/blueprints/ESKAPADE.blueprint.json -------------------------------------------------------------------------------- /tests/integration/blueprints/ESKAPADE.cluster.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/integration/blueprints/ESKAPADE.cluster.json -------------------------------------------------------------------------------- /tests/integration/blueprints/FREEIPA.aws.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/integration/blueprints/FREEIPA.aws.json -------------------------------------------------------------------------------- /tests/integration/blueprints/FREEIPA.blueprint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/integration/blueprints/FREEIPA.blueprint.json -------------------------------------------------------------------------------- /tests/integration/blueprints/FREEIPA.cluster.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/integration/blueprints/FREEIPA.cluster.json -------------------------------------------------------------------------------- /tests/integration/blueprints/GITLAB.aws.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/integration/blueprints/GITLAB.aws.json -------------------------------------------------------------------------------- /tests/integration/blueprints/GITLAB.blueprint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/integration/blueprints/GITLAB.blueprint.json -------------------------------------------------------------------------------- /tests/integration/blueprints/GITLAB.cluster.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/integration/blueprints/GITLAB.cluster.json -------------------------------------------------------------------------------- /tests/integration/blueprints/KAVELANDING.aws.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/integration/blueprints/KAVELANDING.aws.json -------------------------------------------------------------------------------- /tests/integration/blueprints/KAVELANDING.blueprint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/integration/blueprints/KAVELANDING.blueprint.json -------------------------------------------------------------------------------- /tests/integration/blueprints/KAVELANDING.cluster.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/integration/blueprints/KAVELANDING.cluster.json -------------------------------------------------------------------------------- /tests/integration/blueprints/KAVENAGIOS.aws.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/integration/blueprints/KAVENAGIOS.aws.json -------------------------------------------------------------------------------- /tests/integration/blueprints/KAVENAGIOS.blueprint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/integration/blueprints/KAVENAGIOS.blueprint.json -------------------------------------------------------------------------------- /tests/integration/blueprints/KAVENAGIOS.cluster.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/integration/blueprints/KAVENAGIOS.cluster.json -------------------------------------------------------------------------------- /tests/integration/blueprints/LCM.aws.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/integration/blueprints/LCM.aws.json -------------------------------------------------------------------------------- /tests/integration/blueprints/LCM.blueprint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/integration/blueprints/LCM.blueprint.json -------------------------------------------------------------------------------- /tests/integration/blueprints/LCM.cluster.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/integration/blueprints/LCM.cluster.json -------------------------------------------------------------------------------- /tests/integration/blueprints/MONGODBREPLICA.aws.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/integration/blueprints/MONGODBREPLICA.aws.json -------------------------------------------------------------------------------- /tests/integration/blueprints/MONGODBREPLICA.blueprint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/integration/blueprints/MONGODBREPLICA.blueprint.json -------------------------------------------------------------------------------- /tests/integration/blueprints/MONGODBREPLICA.cluster.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/integration/blueprints/MONGODBREPLICA.cluster.json -------------------------------------------------------------------------------- /tests/integration/blueprints/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/integration/blueprints/README.md -------------------------------------------------------------------------------- /tests/integration/blueprints/SONARQUBE.aws.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/integration/blueprints/SONARQUBE.aws.json -------------------------------------------------------------------------------- /tests/integration/blueprints/SONARQUBE.blueprint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/integration/blueprints/SONARQUBE.blueprint.json -------------------------------------------------------------------------------- /tests/integration/blueprints/SONARQUBE.cluster.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/integration/blueprints/SONARQUBE.cluster.json -------------------------------------------------------------------------------- /tests/integration/blueprints/STORM.aws.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/integration/blueprints/STORM.aws.json -------------------------------------------------------------------------------- /tests/integration/blueprints/STORM.blueprint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/integration/blueprints/STORM.blueprint.json -------------------------------------------------------------------------------- /tests/integration/blueprints/STORM.cluster.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/integration/blueprints/STORM.cluster.json -------------------------------------------------------------------------------- /tests/integration/blueprints/TWIKI.aws.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/integration/blueprints/TWIKI.aws.json -------------------------------------------------------------------------------- /tests/integration/blueprints/TWIKI.blueprint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/integration/blueprints/TWIKI.blueprint.json -------------------------------------------------------------------------------- /tests/integration/blueprints/TWIKI.cluster.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/integration/blueprints/TWIKI.cluster.json -------------------------------------------------------------------------------- /tests/integration/blueprints/default.aws.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/integration/blueprints/default.aws.json -------------------------------------------------------------------------------- /tests/integration/blueprints/default.blueprint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/integration/blueprints/default.blueprint.json -------------------------------------------------------------------------------- /tests/integration/blueprints/default.cluster.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/integration/blueprints/default.cluster.json -------------------------------------------------------------------------------- /tests/integration/blueprints/exampledev.aws.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/integration/blueprints/exampledev.aws.json -------------------------------------------------------------------------------- /tests/integration/blueprints/exampledev.blueprint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/integration/blueprints/exampledev.blueprint.json -------------------------------------------------------------------------------- /tests/integration/blueprints/exampledev.cluster.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/integration/blueprints/exampledev.cluster.json -------------------------------------------------------------------------------- /tests/integration/blueprints/examplehadoop.aws.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/integration/blueprints/examplehadoop.aws.json -------------------------------------------------------------------------------- /tests/integration/blueprints/examplehadoop.blueprint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/integration/blueprints/examplehadoop.blueprint.json -------------------------------------------------------------------------------- /tests/integration/blueprints/examplehadoop.cluster.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/integration/blueprints/examplehadoop.cluster.json -------------------------------------------------------------------------------- /tests/integration/blueprints/examplelambda.aws.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/integration/blueprints/examplelambda.aws.json -------------------------------------------------------------------------------- /tests/integration/blueprints/examplelambda.blueprint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/integration/blueprints/examplelambda.blueprint.json -------------------------------------------------------------------------------- /tests/integration/blueprints/examplelambda.cluster.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/integration/blueprints/examplelambda.cluster.json -------------------------------------------------------------------------------- /tests/integration/blueprints/sonar-ldap.aws.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/integration/blueprints/sonar-ldap.aws.json -------------------------------------------------------------------------------- /tests/integration/blueprints/sonar-ldap.blueprint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/integration/blueprints/sonar-ldap.blueprint.json -------------------------------------------------------------------------------- /tests/integration/blueprints/sonar-ldap.cluster.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/integration/blueprints/sonar-ldap.cluster.json -------------------------------------------------------------------------------- /tests/integration/clusters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/integration/clusters.py -------------------------------------------------------------------------------- /tests/integration/kerberostest.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/integration/kerberostest.csv -------------------------------------------------------------------------------- /tests/integration/test_eskapade_branch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/integration/test_eskapade_branch.py -------------------------------------------------------------------------------- /tests/kill_recent_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/kill_recent_tests.py -------------------------------------------------------------------------------- /tests/release/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/release/README.md -------------------------------------------------------------------------------- /tests/release/_compile_root_custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/release/_compile_root_custom.py -------------------------------------------------------------------------------- /tests/release/all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/release/all.py -------------------------------------------------------------------------------- /tests/release/checkpackage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/release/checkpackage.py -------------------------------------------------------------------------------- /tests/release/kavetoolbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/release/kavetoolbox.py -------------------------------------------------------------------------------- /tests/release/ktb_package_all_root_os.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/release/ktb_package_all_root_os.py -------------------------------------------------------------------------------- /tests/release/ktb_package_root_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/release/ktb_package_root_version.py -------------------------------------------------------------------------------- /tests/service/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/service/README.md -------------------------------------------------------------------------------- /tests/service/all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/service/all.py -------------------------------------------------------------------------------- /tests/service/blueprints/ARCHIVA.blueprint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/service/blueprints/ARCHIVA.blueprint.json -------------------------------------------------------------------------------- /tests/service/blueprints/ESKAPADE.blueprint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/service/blueprints/ESKAPADE.blueprint.json -------------------------------------------------------------------------------- /tests/service/blueprints/JENKINS.blueprint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/service/blueprints/JENKINS.blueprint.json -------------------------------------------------------------------------------- /tests/service/blueprints/KAVELANDING.blueprint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/service/blueprints/KAVELANDING.blueprint.json -------------------------------------------------------------------------------- /tests/service/blueprints/KAVENAGIOS.blueprint2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/service/blueprints/KAVENAGIOS.blueprint2.json -------------------------------------------------------------------------------- /tests/service/blueprints/LCM.blueprint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/service/blueprints/LCM.blueprint.json -------------------------------------------------------------------------------- /tests/service/blueprints/MAIL.blueprint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/service/blueprints/MAIL.blueprint.json -------------------------------------------------------------------------------- /tests/service/blueprints/MONGODB.blueprint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/service/blueprints/MONGODB.blueprint.json -------------------------------------------------------------------------------- /tests/service/blueprints/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/service/blueprints/README.md -------------------------------------------------------------------------------- /tests/service/blueprints/SONARQUBE.blueprint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/service/blueprints/SONARQUBE.blueprint.json -------------------------------------------------------------------------------- /tests/service/blueprints/STORM.blueprint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/service/blueprints/STORM.blueprint.json -------------------------------------------------------------------------------- /tests/service/blueprints/TWIKI.blueprint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/service/blueprints/TWIKI.blueprint.json -------------------------------------------------------------------------------- /tests/service/blueprints/WILDFLY.blueprint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/service/blueprints/WILDFLY.blueprint.json -------------------------------------------------------------------------------- /tests/service/blueprints/default.aws.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/service/blueprints/default.aws.json -------------------------------------------------------------------------------- /tests/service/blueprints/default.cluster.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/service/blueprints/default.cluster.json -------------------------------------------------------------------------------- /tests/service/kerberostest.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/service/kerberostest.csv -------------------------------------------------------------------------------- /tests/service/remote_blueprint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/service/remote_blueprint.py -------------------------------------------------------------------------------- /tests/service/remote_service_with_blueprint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/service/remote_service_with_blueprint.py -------------------------------------------------------------------------------- /tests/service/remote_service_with_servicesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/service/remote_service_with_servicesh.py -------------------------------------------------------------------------------- /tests/service/test_kavetoolbox_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/service/test_kavetoolbox_head.py -------------------------------------------------------------------------------- /tests/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/test.sh -------------------------------------------------------------------------------- /tests/unit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/unit/README.md -------------------------------------------------------------------------------- /tests/unit/all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/unit/all.py -------------------------------------------------------------------------------- /tests/unit/checkdistkclib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/unit/checkdistkclib.py -------------------------------------------------------------------------------- /tests/unit/checkpep8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/unit/checkpep8.py -------------------------------------------------------------------------------- /tests/unit/deploylib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/unit/deploylib.py -------------------------------------------------------------------------------- /tests/unit/jsonbpchecks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/unit/jsonbpchecks.py -------------------------------------------------------------------------------- /tests/unit/kclib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/unit/kclib.py -------------------------------------------------------------------------------- /tests/unit/license.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/unit/license.py -------------------------------------------------------------------------------- /tests/unit/mock_ambari/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/unit/mock_ambari/__init__.py -------------------------------------------------------------------------------- /tests/unit/mock_ambari/ambari_commons/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/unit/mock_ambari/ambari_commons/__init__.py -------------------------------------------------------------------------------- /tests/unit/mock_ambari/ambari_commons/os_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/unit/mock_ambari/ambari_commons/os_check.py -------------------------------------------------------------------------------- /tests/unit/mock_ambari/resource_management/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/unit/mock_ambari/resource_management/__init__.py -------------------------------------------------------------------------------- /tests/unit/mock_ambari/resource_management/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/unit/mock_ambari/resource_management/core/__init__.py -------------------------------------------------------------------------------- /tests/unit/mock_ambari/resource_management/core/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/unit/mock_ambari/resource_management/core/base.py -------------------------------------------------------------------------------- /tests/unit/mock_ambari/resource_management/core/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/unit/mock_ambari/resource_management/core/exceptions.py -------------------------------------------------------------------------------- /tests/unit/mock_ambari/resource_management/core/source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/unit/mock_ambari/resource_management/core/source.py -------------------------------------------------------------------------------- /tests/unit/mock_ambari/resource_management/core/system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/unit/mock_ambari/resource_management/core/system.py -------------------------------------------------------------------------------- /tests/unit/mock_ambari/resource_management/libraries/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/unit/mock_ambari/resource_management/libraries/__init__.py -------------------------------------------------------------------------------- /tests/unit/mock_ambari/resource_management/libraries/functions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/unit/mock_ambari/resource_management/libraries/functions/__init__.py -------------------------------------------------------------------------------- /tests/unit/mock_ambari/resource_management/libraries/functions/default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/unit/mock_ambari/resource_management/libraries/functions/default.py -------------------------------------------------------------------------------- /tests/unit/mock_ambari/resource_management/libraries/functions/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/unit/mock_ambari/resource_management/libraries/functions/version.py -------------------------------------------------------------------------------- /tests/unit/mock_ambari/resource_management/libraries/script/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/unit/mock_ambari/resource_management/libraries/script/__init__.py -------------------------------------------------------------------------------- /tests/unit/mock_ambari/resource_management/libraries/script/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/unit/mock_ambari/resource_management/libraries/script/script.py -------------------------------------------------------------------------------- /tests/unit/mock_ambari/socket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/unit/mock_ambari/socket.py -------------------------------------------------------------------------------- /tests/unit/pep8.conf: -------------------------------------------------------------------------------- 1 | [pep8] 2 | ignore = W503,E402,E901 3 | max-line-length = 120 -------------------------------------------------------------------------------- /tests/unit/pep8functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/unit/pep8functions.py -------------------------------------------------------------------------------- /tests/unit/pep8variables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/unit/pep8variables.py -------------------------------------------------------------------------------- /tests/unit/pyfilenames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/unit/pyfilenames.py -------------------------------------------------------------------------------- /tests/unit/repoimports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/unit/repoimports.py -------------------------------------------------------------------------------- /tests/unit/scan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/unit/scan.py -------------------------------------------------------------------------------- /tests/unit/sedtests/fake_extension.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/unit/sedtests/fake_extension.sh -------------------------------------------------------------------------------- /tests/unit/sedtests/ignoredir/ignoresubdir/matchfile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/unit/sedtests/ignoredir/ignoresubdir/matchfile.txt -------------------------------------------------------------------------------- /tests/unit/sedtests/ignorefile.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/sedtests/subdira/subdirb/matchfile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/unit/sedtests/subdira/subdirb/matchfile.txt -------------------------------------------------------------------------------- /tests/unit/servicesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/unit/servicesh.py -------------------------------------------------------------------------------- /tests/unit/testpythonimport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/unit/testpythonimport.py -------------------------------------------------------------------------------- /tests/unit/testresourcewizard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/unit/testresourcewizard.py -------------------------------------------------------------------------------- /tests/unit/testversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/unit/testversion.py -------------------------------------------------------------------------------- /tests/unit/verifyxml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaveIO/AmbariKave/HEAD/tests/unit/verifyxml.py --------------------------------------------------------------------------------