├── .eslintrc.json ├── .gitignore ├── .npmrc-auth ├── .prettierrc ├── .vscode └── settings.json ├── LICENSE ├── Makefile ├── Pipfile ├── Pipfile.lock ├── README.md ├── ansible.cfg ├── ansible ├── clean_infra.yml ├── infra.yml ├── infra_and_operation.yml ├── main.yml ├── operation.yml ├── readme.md ├── requirements │ └── requirements.yml └── roles │ ├── binary-push │ ├── .yamllint │ ├── defaults │ │ └── main.yml │ └── tasks │ │ ├── main.yml │ │ └── push.yml │ ├── binary-rust-compile │ ├── .yamllint │ ├── defaults │ │ └── main.yml │ └── tasks │ │ ├── 0_select.yml │ │ ├── 1_build_binary.yml │ │ ├── 1_fetch_binary.yml │ │ └── main.yml │ ├── binary-service │ ├── .yamllint │ ├── defaults │ │ └── main.yml │ ├── tasks │ │ ├── main.yml │ │ └── setup_service.yml │ └── templates │ │ └── template.service.j2 │ ├── builder-build-bin │ ├── .yamllint │ ├── handlers │ │ └── main.yml │ ├── meta │ │ └── main.yml │ ├── molecule │ │ └── default │ │ │ ├── Dockerfile.j2 │ │ │ ├── INSTALL.rst │ │ │ ├── molecule.yml │ │ │ ├── playbook.yml │ │ │ ├── requirements.yml │ │ │ └── tests │ │ │ ├── test_default.py │ │ │ └── test_default.pyc │ ├── tasks │ │ ├── do_build.yml │ │ ├── do_build_local.yml │ │ ├── ensure_prerequisites.yml │ │ ├── fetch_binary.yml │ │ └── main.yml │ └── vars │ │ └── main.yml │ ├── builder-build-edgeware-spec │ ├── .yamllint │ ├── defaults │ │ └── main.yml │ └── tasks │ │ └── main.yml │ ├── builder-build-spec │ ├── .yamllint │ ├── handlers │ │ └── main.yml │ ├── meta │ │ └── main.yml │ ├── molecule │ │ └── default │ │ │ ├── Dockerfile.j2 │ │ │ ├── INSTALL.rst │ │ │ ├── molecule.yml │ │ │ ├── playbook.yml │ │ │ └── tests │ │ │ ├── test_default.py │ │ │ └── test_default.pyc │ ├── tasks │ │ ├── 1_extract_default_spec.yml │ │ ├── 2_update_spec.yml │ │ ├── 3_create_raw_spec.yml │ │ └── main.yml │ └── vars │ │ └── main.yml │ ├── control-prepare │ ├── .yamllint │ └── tasks │ │ └── main.yml │ ├── gantree-debug │ ├── .yamllint │ ├── tasks │ │ └── main.yml │ └── vars │ │ └── main.yml │ ├── infra-aws-node │ ├── .yamllint │ ├── defaults │ │ └── main.yml │ └── tasks │ │ ├── 0_select.yml │ │ ├── 1_absent.yml │ │ ├── 1_present.yml │ │ ├── 2_eip.yml │ │ ├── 2_instance.yml │ │ ├── 2_instance_info.yml │ │ ├── 2_key.yml │ │ ├── 2_security_group.yml │ │ ├── 2_security_group_info.yml │ │ ├── 2_vpc_igw.yml │ │ ├── 2_vpc_igw_info.yml │ │ ├── 2_vpc_net.yml │ │ ├── 2_vpc_net_info.yml │ │ ├── 2_vpc_route_table.yml │ │ ├── 2_vpc_route_table_info.yml │ │ ├── 2_vpc_subnet.yml │ │ ├── 2_vpc_subnet_info.yml │ │ └── main.yml │ ├── infra-build-multi │ ├── .yamllint │ ├── defaults │ │ └── main.yml │ └── tasks │ │ └── main.yml │ ├── infra-do-node │ ├── .yamllint │ ├── defaults │ │ └── main.yml │ └── tasks │ │ ├── 0_select.yml │ │ ├── 1_absent.yml │ │ ├── 1_present.yml │ │ ├── 2_droplet.yml │ │ ├── 2_firewall.yml │ │ ├── 2_gantree_tags.yml │ │ ├── 2_sshkey.yml │ │ ├── 2_sshkey_info.yml │ │ └── main.yml │ ├── infra-gcp-node │ ├── .yamllint │ ├── defaults │ │ └── main.yml │ └── tasks │ │ ├── 0_select.yml │ │ ├── 1_create.yml │ │ ├── 1_destroy.yml │ │ ├── 2_address.yml │ │ ├── 2_disk.yml │ │ ├── 2_firewall.yml │ │ ├── 2_gantree_tags.yml │ │ ├── 2_instance.yml │ │ ├── 2_network.yml │ │ └── main.yml │ ├── mock-build-bin │ ├── .yamllint │ ├── defaults │ │ └── main.yml │ └── tasks │ │ └── main.yml │ ├── validator-env-gantree │ ├── .yamllint │ ├── handlers │ │ └── main.yml │ ├── meta │ │ └── main.yml │ ├── molecule │ │ └── default │ │ │ ├── Dockerfile.j2 │ │ │ ├── INSTALL.rst │ │ │ ├── molecule.yml │ │ │ ├── playbook.yml │ │ │ └── tests │ │ │ ├── test_default.py │ │ │ └── test_default.pyc │ ├── tasks │ │ └── main.yml │ └── vars │ │ └── main.yml │ ├── validator-gen-keys-retreive │ └── tasks │ │ └── main.yml │ ├── validator-gen-keys │ ├── defaults │ │ └── main.yml │ ├── meta │ │ └── main.yml │ ├── molecule │ │ └── default │ │ │ ├── Dockerfile.j2 │ │ │ ├── INSTALL.rst │ │ │ ├── molecule.yml │ │ │ ├── playbook.yml │ │ │ ├── tests │ │ │ ├── test_default.py │ │ │ └── test_default.pyc │ │ │ └── testvars.yml │ ├── tasks │ │ ├── main.yml │ │ ├── mnemonic.yml │ │ └── session_info.yml │ └── templates │ │ ├── service_env.j2 │ │ └── session.yaml.j2 │ ├── validator-key-insert │ └── tasks │ │ └── main.yml │ ├── validator-push-bin │ ├── .yamllint │ ├── meta │ │ └── main.yml │ ├── molecule │ │ └── default │ │ │ ├── Dockerfile.j2 │ │ │ ├── INSTALL.rst │ │ │ ├── molecule.yml │ │ │ ├── playbook.yml │ │ │ └── tests │ │ │ ├── test_default.py │ │ │ └── test_default.pyc │ └── tasks │ │ └── main.yml │ ├── validator-push-spec │ ├── .yamllint │ ├── handlers │ │ └── main.yml │ ├── meta │ │ └── main.yml │ ├── molecule │ │ └── default │ │ │ ├── Dockerfile.j2 │ │ │ ├── INSTALL.rst │ │ │ ├── molecule.yml │ │ │ ├── playbook.yml │ │ │ └── tests │ │ │ ├── test_default.py │ │ │ └── test_default.pyc │ ├── tasks │ │ └── main.yml │ └── vars │ │ └── main.yml │ ├── validator-service-restart │ └── tasks │ │ └── main.yml │ ├── validator-service │ ├── .yamllint │ ├── handlers │ │ └── main.yml │ ├── meta │ │ └── main.yml │ ├── molecule │ │ └── default │ │ │ ├── Dockerfile.j2 │ │ │ ├── INSTALL.rst │ │ │ ├── molecule.yml │ │ │ ├── playbook.yml │ │ │ └── tests │ │ │ ├── test_default.py │ │ │ └── test_default.pyc │ ├── tasks │ │ └── main.yml │ ├── templates │ │ └── substrate.service.j2 │ └── vars │ │ └── main.yml │ ├── z-test-all │ ├── .yamllint │ ├── handlers │ │ └── main.yml │ ├── meta │ │ └── main.yml │ ├── molecule │ │ ├── binary-compile │ │ │ ├── Dockerfile.j2 │ │ │ ├── INSTALL.rst │ │ │ ├── molecule.yml │ │ │ ├── playbook.yml │ │ │ └── tests │ │ │ │ └── test_default.py │ │ ├── binary-fetch │ │ │ ├── Dockerfile.j2 │ │ │ ├── INSTALL.rst │ │ │ ├── molecule.yml │ │ │ ├── playbook.yml │ │ │ └── tests │ │ │ │ └── test_default.py │ │ ├── tele-compile │ │ │ ├── Dockerfile.j2 │ │ │ ├── INSTALL.rst │ │ │ ├── converge.yml │ │ │ ├── molecule.yml │ │ │ └── tests │ │ │ │ └── test_default.py │ │ └── tele-fetch │ │ │ ├── Dockerfile.j2 │ │ │ ├── INSTALL.rst │ │ │ ├── converge.yml │ │ │ ├── molecule.yml │ │ │ └── tests │ │ │ └── test_default.py │ ├── tasks │ │ └── main.yml │ └── vars │ │ └── main.yml │ └── z-test-autobuilder │ ├── .yamllint │ └── molecule │ └── default │ ├── Dockerfile.j2 │ ├── INSTALL.rst │ ├── molecule.yml │ ├── playbook.yml │ └── tests │ ├── test_default.py │ └── test_default.pyc ├── docs ├── _generated │ └── gantree.md ├── gantree_config │ ├── basics.md │ ├── limitations.md │ ├── samples.md │ ├── schema.md │ └── tutorial.md ├── library │ ├── limitations.md │ ├── quick_start.md │ └── usage.md ├── loose │ ├── ansible_flow_reqs.md │ ├── debugging_guidelines.md │ ├── provider_disk_configuration.md │ ├── tags.md │ └── tests.md └── readme.md ├── examples ├── clean-example.js ├── readme.md └── sync-example.js ├── gantree-lib-nodejs.code-workspace ├── inventory └── readme.md ├── inventorySegments ├── gantree.sh ├── inactive │ ├── digital_ocean.ini │ └── digital_ocean.py └── readme.md ├── package.json ├── python_requirements.txt ├── samples ├── chainspec │ └── chainspec.sample.json ├── config │ ├── dev │ │ ├── 2-0_schema.sample.json │ │ ├── 20200311_debug_gcp.json │ │ ├── 20200316_debug_aws.json │ │ ├── 20200316_polkadot_fetch_do.sample.json │ │ ├── 20200316_single_aws.json │ │ ├── 20200317_debug_do.json │ │ ├── 20200319_compile_edgeware.sample.json │ │ ├── 20200319_edgeware_preset_do.sample.json │ │ ├── 20200319_polkadot_preset_do.sample.json │ │ ├── 20200324_double_multi.json │ │ ├── ansible_aws.sample.json │ │ ├── big_aws.sample.json │ │ ├── big_do.sample.json │ │ ├── cheap_aws.sample.json │ │ ├── cheap_do.sample.json │ │ ├── cheap_gcp.sample.json │ │ ├── debug_do.json │ │ ├── double_gcp.sample.json │ │ ├── fetch_aws.sample.json │ │ ├── fetch_aws_ansible.sample.json │ │ ├── invalid_config.sample.json │ │ ├── multi_provider.sample.json │ │ └── polkadot_do.sample.json │ ├── fetch │ │ ├── polkadot_aws.sample.json │ │ ├── polkadot_do.sample.json │ │ └── polkadot_gcp.sample.json │ ├── preset │ │ ├── edgeware_do.sample.json │ │ ├── polkadot_aws.sample.json │ │ ├── polkadot_do.sample.json │ │ ├── polkadot_gcp.sample.json │ │ ├── westend_0.7.28_do.sample.json │ │ └── westend_master_do.sample.json │ └── repository │ │ ├── polkadot_aws.sample.json │ │ ├── polkadot_do.sample.json │ │ ├── polkadot_gcp.sample.json │ │ └── westend_master_do.sample.json ├── rawchainspec │ └── kusama-example.sample.json ├── readme.md └── validatorspec │ ├── toms-validatorspec.sample.json │ ├── validatorspec-20200402.json │ └── validatorspec.sample.json └── src ├── index.js ├── lib ├── OLD │ ├── actions │ │ ├── clean.js │ │ └── sync.js │ ├── application.js │ ├── async.js │ ├── clients │ │ ├── ansible.js │ │ └── terraform.js │ ├── env.js │ ├── gantreeOld.js │ ├── platform.js │ ├── preprocess.js │ ├── project.js │ ├── ssh.js │ └── tpl.js ├── ansible │ ├── commands.js │ ├── extract.js │ ├── index.js │ └── inventory │ │ ├── index.js │ │ └── namespace.js ├── check.js ├── checks │ ├── config.js │ ├── envVars.js │ └── index.js ├── cmd.js ├── config │ ├── extract.js │ ├── index.js │ ├── inject.js │ ├── preprocess.js │ ├── preprocessors │ │ ├── boolToString.js │ │ ├── index.js │ │ └── injectEnvVars.js │ ├── rawRead.js │ └── validate.js ├── counter.js ├── dataManip │ ├── binary │ │ ├── index.js │ │ └── method │ │ │ ├── fetch.js │ │ │ ├── fetch.unit.test.js │ │ │ ├── index.js │ │ │ ├── local.js │ │ │ ├── preset.js │ │ │ └── repository.js │ ├── configAws.js │ ├── configDo.js │ ├── configGcp.js │ ├── inject.js │ ├── inventoryAws.js │ ├── inventoryDo.js │ ├── inventoryGcp.js │ ├── key-combine.js │ ├── makeInventory.js │ └── structure │ │ ├── envPython.js │ │ ├── index.js │ │ ├── sharedVars.js │ │ └── skeleton.js ├── error.js ├── error.unit.test.js ├── files.js ├── gantree.js ├── logging.js ├── packageMeta.js ├── pathHelpers.js └── utils │ ├── hash.js │ ├── options.js │ ├── paths.js │ ├── ssh.js │ ├── stdout.js │ └── types.js ├── readme.md ├── schemas ├── gantree_config_schema.json └── obsolete │ └── gantree_config_schema_v1.json ├── scripts ├── cli_inject.js ├── cli_keycombine.js └── cli_repeat_inventory.js └── static_data ├── binary_presets.json ├── error_meta.json ├── gantree_config_defaults.json ├── gantree_config_defaults_backup.json ├── provider_env_vars.json └── provider_specific_keys.json /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc-auth: -------------------------------------------------------------------------------- 1 | //registry.npmjs.org/:_authToken=${NPM_TOKEN} -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/Makefile -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/README.md -------------------------------------------------------------------------------- /ansible.cfg: -------------------------------------------------------------------------------- 1 | [defaults] 2 | force_valid_group_names = silently 3 | -------------------------------------------------------------------------------- /ansible/clean_infra.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/clean_infra.yml -------------------------------------------------------------------------------- /ansible/infra.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/infra.yml -------------------------------------------------------------------------------- /ansible/infra_and_operation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/infra_and_operation.yml -------------------------------------------------------------------------------- /ansible/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/main.yml -------------------------------------------------------------------------------- /ansible/operation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/operation.yml -------------------------------------------------------------------------------- /ansible/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/readme.md -------------------------------------------------------------------------------- /ansible/requirements/requirements.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/requirements/requirements.yml -------------------------------------------------------------------------------- /ansible/roles/binary-push/.yamllint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/binary-push/.yamllint -------------------------------------------------------------------------------- /ansible/roles/binary-push/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/binary-push/defaults/main.yml -------------------------------------------------------------------------------- /ansible/roles/binary-push/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/binary-push/tasks/main.yml -------------------------------------------------------------------------------- /ansible/roles/binary-push/tasks/push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/binary-push/tasks/push.yml -------------------------------------------------------------------------------- /ansible/roles/binary-rust-compile/.yamllint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/binary-rust-compile/.yamllint -------------------------------------------------------------------------------- /ansible/roles/binary-rust-compile/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/binary-rust-compile/defaults/main.yml -------------------------------------------------------------------------------- /ansible/roles/binary-rust-compile/tasks/0_select.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/binary-rust-compile/tasks/0_select.yml -------------------------------------------------------------------------------- /ansible/roles/binary-rust-compile/tasks/1_build_binary.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/binary-rust-compile/tasks/1_build_binary.yml -------------------------------------------------------------------------------- /ansible/roles/binary-rust-compile/tasks/1_fetch_binary.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/binary-rust-compile/tasks/1_fetch_binary.yml -------------------------------------------------------------------------------- /ansible/roles/binary-rust-compile/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/binary-rust-compile/tasks/main.yml -------------------------------------------------------------------------------- /ansible/roles/binary-service/.yamllint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/binary-service/.yamllint -------------------------------------------------------------------------------- /ansible/roles/binary-service/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/binary-service/defaults/main.yml -------------------------------------------------------------------------------- /ansible/roles/binary-service/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/binary-service/tasks/main.yml -------------------------------------------------------------------------------- /ansible/roles/binary-service/tasks/setup_service.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/binary-service/tasks/setup_service.yml -------------------------------------------------------------------------------- /ansible/roles/binary-service/templates/template.service.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/binary-service/templates/template.service.j2 -------------------------------------------------------------------------------- /ansible/roles/builder-build-bin/.yamllint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/builder-build-bin/.yamllint -------------------------------------------------------------------------------- /ansible/roles/builder-build-bin/handlers/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/builder-build-bin/handlers/main.yml -------------------------------------------------------------------------------- /ansible/roles/builder-build-bin/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/builder-build-bin/meta/main.yml -------------------------------------------------------------------------------- /ansible/roles/builder-build-bin/molecule/default/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/builder-build-bin/molecule/default/Dockerfile.j2 -------------------------------------------------------------------------------- /ansible/roles/builder-build-bin/molecule/default/INSTALL.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/builder-build-bin/molecule/default/INSTALL.rst -------------------------------------------------------------------------------- /ansible/roles/builder-build-bin/molecule/default/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/builder-build-bin/molecule/default/molecule.yml -------------------------------------------------------------------------------- /ansible/roles/builder-build-bin/molecule/default/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/builder-build-bin/molecule/default/playbook.yml -------------------------------------------------------------------------------- /ansible/roles/builder-build-bin/molecule/default/requirements.yml: -------------------------------------------------------------------------------- 1 | ../../../../requirements/requirements.yml -------------------------------------------------------------------------------- /ansible/roles/builder-build-bin/molecule/default/tests/test_default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/builder-build-bin/molecule/default/tests/test_default.py -------------------------------------------------------------------------------- /ansible/roles/builder-build-bin/molecule/default/tests/test_default.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/builder-build-bin/molecule/default/tests/test_default.pyc -------------------------------------------------------------------------------- /ansible/roles/builder-build-bin/tasks/do_build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/builder-build-bin/tasks/do_build.yml -------------------------------------------------------------------------------- /ansible/roles/builder-build-bin/tasks/do_build_local.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/builder-build-bin/tasks/do_build_local.yml -------------------------------------------------------------------------------- /ansible/roles/builder-build-bin/tasks/ensure_prerequisites.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/builder-build-bin/tasks/ensure_prerequisites.yml -------------------------------------------------------------------------------- /ansible/roles/builder-build-bin/tasks/fetch_binary.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/builder-build-bin/tasks/fetch_binary.yml -------------------------------------------------------------------------------- /ansible/roles/builder-build-bin/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/builder-build-bin/tasks/main.yml -------------------------------------------------------------------------------- /ansible/roles/builder-build-bin/vars/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/builder-build-bin/vars/main.yml -------------------------------------------------------------------------------- /ansible/roles/builder-build-edgeware-spec/.yamllint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/builder-build-edgeware-spec/.yamllint -------------------------------------------------------------------------------- /ansible/roles/builder-build-edgeware-spec/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/builder-build-edgeware-spec/defaults/main.yml -------------------------------------------------------------------------------- /ansible/roles/builder-build-edgeware-spec/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/builder-build-edgeware-spec/tasks/main.yml -------------------------------------------------------------------------------- /ansible/roles/builder-build-spec/.yamllint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/builder-build-spec/.yamllint -------------------------------------------------------------------------------- /ansible/roles/builder-build-spec/handlers/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/builder-build-spec/handlers/main.yml -------------------------------------------------------------------------------- /ansible/roles/builder-build-spec/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/builder-build-spec/meta/main.yml -------------------------------------------------------------------------------- /ansible/roles/builder-build-spec/molecule/default/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/builder-build-spec/molecule/default/Dockerfile.j2 -------------------------------------------------------------------------------- /ansible/roles/builder-build-spec/molecule/default/INSTALL.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/builder-build-spec/molecule/default/INSTALL.rst -------------------------------------------------------------------------------- /ansible/roles/builder-build-spec/molecule/default/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/builder-build-spec/molecule/default/molecule.yml -------------------------------------------------------------------------------- /ansible/roles/builder-build-spec/molecule/default/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/builder-build-spec/molecule/default/playbook.yml -------------------------------------------------------------------------------- /ansible/roles/builder-build-spec/molecule/default/tests/test_default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/builder-build-spec/molecule/default/tests/test_default.py -------------------------------------------------------------------------------- /ansible/roles/builder-build-spec/molecule/default/tests/test_default.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/builder-build-spec/molecule/default/tests/test_default.pyc -------------------------------------------------------------------------------- /ansible/roles/builder-build-spec/tasks/1_extract_default_spec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/builder-build-spec/tasks/1_extract_default_spec.yml -------------------------------------------------------------------------------- /ansible/roles/builder-build-spec/tasks/2_update_spec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/builder-build-spec/tasks/2_update_spec.yml -------------------------------------------------------------------------------- /ansible/roles/builder-build-spec/tasks/3_create_raw_spec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/builder-build-spec/tasks/3_create_raw_spec.yml -------------------------------------------------------------------------------- /ansible/roles/builder-build-spec/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/builder-build-spec/tasks/main.yml -------------------------------------------------------------------------------- /ansible/roles/builder-build-spec/vars/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/builder-build-spec/vars/main.yml -------------------------------------------------------------------------------- /ansible/roles/control-prepare/.yamllint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/control-prepare/.yamllint -------------------------------------------------------------------------------- /ansible/roles/control-prepare/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/control-prepare/tasks/main.yml -------------------------------------------------------------------------------- /ansible/roles/gantree-debug/.yamllint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/gantree-debug/.yamllint -------------------------------------------------------------------------------- /ansible/roles/gantree-debug/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/gantree-debug/tasks/main.yml -------------------------------------------------------------------------------- /ansible/roles/gantree-debug/vars/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/gantree-debug/vars/main.yml -------------------------------------------------------------------------------- /ansible/roles/infra-aws-node/.yamllint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/infra-aws-node/.yamllint -------------------------------------------------------------------------------- /ansible/roles/infra-aws-node/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/infra-aws-node/defaults/main.yml -------------------------------------------------------------------------------- /ansible/roles/infra-aws-node/tasks/0_select.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/infra-aws-node/tasks/0_select.yml -------------------------------------------------------------------------------- /ansible/roles/infra-aws-node/tasks/1_absent.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/infra-aws-node/tasks/1_absent.yml -------------------------------------------------------------------------------- /ansible/roles/infra-aws-node/tasks/1_present.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/infra-aws-node/tasks/1_present.yml -------------------------------------------------------------------------------- /ansible/roles/infra-aws-node/tasks/2_eip.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/infra-aws-node/tasks/2_eip.yml -------------------------------------------------------------------------------- /ansible/roles/infra-aws-node/tasks/2_instance.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/infra-aws-node/tasks/2_instance.yml -------------------------------------------------------------------------------- /ansible/roles/infra-aws-node/tasks/2_instance_info.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/infra-aws-node/tasks/2_instance_info.yml -------------------------------------------------------------------------------- /ansible/roles/infra-aws-node/tasks/2_key.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/infra-aws-node/tasks/2_key.yml -------------------------------------------------------------------------------- /ansible/roles/infra-aws-node/tasks/2_security_group.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/infra-aws-node/tasks/2_security_group.yml -------------------------------------------------------------------------------- /ansible/roles/infra-aws-node/tasks/2_security_group_info.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/infra-aws-node/tasks/2_security_group_info.yml -------------------------------------------------------------------------------- /ansible/roles/infra-aws-node/tasks/2_vpc_igw.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/infra-aws-node/tasks/2_vpc_igw.yml -------------------------------------------------------------------------------- /ansible/roles/infra-aws-node/tasks/2_vpc_igw_info.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/infra-aws-node/tasks/2_vpc_igw_info.yml -------------------------------------------------------------------------------- /ansible/roles/infra-aws-node/tasks/2_vpc_net.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/infra-aws-node/tasks/2_vpc_net.yml -------------------------------------------------------------------------------- /ansible/roles/infra-aws-node/tasks/2_vpc_net_info.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/infra-aws-node/tasks/2_vpc_net_info.yml -------------------------------------------------------------------------------- /ansible/roles/infra-aws-node/tasks/2_vpc_route_table.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/infra-aws-node/tasks/2_vpc_route_table.yml -------------------------------------------------------------------------------- /ansible/roles/infra-aws-node/tasks/2_vpc_route_table_info.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/infra-aws-node/tasks/2_vpc_route_table_info.yml -------------------------------------------------------------------------------- /ansible/roles/infra-aws-node/tasks/2_vpc_subnet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/infra-aws-node/tasks/2_vpc_subnet.yml -------------------------------------------------------------------------------- /ansible/roles/infra-aws-node/tasks/2_vpc_subnet_info.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/infra-aws-node/tasks/2_vpc_subnet_info.yml -------------------------------------------------------------------------------- /ansible/roles/infra-aws-node/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/infra-aws-node/tasks/main.yml -------------------------------------------------------------------------------- /ansible/roles/infra-build-multi/.yamllint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/infra-build-multi/.yamllint -------------------------------------------------------------------------------- /ansible/roles/infra-build-multi/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/roles/infra-build-multi/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/infra-build-multi/tasks/main.yml -------------------------------------------------------------------------------- /ansible/roles/infra-do-node/.yamllint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/infra-do-node/.yamllint -------------------------------------------------------------------------------- /ansible/roles/infra-do-node/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/infra-do-node/defaults/main.yml -------------------------------------------------------------------------------- /ansible/roles/infra-do-node/tasks/0_select.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/infra-do-node/tasks/0_select.yml -------------------------------------------------------------------------------- /ansible/roles/infra-do-node/tasks/1_absent.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/infra-do-node/tasks/1_absent.yml -------------------------------------------------------------------------------- /ansible/roles/infra-do-node/tasks/1_present.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/infra-do-node/tasks/1_present.yml -------------------------------------------------------------------------------- /ansible/roles/infra-do-node/tasks/2_droplet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/infra-do-node/tasks/2_droplet.yml -------------------------------------------------------------------------------- /ansible/roles/infra-do-node/tasks/2_firewall.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # TODO(ryan): implement this when digital_ocean_firewall exists 3 | # :( 4 | -------------------------------------------------------------------------------- /ansible/roles/infra-do-node/tasks/2_gantree_tags.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/infra-do-node/tasks/2_gantree_tags.yml -------------------------------------------------------------------------------- /ansible/roles/infra-do-node/tasks/2_sshkey.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/infra-do-node/tasks/2_sshkey.yml -------------------------------------------------------------------------------- /ansible/roles/infra-do-node/tasks/2_sshkey_info.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/infra-do-node/tasks/2_sshkey_info.yml -------------------------------------------------------------------------------- /ansible/roles/infra-do-node/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/infra-do-node/tasks/main.yml -------------------------------------------------------------------------------- /ansible/roles/infra-gcp-node/.yamllint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/infra-gcp-node/.yamllint -------------------------------------------------------------------------------- /ansible/roles/infra-gcp-node/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/infra-gcp-node/defaults/main.yml -------------------------------------------------------------------------------- /ansible/roles/infra-gcp-node/tasks/0_select.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/infra-gcp-node/tasks/0_select.yml -------------------------------------------------------------------------------- /ansible/roles/infra-gcp-node/tasks/1_create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/infra-gcp-node/tasks/1_create.yml -------------------------------------------------------------------------------- /ansible/roles/infra-gcp-node/tasks/1_destroy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/infra-gcp-node/tasks/1_destroy.yml -------------------------------------------------------------------------------- /ansible/roles/infra-gcp-node/tasks/2_address.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/infra-gcp-node/tasks/2_address.yml -------------------------------------------------------------------------------- /ansible/roles/infra-gcp-node/tasks/2_disk.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/infra-gcp-node/tasks/2_disk.yml -------------------------------------------------------------------------------- /ansible/roles/infra-gcp-node/tasks/2_firewall.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/infra-gcp-node/tasks/2_firewall.yml -------------------------------------------------------------------------------- /ansible/roles/infra-gcp-node/tasks/2_gantree_tags.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/infra-gcp-node/tasks/2_gantree_tags.yml -------------------------------------------------------------------------------- /ansible/roles/infra-gcp-node/tasks/2_instance.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/infra-gcp-node/tasks/2_instance.yml -------------------------------------------------------------------------------- /ansible/roles/infra-gcp-node/tasks/2_network.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/infra-gcp-node/tasks/2_network.yml -------------------------------------------------------------------------------- /ansible/roles/infra-gcp-node/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/infra-gcp-node/tasks/main.yml -------------------------------------------------------------------------------- /ansible/roles/mock-build-bin/.yamllint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/mock-build-bin/.yamllint -------------------------------------------------------------------------------- /ansible/roles/mock-build-bin/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/mock-build-bin/defaults/main.yml -------------------------------------------------------------------------------- /ansible/roles/mock-build-bin/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/mock-build-bin/tasks/main.yml -------------------------------------------------------------------------------- /ansible/roles/validator-env-gantree/.yamllint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/validator-env-gantree/.yamllint -------------------------------------------------------------------------------- /ansible/roles/validator-env-gantree/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # handlers file for validator-env-gantree 3 | -------------------------------------------------------------------------------- /ansible/roles/validator-env-gantree/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/validator-env-gantree/meta/main.yml -------------------------------------------------------------------------------- /ansible/roles/validator-env-gantree/molecule/default/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/validator-env-gantree/molecule/default/Dockerfile.j2 -------------------------------------------------------------------------------- /ansible/roles/validator-env-gantree/molecule/default/INSTALL.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/validator-env-gantree/molecule/default/INSTALL.rst -------------------------------------------------------------------------------- /ansible/roles/validator-env-gantree/molecule/default/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/validator-env-gantree/molecule/default/molecule.yml -------------------------------------------------------------------------------- /ansible/roles/validator-env-gantree/molecule/default/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/validator-env-gantree/molecule/default/playbook.yml -------------------------------------------------------------------------------- /ansible/roles/validator-env-gantree/molecule/default/tests/test_default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/validator-env-gantree/molecule/default/tests/test_default.py -------------------------------------------------------------------------------- /ansible/roles/validator-env-gantree/molecule/default/tests/test_default.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/validator-env-gantree/molecule/default/tests/test_default.pyc -------------------------------------------------------------------------------- /ansible/roles/validator-env-gantree/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/validator-env-gantree/tasks/main.yml -------------------------------------------------------------------------------- /ansible/roles/validator-env-gantree/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # vars file for validator-env-gantree 3 | -------------------------------------------------------------------------------- /ansible/roles/validator-gen-keys-retreive/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/validator-gen-keys-retreive/tasks/main.yml -------------------------------------------------------------------------------- /ansible/roles/validator-gen-keys/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/validator-gen-keys/defaults/main.yml -------------------------------------------------------------------------------- /ansible/roles/validator-gen-keys/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/validator-gen-keys/meta/main.yml -------------------------------------------------------------------------------- /ansible/roles/validator-gen-keys/molecule/default/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/validator-gen-keys/molecule/default/Dockerfile.j2 -------------------------------------------------------------------------------- /ansible/roles/validator-gen-keys/molecule/default/INSTALL.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/validator-gen-keys/molecule/default/INSTALL.rst -------------------------------------------------------------------------------- /ansible/roles/validator-gen-keys/molecule/default/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/validator-gen-keys/molecule/default/molecule.yml -------------------------------------------------------------------------------- /ansible/roles/validator-gen-keys/molecule/default/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/validator-gen-keys/molecule/default/playbook.yml -------------------------------------------------------------------------------- /ansible/roles/validator-gen-keys/molecule/default/tests/test_default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/validator-gen-keys/molecule/default/tests/test_default.py -------------------------------------------------------------------------------- /ansible/roles/validator-gen-keys/molecule/default/tests/test_default.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/validator-gen-keys/molecule/default/tests/test_default.pyc -------------------------------------------------------------------------------- /ansible/roles/validator-gen-keys/molecule/default/testvars.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/validator-gen-keys/molecule/default/testvars.yml -------------------------------------------------------------------------------- /ansible/roles/validator-gen-keys/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/validator-gen-keys/tasks/main.yml -------------------------------------------------------------------------------- /ansible/roles/validator-gen-keys/tasks/mnemonic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/validator-gen-keys/tasks/mnemonic.yml -------------------------------------------------------------------------------- /ansible/roles/validator-gen-keys/tasks/session_info.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/validator-gen-keys/tasks/session_info.yml -------------------------------------------------------------------------------- /ansible/roles/validator-gen-keys/templates/service_env.j2: -------------------------------------------------------------------------------- 1 | SUBSTRATE_SEED_PHRASE="{{ mnemonic.stdout }}" -------------------------------------------------------------------------------- /ansible/roles/validator-gen-keys/templates/session.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/validator-gen-keys/templates/session.yaml.j2 -------------------------------------------------------------------------------- /ansible/roles/validator-key-insert/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/validator-key-insert/tasks/main.yml -------------------------------------------------------------------------------- /ansible/roles/validator-push-bin/.yamllint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/validator-push-bin/.yamllint -------------------------------------------------------------------------------- /ansible/roles/validator-push-bin/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/validator-push-bin/meta/main.yml -------------------------------------------------------------------------------- /ansible/roles/validator-push-bin/molecule/default/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/validator-push-bin/molecule/default/Dockerfile.j2 -------------------------------------------------------------------------------- /ansible/roles/validator-push-bin/molecule/default/INSTALL.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/validator-push-bin/molecule/default/INSTALL.rst -------------------------------------------------------------------------------- /ansible/roles/validator-push-bin/molecule/default/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/validator-push-bin/molecule/default/molecule.yml -------------------------------------------------------------------------------- /ansible/roles/validator-push-bin/molecule/default/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/validator-push-bin/molecule/default/playbook.yml -------------------------------------------------------------------------------- /ansible/roles/validator-push-bin/molecule/default/tests/test_default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/validator-push-bin/molecule/default/tests/test_default.py -------------------------------------------------------------------------------- /ansible/roles/validator-push-bin/molecule/default/tests/test_default.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/validator-push-bin/molecule/default/tests/test_default.pyc -------------------------------------------------------------------------------- /ansible/roles/validator-push-bin/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/validator-push-bin/tasks/main.yml -------------------------------------------------------------------------------- /ansible/roles/validator-push-spec/.yamllint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/validator-push-spec/.yamllint -------------------------------------------------------------------------------- /ansible/roles/validator-push-spec/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # handlers file for validator-push-spec 3 | -------------------------------------------------------------------------------- /ansible/roles/validator-push-spec/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/validator-push-spec/meta/main.yml -------------------------------------------------------------------------------- /ansible/roles/validator-push-spec/molecule/default/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/validator-push-spec/molecule/default/Dockerfile.j2 -------------------------------------------------------------------------------- /ansible/roles/validator-push-spec/molecule/default/INSTALL.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/validator-push-spec/molecule/default/INSTALL.rst -------------------------------------------------------------------------------- /ansible/roles/validator-push-spec/molecule/default/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/validator-push-spec/molecule/default/molecule.yml -------------------------------------------------------------------------------- /ansible/roles/validator-push-spec/molecule/default/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/validator-push-spec/molecule/default/playbook.yml -------------------------------------------------------------------------------- /ansible/roles/validator-push-spec/molecule/default/tests/test_default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/validator-push-spec/molecule/default/tests/test_default.py -------------------------------------------------------------------------------- /ansible/roles/validator-push-spec/molecule/default/tests/test_default.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/validator-push-spec/molecule/default/tests/test_default.pyc -------------------------------------------------------------------------------- /ansible/roles/validator-push-spec/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/validator-push-spec/tasks/main.yml -------------------------------------------------------------------------------- /ansible/roles/validator-push-spec/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # vars file for validator-push-spec 3 | -------------------------------------------------------------------------------- /ansible/roles/validator-service-restart/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/validator-service-restart/tasks/main.yml -------------------------------------------------------------------------------- /ansible/roles/validator-service/.yamllint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/validator-service/.yamllint -------------------------------------------------------------------------------- /ansible/roles/validator-service/handlers/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/validator-service/handlers/main.yml -------------------------------------------------------------------------------- /ansible/roles/validator-service/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/validator-service/meta/main.yml -------------------------------------------------------------------------------- /ansible/roles/validator-service/molecule/default/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/validator-service/molecule/default/Dockerfile.j2 -------------------------------------------------------------------------------- /ansible/roles/validator-service/molecule/default/INSTALL.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/validator-service/molecule/default/INSTALL.rst -------------------------------------------------------------------------------- /ansible/roles/validator-service/molecule/default/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/validator-service/molecule/default/molecule.yml -------------------------------------------------------------------------------- /ansible/roles/validator-service/molecule/default/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/validator-service/molecule/default/playbook.yml -------------------------------------------------------------------------------- /ansible/roles/validator-service/molecule/default/tests/test_default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/validator-service/molecule/default/tests/test_default.py -------------------------------------------------------------------------------- /ansible/roles/validator-service/molecule/default/tests/test_default.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/validator-service/molecule/default/tests/test_default.pyc -------------------------------------------------------------------------------- /ansible/roles/validator-service/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/validator-service/tasks/main.yml -------------------------------------------------------------------------------- /ansible/roles/validator-service/templates/substrate.service.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/validator-service/templates/substrate.service.j2 -------------------------------------------------------------------------------- /ansible/roles/validator-service/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # vars file for validator-service 3 | -------------------------------------------------------------------------------- /ansible/roles/z-test-all/.yamllint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/z-test-all/.yamllint -------------------------------------------------------------------------------- /ansible/roles/z-test-all/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # handlers file for test-all 3 | -------------------------------------------------------------------------------- /ansible/roles/z-test-all/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/z-test-all/meta/main.yml -------------------------------------------------------------------------------- /ansible/roles/z-test-all/molecule/binary-compile/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/z-test-all/molecule/binary-compile/Dockerfile.j2 -------------------------------------------------------------------------------- /ansible/roles/z-test-all/molecule/binary-compile/INSTALL.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/z-test-all/molecule/binary-compile/INSTALL.rst -------------------------------------------------------------------------------- /ansible/roles/z-test-all/molecule/binary-compile/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/z-test-all/molecule/binary-compile/molecule.yml -------------------------------------------------------------------------------- /ansible/roles/z-test-all/molecule/binary-compile/playbook.yml: -------------------------------------------------------------------------------- 1 | ../../../../main.yml -------------------------------------------------------------------------------- /ansible/roles/z-test-all/molecule/binary-compile/tests/test_default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/z-test-all/molecule/binary-compile/tests/test_default.py -------------------------------------------------------------------------------- /ansible/roles/z-test-all/molecule/binary-fetch/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/z-test-all/molecule/binary-fetch/Dockerfile.j2 -------------------------------------------------------------------------------- /ansible/roles/z-test-all/molecule/binary-fetch/INSTALL.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/z-test-all/molecule/binary-fetch/INSTALL.rst -------------------------------------------------------------------------------- /ansible/roles/z-test-all/molecule/binary-fetch/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/z-test-all/molecule/binary-fetch/molecule.yml -------------------------------------------------------------------------------- /ansible/roles/z-test-all/molecule/binary-fetch/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/z-test-all/molecule/binary-fetch/playbook.yml -------------------------------------------------------------------------------- /ansible/roles/z-test-all/molecule/binary-fetch/tests/test_default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/z-test-all/molecule/binary-fetch/tests/test_default.py -------------------------------------------------------------------------------- /ansible/roles/z-test-all/molecule/tele-compile/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/z-test-all/molecule/tele-compile/Dockerfile.j2 -------------------------------------------------------------------------------- /ansible/roles/z-test-all/molecule/tele-compile/INSTALL.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/z-test-all/molecule/tele-compile/INSTALL.rst -------------------------------------------------------------------------------- /ansible/roles/z-test-all/molecule/tele-compile/converge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/z-test-all/molecule/tele-compile/converge.yml -------------------------------------------------------------------------------- /ansible/roles/z-test-all/molecule/tele-compile/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/z-test-all/molecule/tele-compile/molecule.yml -------------------------------------------------------------------------------- /ansible/roles/z-test-all/molecule/tele-compile/tests/test_default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/z-test-all/molecule/tele-compile/tests/test_default.py -------------------------------------------------------------------------------- /ansible/roles/z-test-all/molecule/tele-fetch/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/z-test-all/molecule/tele-fetch/Dockerfile.j2 -------------------------------------------------------------------------------- /ansible/roles/z-test-all/molecule/tele-fetch/INSTALL.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/z-test-all/molecule/tele-fetch/INSTALL.rst -------------------------------------------------------------------------------- /ansible/roles/z-test-all/molecule/tele-fetch/converge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/z-test-all/molecule/tele-fetch/converge.yml -------------------------------------------------------------------------------- /ansible/roles/z-test-all/molecule/tele-fetch/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/z-test-all/molecule/tele-fetch/molecule.yml -------------------------------------------------------------------------------- /ansible/roles/z-test-all/molecule/tele-fetch/tests/test_default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/z-test-all/molecule/tele-fetch/tests/test_default.py -------------------------------------------------------------------------------- /ansible/roles/z-test-all/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/z-test-all/tasks/main.yml -------------------------------------------------------------------------------- /ansible/roles/z-test-all/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # vars file for test-all 3 | -------------------------------------------------------------------------------- /ansible/roles/z-test-autobuilder/.yamllint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/z-test-autobuilder/.yamllint -------------------------------------------------------------------------------- /ansible/roles/z-test-autobuilder/molecule/default/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/z-test-autobuilder/molecule/default/Dockerfile.j2 -------------------------------------------------------------------------------- /ansible/roles/z-test-autobuilder/molecule/default/INSTALL.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/z-test-autobuilder/molecule/default/INSTALL.rst -------------------------------------------------------------------------------- /ansible/roles/z-test-autobuilder/molecule/default/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/z-test-autobuilder/molecule/default/molecule.yml -------------------------------------------------------------------------------- /ansible/roles/z-test-autobuilder/molecule/default/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/z-test-autobuilder/molecule/default/playbook.yml -------------------------------------------------------------------------------- /ansible/roles/z-test-autobuilder/molecule/default/tests/test_default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/z-test-autobuilder/molecule/default/tests/test_default.py -------------------------------------------------------------------------------- /ansible/roles/z-test-autobuilder/molecule/default/tests/test_default.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/ansible/roles/z-test-autobuilder/molecule/default/tests/test_default.pyc -------------------------------------------------------------------------------- /docs/_generated/gantree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/docs/_generated/gantree.md -------------------------------------------------------------------------------- /docs/gantree_config/basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/docs/gantree_config/basics.md -------------------------------------------------------------------------------- /docs/gantree_config/limitations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/docs/gantree_config/limitations.md -------------------------------------------------------------------------------- /docs/gantree_config/samples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/docs/gantree_config/samples.md -------------------------------------------------------------------------------- /docs/gantree_config/schema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/docs/gantree_config/schema.md -------------------------------------------------------------------------------- /docs/gantree_config/tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/docs/gantree_config/tutorial.md -------------------------------------------------------------------------------- /docs/library/limitations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/docs/library/limitations.md -------------------------------------------------------------------------------- /docs/library/quick_start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/docs/library/quick_start.md -------------------------------------------------------------------------------- /docs/library/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/docs/library/usage.md -------------------------------------------------------------------------------- /docs/loose/ansible_flow_reqs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/docs/loose/ansible_flow_reqs.md -------------------------------------------------------------------------------- /docs/loose/debugging_guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/docs/loose/debugging_guidelines.md -------------------------------------------------------------------------------- /docs/loose/provider_disk_configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/docs/loose/provider_disk_configuration.md -------------------------------------------------------------------------------- /docs/loose/tags.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/docs/loose/tags.md -------------------------------------------------------------------------------- /docs/loose/tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/docs/loose/tests.md -------------------------------------------------------------------------------- /docs/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/docs/readme.md -------------------------------------------------------------------------------- /examples/clean-example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/examples/clean-example.js -------------------------------------------------------------------------------- /examples/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/examples/readme.md -------------------------------------------------------------------------------- /examples/sync-example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/examples/sync-example.js -------------------------------------------------------------------------------- /gantree-lib-nodejs.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/gantree-lib-nodejs.code-workspace -------------------------------------------------------------------------------- /inventory/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/inventory/readme.md -------------------------------------------------------------------------------- /inventorySegments/gantree.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/inventorySegments/gantree.sh -------------------------------------------------------------------------------- /inventorySegments/inactive/digital_ocean.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/inventorySegments/inactive/digital_ocean.ini -------------------------------------------------------------------------------- /inventorySegments/inactive/digital_ocean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/inventorySegments/inactive/digital_ocean.py -------------------------------------------------------------------------------- /inventorySegments/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/inventorySegments/readme.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/package.json -------------------------------------------------------------------------------- /python_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/python_requirements.txt -------------------------------------------------------------------------------- /samples/chainspec/chainspec.sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/samples/chainspec/chainspec.sample.json -------------------------------------------------------------------------------- /samples/config/dev/2-0_schema.sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/samples/config/dev/2-0_schema.sample.json -------------------------------------------------------------------------------- /samples/config/dev/20200311_debug_gcp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/samples/config/dev/20200311_debug_gcp.json -------------------------------------------------------------------------------- /samples/config/dev/20200316_debug_aws.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/samples/config/dev/20200316_debug_aws.json -------------------------------------------------------------------------------- /samples/config/dev/20200316_polkadot_fetch_do.sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/samples/config/dev/20200316_polkadot_fetch_do.sample.json -------------------------------------------------------------------------------- /samples/config/dev/20200316_single_aws.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/samples/config/dev/20200316_single_aws.json -------------------------------------------------------------------------------- /samples/config/dev/20200317_debug_do.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/samples/config/dev/20200317_debug_do.json -------------------------------------------------------------------------------- /samples/config/dev/20200319_compile_edgeware.sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/samples/config/dev/20200319_compile_edgeware.sample.json -------------------------------------------------------------------------------- /samples/config/dev/20200319_edgeware_preset_do.sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/samples/config/dev/20200319_edgeware_preset_do.sample.json -------------------------------------------------------------------------------- /samples/config/dev/20200319_polkadot_preset_do.sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/samples/config/dev/20200319_polkadot_preset_do.sample.json -------------------------------------------------------------------------------- /samples/config/dev/20200324_double_multi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/samples/config/dev/20200324_double_multi.json -------------------------------------------------------------------------------- /samples/config/dev/ansible_aws.sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/samples/config/dev/ansible_aws.sample.json -------------------------------------------------------------------------------- /samples/config/dev/big_aws.sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/samples/config/dev/big_aws.sample.json -------------------------------------------------------------------------------- /samples/config/dev/big_do.sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/samples/config/dev/big_do.sample.json -------------------------------------------------------------------------------- /samples/config/dev/cheap_aws.sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/samples/config/dev/cheap_aws.sample.json -------------------------------------------------------------------------------- /samples/config/dev/cheap_do.sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/samples/config/dev/cheap_do.sample.json -------------------------------------------------------------------------------- /samples/config/dev/cheap_gcp.sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/samples/config/dev/cheap_gcp.sample.json -------------------------------------------------------------------------------- /samples/config/dev/debug_do.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/samples/config/dev/debug_do.json -------------------------------------------------------------------------------- /samples/config/dev/double_gcp.sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/samples/config/dev/double_gcp.sample.json -------------------------------------------------------------------------------- /samples/config/dev/fetch_aws.sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/samples/config/dev/fetch_aws.sample.json -------------------------------------------------------------------------------- /samples/config/dev/fetch_aws_ansible.sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/samples/config/dev/fetch_aws_ansible.sample.json -------------------------------------------------------------------------------- /samples/config/dev/invalid_config.sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/samples/config/dev/invalid_config.sample.json -------------------------------------------------------------------------------- /samples/config/dev/multi_provider.sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/samples/config/dev/multi_provider.sample.json -------------------------------------------------------------------------------- /samples/config/dev/polkadot_do.sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/samples/config/dev/polkadot_do.sample.json -------------------------------------------------------------------------------- /samples/config/fetch/polkadot_aws.sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/samples/config/fetch/polkadot_aws.sample.json -------------------------------------------------------------------------------- /samples/config/fetch/polkadot_do.sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/samples/config/fetch/polkadot_do.sample.json -------------------------------------------------------------------------------- /samples/config/fetch/polkadot_gcp.sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/samples/config/fetch/polkadot_gcp.sample.json -------------------------------------------------------------------------------- /samples/config/preset/edgeware_do.sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/samples/config/preset/edgeware_do.sample.json -------------------------------------------------------------------------------- /samples/config/preset/polkadot_aws.sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/samples/config/preset/polkadot_aws.sample.json -------------------------------------------------------------------------------- /samples/config/preset/polkadot_do.sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/samples/config/preset/polkadot_do.sample.json -------------------------------------------------------------------------------- /samples/config/preset/polkadot_gcp.sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/samples/config/preset/polkadot_gcp.sample.json -------------------------------------------------------------------------------- /samples/config/preset/westend_0.7.28_do.sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/samples/config/preset/westend_0.7.28_do.sample.json -------------------------------------------------------------------------------- /samples/config/preset/westend_master_do.sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/samples/config/preset/westend_master_do.sample.json -------------------------------------------------------------------------------- /samples/config/repository/polkadot_aws.sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/samples/config/repository/polkadot_aws.sample.json -------------------------------------------------------------------------------- /samples/config/repository/polkadot_do.sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/samples/config/repository/polkadot_do.sample.json -------------------------------------------------------------------------------- /samples/config/repository/polkadot_gcp.sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/samples/config/repository/polkadot_gcp.sample.json -------------------------------------------------------------------------------- /samples/config/repository/westend_master_do.sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/samples/config/repository/westend_master_do.sample.json -------------------------------------------------------------------------------- /samples/rawchainspec/kusama-example.sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/samples/rawchainspec/kusama-example.sample.json -------------------------------------------------------------------------------- /samples/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/samples/readme.md -------------------------------------------------------------------------------- /samples/validatorspec/toms-validatorspec.sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/samples/validatorspec/toms-validatorspec.sample.json -------------------------------------------------------------------------------- /samples/validatorspec/validatorspec-20200402.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/samples/validatorspec/validatorspec-20200402.json -------------------------------------------------------------------------------- /samples/validatorspec/validatorspec.sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/samples/validatorspec/validatorspec.sample.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/src/index.js -------------------------------------------------------------------------------- /src/lib/OLD/actions/clean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/src/lib/OLD/actions/clean.js -------------------------------------------------------------------------------- /src/lib/OLD/actions/sync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/src/lib/OLD/actions/sync.js -------------------------------------------------------------------------------- /src/lib/OLD/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/src/lib/OLD/application.js -------------------------------------------------------------------------------- /src/lib/OLD/async.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/src/lib/OLD/async.js -------------------------------------------------------------------------------- /src/lib/OLD/clients/ansible.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/src/lib/OLD/clients/ansible.js -------------------------------------------------------------------------------- /src/lib/OLD/clients/terraform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/src/lib/OLD/clients/terraform.js -------------------------------------------------------------------------------- /src/lib/OLD/env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/src/lib/OLD/env.js -------------------------------------------------------------------------------- /src/lib/OLD/gantreeOld.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/src/lib/OLD/gantreeOld.js -------------------------------------------------------------------------------- /src/lib/OLD/platform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/src/lib/OLD/platform.js -------------------------------------------------------------------------------- /src/lib/OLD/preprocess.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/src/lib/OLD/preprocess.js -------------------------------------------------------------------------------- /src/lib/OLD/project.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/src/lib/OLD/project.js -------------------------------------------------------------------------------- /src/lib/OLD/ssh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/src/lib/OLD/ssh.js -------------------------------------------------------------------------------- /src/lib/OLD/tpl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/src/lib/OLD/tpl.js -------------------------------------------------------------------------------- /src/lib/ansible/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/src/lib/ansible/commands.js -------------------------------------------------------------------------------- /src/lib/ansible/extract.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/src/lib/ansible/extract.js -------------------------------------------------------------------------------- /src/lib/ansible/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/src/lib/ansible/index.js -------------------------------------------------------------------------------- /src/lib/ansible/inventory/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/src/lib/ansible/inventory/index.js -------------------------------------------------------------------------------- /src/lib/ansible/inventory/namespace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/src/lib/ansible/inventory/namespace.js -------------------------------------------------------------------------------- /src/lib/check.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/src/lib/check.js -------------------------------------------------------------------------------- /src/lib/checks/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/src/lib/checks/config.js -------------------------------------------------------------------------------- /src/lib/checks/envVars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/src/lib/checks/envVars.js -------------------------------------------------------------------------------- /src/lib/checks/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/src/lib/checks/index.js -------------------------------------------------------------------------------- /src/lib/cmd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/src/lib/cmd.js -------------------------------------------------------------------------------- /src/lib/config/extract.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/src/lib/config/extract.js -------------------------------------------------------------------------------- /src/lib/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/src/lib/config/index.js -------------------------------------------------------------------------------- /src/lib/config/inject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/src/lib/config/inject.js -------------------------------------------------------------------------------- /src/lib/config/preprocess.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/src/lib/config/preprocess.js -------------------------------------------------------------------------------- /src/lib/config/preprocessors/boolToString.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/src/lib/config/preprocessors/boolToString.js -------------------------------------------------------------------------------- /src/lib/config/preprocessors/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/src/lib/config/preprocessors/index.js -------------------------------------------------------------------------------- /src/lib/config/preprocessors/injectEnvVars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/src/lib/config/preprocessors/injectEnvVars.js -------------------------------------------------------------------------------- /src/lib/config/rawRead.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/src/lib/config/rawRead.js -------------------------------------------------------------------------------- /src/lib/config/validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/src/lib/config/validate.js -------------------------------------------------------------------------------- /src/lib/counter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/src/lib/counter.js -------------------------------------------------------------------------------- /src/lib/dataManip/binary/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/src/lib/dataManip/binary/index.js -------------------------------------------------------------------------------- /src/lib/dataManip/binary/method/fetch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/src/lib/dataManip/binary/method/fetch.js -------------------------------------------------------------------------------- /src/lib/dataManip/binary/method/fetch.unit.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/src/lib/dataManip/binary/method/fetch.unit.test.js -------------------------------------------------------------------------------- /src/lib/dataManip/binary/method/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/src/lib/dataManip/binary/method/index.js -------------------------------------------------------------------------------- /src/lib/dataManip/binary/method/local.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/src/lib/dataManip/binary/method/local.js -------------------------------------------------------------------------------- /src/lib/dataManip/binary/method/preset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/src/lib/dataManip/binary/method/preset.js -------------------------------------------------------------------------------- /src/lib/dataManip/binary/method/repository.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/src/lib/dataManip/binary/method/repository.js -------------------------------------------------------------------------------- /src/lib/dataManip/configAws.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/src/lib/dataManip/configAws.js -------------------------------------------------------------------------------- /src/lib/dataManip/configDo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/src/lib/dataManip/configDo.js -------------------------------------------------------------------------------- /src/lib/dataManip/configGcp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/src/lib/dataManip/configGcp.js -------------------------------------------------------------------------------- /src/lib/dataManip/inject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/src/lib/dataManip/inject.js -------------------------------------------------------------------------------- /src/lib/dataManip/inventoryAws.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/src/lib/dataManip/inventoryAws.js -------------------------------------------------------------------------------- /src/lib/dataManip/inventoryDo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/src/lib/dataManip/inventoryDo.js -------------------------------------------------------------------------------- /src/lib/dataManip/inventoryGcp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/src/lib/dataManip/inventoryGcp.js -------------------------------------------------------------------------------- /src/lib/dataManip/key-combine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/src/lib/dataManip/key-combine.js -------------------------------------------------------------------------------- /src/lib/dataManip/makeInventory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/src/lib/dataManip/makeInventory.js -------------------------------------------------------------------------------- /src/lib/dataManip/structure/envPython.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/src/lib/dataManip/structure/envPython.js -------------------------------------------------------------------------------- /src/lib/dataManip/structure/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/src/lib/dataManip/structure/index.js -------------------------------------------------------------------------------- /src/lib/dataManip/structure/sharedVars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/src/lib/dataManip/structure/sharedVars.js -------------------------------------------------------------------------------- /src/lib/dataManip/structure/skeleton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/src/lib/dataManip/structure/skeleton.js -------------------------------------------------------------------------------- /src/lib/error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/src/lib/error.js -------------------------------------------------------------------------------- /src/lib/error.unit.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/src/lib/error.unit.test.js -------------------------------------------------------------------------------- /src/lib/files.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/src/lib/files.js -------------------------------------------------------------------------------- /src/lib/gantree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/src/lib/gantree.js -------------------------------------------------------------------------------- /src/lib/logging.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/src/lib/logging.js -------------------------------------------------------------------------------- /src/lib/packageMeta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/src/lib/packageMeta.js -------------------------------------------------------------------------------- /src/lib/pathHelpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/src/lib/pathHelpers.js -------------------------------------------------------------------------------- /src/lib/utils/hash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/src/lib/utils/hash.js -------------------------------------------------------------------------------- /src/lib/utils/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/src/lib/utils/options.js -------------------------------------------------------------------------------- /src/lib/utils/paths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/src/lib/utils/paths.js -------------------------------------------------------------------------------- /src/lib/utils/ssh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/src/lib/utils/ssh.js -------------------------------------------------------------------------------- /src/lib/utils/stdout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/src/lib/utils/stdout.js -------------------------------------------------------------------------------- /src/lib/utils/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/src/lib/utils/types.js -------------------------------------------------------------------------------- /src/readme.md: -------------------------------------------------------------------------------- 1 | # Src 2 | 3 | Core logic written in JavaScript 4 | -------------------------------------------------------------------------------- /src/schemas/gantree_config_schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/src/schemas/gantree_config_schema.json -------------------------------------------------------------------------------- /src/schemas/obsolete/gantree_config_schema_v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/src/schemas/obsolete/gantree_config_schema_v1.json -------------------------------------------------------------------------------- /src/scripts/cli_inject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/src/scripts/cli_inject.js -------------------------------------------------------------------------------- /src/scripts/cli_keycombine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/src/scripts/cli_keycombine.js -------------------------------------------------------------------------------- /src/scripts/cli_repeat_inventory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/src/scripts/cli_repeat_inventory.js -------------------------------------------------------------------------------- /src/static_data/binary_presets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/src/static_data/binary_presets.json -------------------------------------------------------------------------------- /src/static_data/error_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/src/static_data/error_meta.json -------------------------------------------------------------------------------- /src/static_data/gantree_config_defaults.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/src/static_data/gantree_config_defaults.json -------------------------------------------------------------------------------- /src/static_data/gantree_config_defaults_backup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/src/static_data/gantree_config_defaults_backup.json -------------------------------------------------------------------------------- /src/static_data/provider_env_vars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/src/static_data/provider_env_vars.json -------------------------------------------------------------------------------- /src/static_data/provider_specific_keys.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantree-io/gantree-lib-nodejs/HEAD/src/static_data/provider_specific_keys.json --------------------------------------------------------------------------------