├── .github └── workflows │ ├── actions_lint.yaml │ ├── actions_test_e2e_install.yaml │ ├── actions_test_e2e_setup-app_manual.yaml │ ├── actions_test_e2e_setup-app_preset.yaml │ ├── actions_test_unit.yaml │ ├── docs_cli_and_api_partials_checker.yml │ ├── lint.yaml │ ├── release_please.yml │ ├── tests.yml │ ├── trdl_publisher.yml │ ├── trdl_releaser.yml │ ├── website_broken_links_checker.yml │ ├── website_converge.yml │ └── website_test.yml ├── .gitignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── Taskfile.dist.yaml ├── actions ├── .env.unix-debug ├── .prettierignore ├── .prettierrc.yml ├── .yaml-lint.yml ├── README.md ├── Taskfile.yaml ├── eslint.config.mjs ├── install │ ├── action.yml │ ├── dist │ │ ├── index.mjs │ │ └── index.mjs.map │ └── src │ │ ├── action.test.ts │ │ ├── action.ts │ │ └── index.ts ├── jest.config.mjs ├── lib │ ├── exec.ts │ ├── gpg-cli.test.ts │ ├── gpg-cli.ts │ ├── trdl-cli.test.ts │ └── trdl-cli.ts ├── package-lock.json ├── package.json ├── rollup.config.mjs ├── setup-app │ ├── action.yml │ ├── dist │ │ ├── index.mjs │ │ └── index.mjs.map │ └── src │ │ ├── action.ts │ │ ├── add.test.ts │ │ ├── add.ts │ │ ├── index.ts │ │ ├── preset.test.ts │ │ ├── preset.ts │ │ ├── use.test.ts │ │ └── use.ts ├── test │ └── mocks │ │ ├── core.ts │ │ ├── fs.ts │ │ ├── gpg-cli.ts │ │ ├── io.ts │ │ ├── lib-exec.ts │ │ ├── tool-cache.ts │ │ └── trdl-cli.ts ├── tsconfig.base.json ├── tsconfig.eslint.json └── tsconfig.json ├── client ├── README.md ├── Taskfile.yaml ├── cmd │ └── trdl │ │ ├── add.go │ │ ├── bin_path.go │ │ ├── command │ │ ├── groups.go │ │ ├── md_docs.go │ │ ├── template.go │ │ └── templater.go │ │ ├── common.go │ │ ├── dir_path.go │ │ ├── docs.go │ │ ├── exec.go │ │ ├── list.go │ │ ├── main.go │ │ ├── main_test.go │ │ ├── remove.go │ │ ├── set_default_channel.go │ │ ├── update.go │ │ ├── use.go │ │ └── version.go ├── go.mod ├── go.sum ├── pkg │ ├── client │ │ ├── client.go │ │ ├── configuration.go │ │ ├── errors.go │ │ └── interface.go │ ├── logger │ │ └── log.go │ ├── repo │ │ ├── bin_path.go │ │ ├── clean_releases.go │ │ ├── client.go │ │ ├── dir_path.go │ │ ├── errors.go │ │ ├── exec_path.go │ │ ├── interface.go │ │ ├── setup.go │ │ ├── update.go │ │ └── use.go │ ├── trdl │ │ ├── binary.go │ │ ├── const.go │ │ └── version.go │ ├── tuf │ │ ├── client.go │ │ ├── download.go │ │ └── trace.go │ └── util │ │ ├── exec_unix.go │ │ ├── exec_windows.go │ │ ├── file.go │ │ ├── hashsum.go │ │ ├── metafile.go │ │ └── path.go ├── playground │ └── trdl-update │ │ └── main.go ├── scripts │ └── verify-dist-binaries.sh ├── trdl.yaml └── trdl_channels.yaml ├── docs ├── .gitignore ├── .helm │ ├── templates │ │ ├── 10-app.yaml │ │ ├── 14-tuf-router.yaml │ │ ├── 20-ingress-tuf-router.yaml │ │ ├── 20-ingress.yaml │ │ ├── _helpers.tpl │ │ └── _rewrites.tpl │ └── values.yaml ├── .prettierignore ├── .werf │ ├── nginx-tuf-router.conf │ ├── nginx.conf │ └── tuf-router.lua ├── Gemfile ├── Gemfile.lock ├── LOCALDEV.md ├── Taskfile.yaml ├── _config.yml ├── _config_ru.yml ├── _data │ ├── breadcrumbs.yml │ ├── sidebars │ │ ├── _cli.yml │ │ ├── _reference.yml │ │ ├── _vault_plugin.yml │ │ └── reference.yml │ ├── topnav.yml │ ├── trdl.yml │ └── trdl_channels.yml ├── _includes │ ├── footer.html │ ├── head.html │ ├── index_en │ │ ├── architecture.html │ │ ├── benefits.html │ │ ├── easy-use.html │ │ ├── how-work-trdl.html │ │ ├── intro.html │ │ ├── slider-release.html │ │ ├── slider.html │ │ ├── solve-that.html │ │ └── whats-problems.html │ ├── index_ru │ │ ├── architecture.html │ │ ├── benefits.html │ │ ├── easy-use.html │ │ ├── how-work-trdl.html │ │ ├── intro.html │ │ ├── slider-release.html │ │ ├── slider.html │ │ ├── solve-that.html │ │ └── whats-problems.html │ ├── menu-burger.html │ ├── nav-breadcrumbs.html │ ├── reference │ │ ├── cli │ │ │ ├── trdl.md │ │ │ ├── trdl.short.md │ │ │ ├── trdl_.md │ │ │ ├── trdl_.short.md │ │ │ ├── trdl_add.md │ │ │ ├── trdl_add.short.md │ │ │ ├── trdl_bin_path.md │ │ │ ├── trdl_bin_path.short.md │ │ │ ├── trdl_dir_path.md │ │ │ ├── trdl_dir_path.short.md │ │ │ ├── trdl_docs.md │ │ │ ├── trdl_docs.short.md │ │ │ ├── trdl_exec.md │ │ │ ├── trdl_exec.short.md │ │ │ ├── trdl_list.md │ │ │ ├── trdl_list.short.md │ │ │ ├── trdl_remove.md │ │ │ ├── trdl_remove.short.md │ │ │ ├── trdl_set_default_channel.md │ │ │ ├── trdl_set_default_channel.short.md │ │ │ ├── trdl_update.md │ │ │ ├── trdl_update.short.md │ │ │ ├── trdl_use.md │ │ │ ├── trdl_use.short.md │ │ │ ├── trdl_version.md │ │ │ └── trdl_version.short.md │ │ ├── configuration_table_directive.html │ │ ├── trdl_channels_yaml │ │ │ └── table.html │ │ ├── trdl_yaml │ │ │ ├── example_build_sh.md.liquid │ │ │ ├── example_result.md.liquid │ │ │ ├── example_trdl_yaml.md.liquid │ │ │ ├── example_trdl_yaml_w_secrets.md.liquid │ │ │ └── table.html │ │ └── vault_plugin │ │ │ ├── configure.md │ │ │ ├── configure │ │ │ ├── build │ │ │ │ ├── mac_signing_identity.md │ │ │ │ ├── secrets.md │ │ │ │ └── secrets │ │ │ │ │ └── id.md │ │ │ ├── git_credential.md │ │ │ ├── last_published_git_commit.md │ │ │ ├── pgp_signing_key.md │ │ │ ├── trusted_pgp_public_key.md │ │ │ └── trusted_pgp_public_key │ │ │ │ └── name.md │ │ │ ├── index.md │ │ │ ├── publish.md │ │ │ ├── release.md │ │ │ ├── task.md │ │ │ └── task │ │ │ ├── configure.md │ │ │ ├── uuid.md │ │ │ └── uuid │ │ │ ├── cancel.md │ │ │ └── log.md │ ├── security_en │ │ ├── components.html │ │ ├── intro.html │ │ ├── not-protecting.html │ │ ├── provide.html │ │ └── recommendations.html │ ├── security_ru │ │ ├── components.html │ │ ├── intro.html │ │ ├── not-protecting.html │ │ ├── provide.html │ │ └── recommendations.html │ ├── sidebar.html │ ├── sidebar_entry.html │ ├── toc.html │ └── topnav.html ├── _layouts │ ├── default.html │ ├── main-page.html │ ├── none.html │ ├── page-nosidebar.html │ ├── page.html │ └── sidebar.html ├── _plugins │ ├── custom_filters.rb │ ├── offtopic.rb │ ├── raise_error.rb │ └── variables.rb ├── css │ ├── bootstrap.min.css │ ├── components │ │ ├── _footer.scss │ │ ├── _header.scss │ │ ├── _menu-burger.scss │ │ ├── index │ │ │ ├── _architecture.scss │ │ │ ├── _benefits.scss │ │ │ ├── _easy-use.scss │ │ │ ├── _how-work-trdl.scss │ │ │ ├── _intro.scss │ │ │ ├── _slider.scss │ │ │ ├── _solve-that.scss │ │ │ └── _whats-problems.scss │ │ └── security │ │ │ ├── _components.scss │ │ │ ├── _intro.scss │ │ │ ├── _not-protecting.scss │ │ │ ├── _provide.scss │ │ │ └── _recommendations.scss │ ├── configuration-table.css │ ├── docs.css │ ├── featherlight.min.css │ ├── font-awesome.min.css │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ └── fontawesome-webfont.woff2 │ ├── guides.css │ ├── header.css │ ├── index.css │ ├── installation.css │ ├── introduction.css │ ├── main.scss │ ├── misc │ │ ├── _mixins.scss │ │ ├── _variables.scss │ │ └── common.scss │ ├── normalize.css │ ├── overview.css │ ├── printstyles.css │ ├── submenu.css │ ├── syntax.css │ └── tab.css ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 ├── images │ ├── 404.png │ ├── arrow.svg │ ├── backgrounds │ │ ├── community.svg │ │ ├── feature_special.svg │ │ ├── feature_special2.svg │ │ ├── features.svg │ │ ├── intro-lines.svg │ │ ├── intro.svg │ │ ├── presentation.svg │ │ ├── stats.svg │ │ └── welcome.svg │ ├── favicon │ │ ├── android-chrome-192x192.png │ │ ├── android-chrome-512x512.png │ │ ├── apple-touch-icon.png │ │ ├── browserconfig.xml │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon.ico │ │ ├── mstile-150x150.png │ │ ├── safari-pinned-tab.svg │ │ └── site.webmanifest │ ├── icons │ │ ├── bullet.svg │ │ ├── check.svg │ │ ├── discourse.svg │ │ ├── discussions.svg │ │ ├── dropdown.svg │ │ ├── feature-ansible.svg │ │ ├── feature-config.svg │ │ ├── feature-debug.svg │ │ ├── feature-easy.svg │ │ ├── feature-helm.svg │ │ ├── feature-kubernetes.svg │ │ ├── feature-lifecycle.svg │ │ ├── feature-size.svg │ │ ├── github.svg │ │ ├── heart.png │ │ ├── heart.svg │ │ ├── rss.svg │ │ ├── search.svg │ │ ├── slack.svg │ │ ├── sprite.svg │ │ ├── star.svg │ │ ├── telegram.svg │ │ └── twitter.svg │ ├── intro-scheme_en.svg │ ├── intro-scheme_ru.svg │ ├── intro.svg │ ├── logo.svg │ ├── share.png │ ├── slider │ │ ├── publish │ │ │ ├── 1.svg │ │ │ ├── 2.svg │ │ │ ├── 3.svg │ │ │ ├── 4.svg │ │ │ ├── 5.svg │ │ │ ├── 6.svg │ │ │ └── 7.svg │ │ └── release │ │ │ ├── 1.svg │ │ │ ├── 2.svg │ │ │ ├── 3.svg │ │ │ ├── 4.svg │ │ │ ├── 5.svg │ │ │ └── 6.svg │ ├── telegram.svg │ ├── werf-logo.svg │ └── werf-schema.png ├── jekyll.Dockerfile ├── js │ ├── channels.js │ ├── customscripts.js │ ├── details.js │ ├── featherlight.min.js │ ├── installation.js │ ├── introduction.js │ ├── jekyll-search.js │ ├── jquery-3.1.0.min.js │ ├── jquery.ba-throttle-debounce.min.js │ ├── jquery.localScroll.min.js │ ├── jquery.navgoco.min.js │ ├── jquery.scrollTo.min.js │ ├── jquery.shuffle.min.js │ ├── masonry.pkgd.min.js │ ├── menu-burger.js │ ├── popup.js │ ├── slider.js │ ├── tab.js │ ├── tippy.js │ └── toc.js ├── pages_en │ ├── 404.md │ ├── QUICKSTART.md │ ├── index.html │ ├── reference │ │ ├── cli │ │ │ ├── overview.md │ │ │ ├── trdl_add.md │ │ │ ├── trdl_bin_path.md │ │ │ ├── trdl_dir_path.md │ │ │ ├── trdl_exec.md │ │ │ ├── trdl_list.md │ │ │ ├── trdl_remove.md │ │ │ ├── trdl_set_default_channel.md │ │ │ ├── trdl_update.md │ │ │ └── trdl_use.md │ │ ├── trdl_channels_yaml.md │ │ ├── trdl_yaml.md │ │ ├── tuf_repository_layout.md │ │ └── vault_plugin │ │ │ ├── configure.md │ │ │ ├── configure │ │ │ ├── build │ │ │ │ ├── mac_signing_identity.md │ │ │ │ ├── secrets.md │ │ │ │ └── secrets │ │ │ │ │ └── id.md │ │ │ ├── git_credential.md │ │ │ ├── last_published_git_commit.md │ │ │ ├── pgp_signing_key.md │ │ │ ├── trusted_pgp_public_key.md │ │ │ └── trusted_pgp_public_key │ │ │ │ └── name.md │ │ │ ├── index.md │ │ │ ├── publish.md │ │ │ ├── release.md │ │ │ ├── task.md │ │ │ └── task │ │ │ ├── configure.md │ │ │ ├── uuid.md │ │ │ └── uuid │ │ │ ├── cancel.md │ │ │ └── log.md │ └── security.html ├── pages_ru │ ├── 404.md │ ├── QUICKSTART.md │ ├── index.html │ ├── reference │ │ ├── cli │ │ ├── trdl_channels_yaml.md │ │ ├── trdl_yaml.md │ │ ├── tuf_repository_layout.md │ │ └── vault_plugin │ └── security.html ├── trdl-client.asc ├── trdl-server.asc └── werf.yaml ├── e2e ├── Taskfile.yaml ├── go.mod ├── go.sum └── tests │ ├── client │ ├── _fixtures │ │ └── tuf_repo │ │ │ ├── Dockerfile │ │ │ ├── docker-compose.yaml │ │ │ └── staged │ │ │ └── targets │ │ │ ├── channels │ │ │ └── 0 │ │ │ │ ├── alpha │ │ │ │ ├── beta │ │ │ │ ├── ea │ │ │ │ ├── rock-solid │ │ │ │ └── stable │ │ │ └── releases │ │ │ ├── v0.0.1 │ │ │ ├── any-any │ │ │ │ └── bin │ │ │ │ │ └── script.sh │ │ │ └── windows-any │ │ │ │ └── bin │ │ │ │ └── script.bat │ │ │ └── v0.0.2 │ │ │ ├── any-any │ │ │ └── bin │ │ │ │ └── script.sh │ │ │ └── windows-any │ │ │ └── bin │ │ │ └── script.bat │ ├── basic_test.go │ ├── suite_test.go │ └── use_test.go │ ├── flow │ ├── _fixtures │ │ ├── complete_cycle │ │ │ ├── docker-compose.yaml │ │ │ └── trdl.yaml │ │ └── pgp_keys │ ├── complete_cycle_test.go │ └── suite_test.go │ └── flow_vault │ ├── _fixtures │ ├── complete_cycle │ │ └── trdl.yaml │ └── pgp_keys │ ├── complete_cycle_test.go │ ├── suite_test.go │ └── utils.go ├── quill.Dockerfile ├── release ├── Taskfile.yaml ├── cmd │ └── trdl-vault │ │ ├── commands │ │ └── commands.go │ │ ├── common │ │ ├── cmd_data.go │ │ └── common.go │ │ └── main.go ├── go.mod ├── go.sum ├── pkg │ ├── client │ │ └── main.go │ └── vault │ │ ├── client.go │ │ └── error.go ├── scripts │ └── verify-dist-binaries.sh ├── trdl.yaml └── trdl_channels.yaml ├── server ├── .gitignore ├── Dockerfile ├── README.md ├── Taskfile.yaml ├── backend.go ├── backend_test.go ├── cmd │ ├── vault-plugin-docs │ │ └── main.go │ └── vault-plugin-secrets-trdl │ │ └── main.go ├── examples │ ├── publish.sh │ └── release.sh ├── go.mod ├── go.sum ├── path_configure.go ├── path_configure_test.go ├── path_publish.go ├── path_publish_test.go ├── path_release.go ├── path_release_test.go ├── periodic.go ├── pkg │ ├── config │ │ ├── trdl.go │ │ └── trdl_channels.go │ ├── docker │ │ ├── build.go │ │ ├── builder.go │ │ ├── dockerfile.go │ │ ├── mac_signing.go │ │ ├── secrets.go │ │ ├── util.go │ │ └── util_test.go │ ├── gendocs │ │ ├── gendocs.go │ │ ├── generator.go │ │ ├── jekyll_pages_generator.go │ │ ├── jekyll_sidebar.go │ │ ├── markdown_pages_generator.go │ │ ├── templates.go │ │ └── util.go │ ├── git │ │ ├── _fixtures │ │ │ └── pgp_keys │ │ │ │ ├── developer_private.pgp │ │ │ │ ├── developer_public.pgp │ │ │ │ ├── pm_private.pgp │ │ │ │ ├── pm_public.pgp │ │ │ │ ├── tl_private.pgp │ │ │ │ └── tl_public.pgp │ │ ├── credentials.go │ │ ├── credentials_test.go │ │ ├── repository.go │ │ ├── signatures.go │ │ ├── signatures_loader_test.go │ │ ├── signatures_test.go │ │ ├── suite_test.go │ │ ├── utils.go │ │ └── utils_test.go │ ├── keyhelper │ │ └── load_keys.go │ ├── mac_signing │ │ ├── backend.go │ │ ├── storage.go │ │ └── types.go │ ├── pgp │ │ ├── backend.go │ │ ├── backend_test.go │ │ ├── rsa_signing_key.go │ │ ├── rsa_signing_key_test.go │ │ ├── storage.go │ │ └── util.go │ ├── publisher │ │ ├── backend.go │ │ ├── filesystem.go │ │ ├── interface.go │ │ ├── non_atomic_tuf_store.go │ │ ├── periodic.go │ │ ├── publisher.go │ │ ├── repository.go │ │ ├── s3_filesystem.go │ │ ├── suite_test.go │ │ ├── tuf_repo_priv_keys.go │ │ ├── tuf_repo_rotator.go │ │ └── tuf_repo_rotator_test.go │ ├── secrets │ │ ├── backend.go │ │ └── storage.go │ ├── tasks_manager │ │ ├── actions.go │ │ ├── actions_test.go │ │ ├── backend.go │ │ ├── backend_test.go │ │ ├── config.go │ │ ├── config_storage.go │ │ ├── interface.go │ │ ├── manager.go │ │ ├── manager_test.go │ │ ├── periodic.go │ │ ├── periodic_test.go │ │ ├── task.go │ │ ├── testutil │ │ │ └── paths.go │ │ └── worker │ │ │ ├── buffer.go │ │ │ ├── interface.go │ │ │ ├── job.go │ │ │ ├── worker.go │ │ │ └── worker_test.go │ ├── testutil │ │ ├── command.go │ │ ├── file.go │ │ ├── git.go │ │ ├── random.go │ │ └── suite.go │ └── util │ │ ├── clock.go │ │ ├── io.go │ │ ├── logical_error.go │ │ ├── request.go │ │ ├── throughput_io.go │ │ └── utils.go ├── scripts │ └── verify-dist-binaries.sh ├── trdl.yaml └── trdl_channels.yaml └── trdl-builder.Dockerfile /.github/workflows/actions_lint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/.github/workflows/actions_lint.yaml -------------------------------------------------------------------------------- /.github/workflows/actions_test_e2e_install.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/.github/workflows/actions_test_e2e_install.yaml -------------------------------------------------------------------------------- /.github/workflows/actions_test_e2e_setup-app_manual.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/.github/workflows/actions_test_e2e_setup-app_manual.yaml -------------------------------------------------------------------------------- /.github/workflows/actions_test_e2e_setup-app_preset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/.github/workflows/actions_test_e2e_setup-app_preset.yaml -------------------------------------------------------------------------------- /.github/workflows/actions_test_unit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/.github/workflows/actions_test_unit.yaml -------------------------------------------------------------------------------- /.github/workflows/docs_cli_and_api_partials_checker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/.github/workflows/docs_cli_and_api_partials_checker.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/.github/workflows/lint.yaml -------------------------------------------------------------------------------- /.github/workflows/release_please.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/.github/workflows/release_please.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.github/workflows/trdl_publisher.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/.github/workflows/trdl_publisher.yml -------------------------------------------------------------------------------- /.github/workflows/trdl_releaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/.github/workflows/trdl_releaser.yml -------------------------------------------------------------------------------- /.github/workflows/website_broken_links_checker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/.github/workflows/website_broken_links_checker.yml -------------------------------------------------------------------------------- /.github/workflows/website_converge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/.github/workflows/website_converge.yml -------------------------------------------------------------------------------- /.github/workflows/website_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/.github/workflows/website_test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/README.md -------------------------------------------------------------------------------- /Taskfile.dist.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/Taskfile.dist.yaml -------------------------------------------------------------------------------- /actions/.env.unix-debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/actions/.env.unix-debug -------------------------------------------------------------------------------- /actions/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/actions/.prettierignore -------------------------------------------------------------------------------- /actions/.prettierrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/actions/.prettierrc.yml -------------------------------------------------------------------------------- /actions/.yaml-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/actions/.yaml-lint.yml -------------------------------------------------------------------------------- /actions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/actions/README.md -------------------------------------------------------------------------------- /actions/Taskfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/actions/Taskfile.yaml -------------------------------------------------------------------------------- /actions/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/actions/eslint.config.mjs -------------------------------------------------------------------------------- /actions/install/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/actions/install/action.yml -------------------------------------------------------------------------------- /actions/install/dist/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/actions/install/dist/index.mjs -------------------------------------------------------------------------------- /actions/install/dist/index.mjs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/actions/install/dist/index.mjs.map -------------------------------------------------------------------------------- /actions/install/src/action.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/actions/install/src/action.test.ts -------------------------------------------------------------------------------- /actions/install/src/action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/actions/install/src/action.ts -------------------------------------------------------------------------------- /actions/install/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/actions/install/src/index.ts -------------------------------------------------------------------------------- /actions/jest.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/actions/jest.config.mjs -------------------------------------------------------------------------------- /actions/lib/exec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/actions/lib/exec.ts -------------------------------------------------------------------------------- /actions/lib/gpg-cli.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/actions/lib/gpg-cli.test.ts -------------------------------------------------------------------------------- /actions/lib/gpg-cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/actions/lib/gpg-cli.ts -------------------------------------------------------------------------------- /actions/lib/trdl-cli.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/actions/lib/trdl-cli.test.ts -------------------------------------------------------------------------------- /actions/lib/trdl-cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/actions/lib/trdl-cli.ts -------------------------------------------------------------------------------- /actions/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/actions/package-lock.json -------------------------------------------------------------------------------- /actions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/actions/package.json -------------------------------------------------------------------------------- /actions/rollup.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/actions/rollup.config.mjs -------------------------------------------------------------------------------- /actions/setup-app/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/actions/setup-app/action.yml -------------------------------------------------------------------------------- /actions/setup-app/dist/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/actions/setup-app/dist/index.mjs -------------------------------------------------------------------------------- /actions/setup-app/dist/index.mjs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/actions/setup-app/dist/index.mjs.map -------------------------------------------------------------------------------- /actions/setup-app/src/action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/actions/setup-app/src/action.ts -------------------------------------------------------------------------------- /actions/setup-app/src/add.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/actions/setup-app/src/add.test.ts -------------------------------------------------------------------------------- /actions/setup-app/src/add.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/actions/setup-app/src/add.ts -------------------------------------------------------------------------------- /actions/setup-app/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/actions/setup-app/src/index.ts -------------------------------------------------------------------------------- /actions/setup-app/src/preset.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/actions/setup-app/src/preset.test.ts -------------------------------------------------------------------------------- /actions/setup-app/src/preset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/actions/setup-app/src/preset.ts -------------------------------------------------------------------------------- /actions/setup-app/src/use.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/actions/setup-app/src/use.test.ts -------------------------------------------------------------------------------- /actions/setup-app/src/use.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/actions/setup-app/src/use.ts -------------------------------------------------------------------------------- /actions/test/mocks/core.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/actions/test/mocks/core.ts -------------------------------------------------------------------------------- /actions/test/mocks/fs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/actions/test/mocks/fs.ts -------------------------------------------------------------------------------- /actions/test/mocks/gpg-cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/actions/test/mocks/gpg-cli.ts -------------------------------------------------------------------------------- /actions/test/mocks/io.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/actions/test/mocks/io.ts -------------------------------------------------------------------------------- /actions/test/mocks/lib-exec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/actions/test/mocks/lib-exec.ts -------------------------------------------------------------------------------- /actions/test/mocks/tool-cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/actions/test/mocks/tool-cache.ts -------------------------------------------------------------------------------- /actions/test/mocks/trdl-cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/actions/test/mocks/trdl-cli.ts -------------------------------------------------------------------------------- /actions/tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/actions/tsconfig.base.json -------------------------------------------------------------------------------- /actions/tsconfig.eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/actions/tsconfig.eslint.json -------------------------------------------------------------------------------- /actions/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/actions/tsconfig.json -------------------------------------------------------------------------------- /client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/client/README.md -------------------------------------------------------------------------------- /client/Taskfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/client/Taskfile.yaml -------------------------------------------------------------------------------- /client/cmd/trdl/add.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/client/cmd/trdl/add.go -------------------------------------------------------------------------------- /client/cmd/trdl/bin_path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/client/cmd/trdl/bin_path.go -------------------------------------------------------------------------------- /client/cmd/trdl/command/groups.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/client/cmd/trdl/command/groups.go -------------------------------------------------------------------------------- /client/cmd/trdl/command/md_docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/client/cmd/trdl/command/md_docs.go -------------------------------------------------------------------------------- /client/cmd/trdl/command/template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/client/cmd/trdl/command/template.go -------------------------------------------------------------------------------- /client/cmd/trdl/command/templater.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/client/cmd/trdl/command/templater.go -------------------------------------------------------------------------------- /client/cmd/trdl/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/client/cmd/trdl/common.go -------------------------------------------------------------------------------- /client/cmd/trdl/dir_path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/client/cmd/trdl/dir_path.go -------------------------------------------------------------------------------- /client/cmd/trdl/docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/client/cmd/trdl/docs.go -------------------------------------------------------------------------------- /client/cmd/trdl/exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/client/cmd/trdl/exec.go -------------------------------------------------------------------------------- /client/cmd/trdl/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/client/cmd/trdl/list.go -------------------------------------------------------------------------------- /client/cmd/trdl/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/client/cmd/trdl/main.go -------------------------------------------------------------------------------- /client/cmd/trdl/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/client/cmd/trdl/main_test.go -------------------------------------------------------------------------------- /client/cmd/trdl/remove.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/client/cmd/trdl/remove.go -------------------------------------------------------------------------------- /client/cmd/trdl/set_default_channel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/client/cmd/trdl/set_default_channel.go -------------------------------------------------------------------------------- /client/cmd/trdl/update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/client/cmd/trdl/update.go -------------------------------------------------------------------------------- /client/cmd/trdl/use.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/client/cmd/trdl/use.go -------------------------------------------------------------------------------- /client/cmd/trdl/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/client/cmd/trdl/version.go -------------------------------------------------------------------------------- /client/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/client/go.mod -------------------------------------------------------------------------------- /client/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/client/go.sum -------------------------------------------------------------------------------- /client/pkg/client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/client/pkg/client/client.go -------------------------------------------------------------------------------- /client/pkg/client/configuration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/client/pkg/client/configuration.go -------------------------------------------------------------------------------- /client/pkg/client/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/client/pkg/client/errors.go -------------------------------------------------------------------------------- /client/pkg/client/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/client/pkg/client/interface.go -------------------------------------------------------------------------------- /client/pkg/logger/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/client/pkg/logger/log.go -------------------------------------------------------------------------------- /client/pkg/repo/bin_path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/client/pkg/repo/bin_path.go -------------------------------------------------------------------------------- /client/pkg/repo/clean_releases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/client/pkg/repo/clean_releases.go -------------------------------------------------------------------------------- /client/pkg/repo/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/client/pkg/repo/client.go -------------------------------------------------------------------------------- /client/pkg/repo/dir_path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/client/pkg/repo/dir_path.go -------------------------------------------------------------------------------- /client/pkg/repo/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/client/pkg/repo/errors.go -------------------------------------------------------------------------------- /client/pkg/repo/exec_path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/client/pkg/repo/exec_path.go -------------------------------------------------------------------------------- /client/pkg/repo/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/client/pkg/repo/interface.go -------------------------------------------------------------------------------- /client/pkg/repo/setup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/client/pkg/repo/setup.go -------------------------------------------------------------------------------- /client/pkg/repo/update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/client/pkg/repo/update.go -------------------------------------------------------------------------------- /client/pkg/repo/use.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/client/pkg/repo/use.go -------------------------------------------------------------------------------- /client/pkg/trdl/binary.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/client/pkg/trdl/binary.go -------------------------------------------------------------------------------- /client/pkg/trdl/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/client/pkg/trdl/const.go -------------------------------------------------------------------------------- /client/pkg/trdl/version.go: -------------------------------------------------------------------------------- 1 | package trdl 2 | 3 | var Version = "dev" 4 | -------------------------------------------------------------------------------- /client/pkg/tuf/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/client/pkg/tuf/client.go -------------------------------------------------------------------------------- /client/pkg/tuf/download.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/client/pkg/tuf/download.go -------------------------------------------------------------------------------- /client/pkg/tuf/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/client/pkg/tuf/trace.go -------------------------------------------------------------------------------- /client/pkg/util/exec_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/client/pkg/util/exec_unix.go -------------------------------------------------------------------------------- /client/pkg/util/exec_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/client/pkg/util/exec_windows.go -------------------------------------------------------------------------------- /client/pkg/util/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/client/pkg/util/file.go -------------------------------------------------------------------------------- /client/pkg/util/hashsum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/client/pkg/util/hashsum.go -------------------------------------------------------------------------------- /client/pkg/util/metafile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/client/pkg/util/metafile.go -------------------------------------------------------------------------------- /client/pkg/util/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/client/pkg/util/path.go -------------------------------------------------------------------------------- /client/playground/trdl-update/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/client/playground/trdl-update/main.go -------------------------------------------------------------------------------- /client/scripts/verify-dist-binaries.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/client/scripts/verify-dist-binaries.sh -------------------------------------------------------------------------------- /client/trdl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/client/trdl.yaml -------------------------------------------------------------------------------- /client/trdl_channels.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/client/trdl_channels.yaml -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/.gitignore -------------------------------------------------------------------------------- /docs/.helm/templates/10-app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/.helm/templates/10-app.yaml -------------------------------------------------------------------------------- /docs/.helm/templates/14-tuf-router.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/.helm/templates/14-tuf-router.yaml -------------------------------------------------------------------------------- /docs/.helm/templates/20-ingress-tuf-router.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/.helm/templates/20-ingress-tuf-router.yaml -------------------------------------------------------------------------------- /docs/.helm/templates/20-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/.helm/templates/20-ingress.yaml -------------------------------------------------------------------------------- /docs/.helm/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/.helm/templates/_helpers.tpl -------------------------------------------------------------------------------- /docs/.helm/templates/_rewrites.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/.helm/templates/_rewrites.tpl -------------------------------------------------------------------------------- /docs/.helm/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/.helm/values.yaml -------------------------------------------------------------------------------- /docs/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/.prettierignore -------------------------------------------------------------------------------- /docs/.werf/nginx-tuf-router.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/.werf/nginx-tuf-router.conf -------------------------------------------------------------------------------- /docs/.werf/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/.werf/nginx.conf -------------------------------------------------------------------------------- /docs/.werf/tuf-router.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/.werf/tuf-router.lua -------------------------------------------------------------------------------- /docs/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/Gemfile -------------------------------------------------------------------------------- /docs/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/Gemfile.lock -------------------------------------------------------------------------------- /docs/LOCALDEV.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/LOCALDEV.md -------------------------------------------------------------------------------- /docs/Taskfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/Taskfile.yaml -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/_config_ru.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/_config_ru.yml -------------------------------------------------------------------------------- /docs/_data/breadcrumbs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/_data/breadcrumbs.yml -------------------------------------------------------------------------------- /docs/_data/sidebars/_cli.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/_data/sidebars/_cli.yml -------------------------------------------------------------------------------- /docs/_data/sidebars/_reference.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/_data/sidebars/_reference.yml -------------------------------------------------------------------------------- /docs/_data/sidebars/_vault_plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/_data/sidebars/_vault_plugin.yml -------------------------------------------------------------------------------- /docs/_data/sidebars/reference.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/_data/sidebars/reference.yml -------------------------------------------------------------------------------- /docs/_data/topnav.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/_data/topnav.yml -------------------------------------------------------------------------------- /docs/_data/trdl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/_data/trdl.yml -------------------------------------------------------------------------------- /docs/_data/trdl_channels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/_data/trdl_channels.yml -------------------------------------------------------------------------------- /docs/_includes/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/_includes/footer.html -------------------------------------------------------------------------------- /docs/_includes/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/_includes/head.html -------------------------------------------------------------------------------- /docs/_includes/index_en/architecture.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/_includes/index_en/architecture.html -------------------------------------------------------------------------------- /docs/_includes/index_en/benefits.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/_includes/index_en/benefits.html -------------------------------------------------------------------------------- /docs/_includes/index_en/easy-use.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/_includes/index_en/easy-use.html -------------------------------------------------------------------------------- /docs/_includes/index_en/how-work-trdl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/_includes/index_en/how-work-trdl.html -------------------------------------------------------------------------------- /docs/_includes/index_en/intro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/_includes/index_en/intro.html -------------------------------------------------------------------------------- /docs/_includes/index_en/slider-release.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/_includes/index_en/slider-release.html -------------------------------------------------------------------------------- /docs/_includes/index_en/slider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/_includes/index_en/slider.html -------------------------------------------------------------------------------- /docs/_includes/index_en/solve-that.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/_includes/index_en/solve-that.html -------------------------------------------------------------------------------- /docs/_includes/index_en/whats-problems.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/_includes/index_en/whats-problems.html -------------------------------------------------------------------------------- /docs/_includes/index_ru/architecture.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/_includes/index_ru/architecture.html -------------------------------------------------------------------------------- /docs/_includes/index_ru/benefits.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/_includes/index_ru/benefits.html -------------------------------------------------------------------------------- /docs/_includes/index_ru/easy-use.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/_includes/index_ru/easy-use.html -------------------------------------------------------------------------------- /docs/_includes/index_ru/how-work-trdl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/_includes/index_ru/how-work-trdl.html -------------------------------------------------------------------------------- /docs/_includes/index_ru/intro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/_includes/index_ru/intro.html -------------------------------------------------------------------------------- /docs/_includes/index_ru/slider-release.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/_includes/index_ru/slider-release.html -------------------------------------------------------------------------------- /docs/_includes/index_ru/slider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/_includes/index_ru/slider.html -------------------------------------------------------------------------------- /docs/_includes/index_ru/solve-that.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/_includes/index_ru/solve-that.html -------------------------------------------------------------------------------- /docs/_includes/index_ru/whats-problems.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/_includes/index_ru/whats-problems.html -------------------------------------------------------------------------------- /docs/_includes/menu-burger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/_includes/menu-burger.html -------------------------------------------------------------------------------- /docs/_includes/nav-breadcrumbs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/_includes/nav-breadcrumbs.html -------------------------------------------------------------------------------- /docs/_includes/reference/cli/trdl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/_includes/reference/cli/trdl.md -------------------------------------------------------------------------------- /docs/_includes/reference/cli/trdl.short.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/_includes/reference/cli/trdl_.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/_includes/reference/cli/trdl_.md -------------------------------------------------------------------------------- /docs/_includes/reference/cli/trdl_.short.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/_includes/reference/cli/trdl_add.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/_includes/reference/cli/trdl_add.md -------------------------------------------------------------------------------- /docs/_includes/reference/cli/trdl_add.short.md: -------------------------------------------------------------------------------- 1 | add a software repository -------------------------------------------------------------------------------- /docs/_includes/reference/cli/trdl_bin_path.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/_includes/reference/cli/trdl_bin_path.md -------------------------------------------------------------------------------- /docs/_includes/reference/cli/trdl_bin_path.short.md: -------------------------------------------------------------------------------- 1 | get the directory with software binaries -------------------------------------------------------------------------------- /docs/_includes/reference/cli/trdl_dir_path.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/_includes/reference/cli/trdl_dir_path.md -------------------------------------------------------------------------------- /docs/_includes/reference/cli/trdl_dir_path.short.md: -------------------------------------------------------------------------------- 1 | get the directory with software artifacts -------------------------------------------------------------------------------- /docs/_includes/reference/cli/trdl_docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/_includes/reference/cli/trdl_docs.md -------------------------------------------------------------------------------- /docs/_includes/reference/cli/trdl_docs.short.md: -------------------------------------------------------------------------------- 1 | generate documentation as markdown -------------------------------------------------------------------------------- /docs/_includes/reference/cli/trdl_exec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/_includes/reference/cli/trdl_exec.md -------------------------------------------------------------------------------- /docs/_includes/reference/cli/trdl_exec.short.md: -------------------------------------------------------------------------------- 1 | exec a software binary -------------------------------------------------------------------------------- /docs/_includes/reference/cli/trdl_list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/_includes/reference/cli/trdl_list.md -------------------------------------------------------------------------------- /docs/_includes/reference/cli/trdl_list.short.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/_includes/reference/cli/trdl_list.short.md -------------------------------------------------------------------------------- /docs/_includes/reference/cli/trdl_remove.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/_includes/reference/cli/trdl_remove.md -------------------------------------------------------------------------------- /docs/_includes/reference/cli/trdl_remove.short.md: -------------------------------------------------------------------------------- 1 | remove a software repository -------------------------------------------------------------------------------- /docs/_includes/reference/cli/trdl_set_default_channel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/_includes/reference/cli/trdl_set_default_channel.md -------------------------------------------------------------------------------- /docs/_includes/reference/cli/trdl_set_default_channel.short.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/_includes/reference/cli/trdl_set_default_channel.short.md -------------------------------------------------------------------------------- /docs/_includes/reference/cli/trdl_update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/_includes/reference/cli/trdl_update.md -------------------------------------------------------------------------------- /docs/_includes/reference/cli/trdl_update.short.md: -------------------------------------------------------------------------------- 1 | update the software -------------------------------------------------------------------------------- /docs/_includes/reference/cli/trdl_use.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/_includes/reference/cli/trdl_use.md -------------------------------------------------------------------------------- /docs/_includes/reference/cli/trdl_use.short.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/_includes/reference/cli/trdl_use.short.md -------------------------------------------------------------------------------- /docs/_includes/reference/cli/trdl_version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/_includes/reference/cli/trdl_version.md -------------------------------------------------------------------------------- /docs/_includes/reference/cli/trdl_version.short.md: -------------------------------------------------------------------------------- 1 | print version -------------------------------------------------------------------------------- /docs/_includes/reference/configuration_table_directive.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/_includes/reference/configuration_table_directive.html -------------------------------------------------------------------------------- /docs/_includes/reference/trdl_channels_yaml/table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/_includes/reference/trdl_channels_yaml/table.html -------------------------------------------------------------------------------- /docs/_includes/reference/trdl_yaml/example_build_sh.md.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/_includes/reference/trdl_yaml/example_build_sh.md.liquid -------------------------------------------------------------------------------- /docs/_includes/reference/trdl_yaml/example_result.md.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/_includes/reference/trdl_yaml/example_result.md.liquid -------------------------------------------------------------------------------- /docs/_includes/reference/trdl_yaml/example_trdl_yaml.md.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/_includes/reference/trdl_yaml/example_trdl_yaml.md.liquid -------------------------------------------------------------------------------- /docs/_includes/reference/trdl_yaml/example_trdl_yaml_w_secrets.md.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/_includes/reference/trdl_yaml/example_trdl_yaml_w_secrets.md.liquid -------------------------------------------------------------------------------- /docs/_includes/reference/trdl_yaml/table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/_includes/reference/trdl_yaml/table.html -------------------------------------------------------------------------------- /docs/_includes/reference/vault_plugin/configure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/_includes/reference/vault_plugin/configure.md -------------------------------------------------------------------------------- /docs/_includes/reference/vault_plugin/configure/build/mac_signing_identity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/_includes/reference/vault_plugin/configure/build/mac_signing_identity.md -------------------------------------------------------------------------------- /docs/_includes/reference/vault_plugin/configure/build/secrets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/_includes/reference/vault_plugin/configure/build/secrets.md -------------------------------------------------------------------------------- /docs/_includes/reference/vault_plugin/configure/build/secrets/id.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/_includes/reference/vault_plugin/configure/build/secrets/id.md -------------------------------------------------------------------------------- /docs/_includes/reference/vault_plugin/configure/git_credential.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/_includes/reference/vault_plugin/configure/git_credential.md -------------------------------------------------------------------------------- /docs/_includes/reference/vault_plugin/configure/last_published_git_commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/_includes/reference/vault_plugin/configure/last_published_git_commit.md -------------------------------------------------------------------------------- /docs/_includes/reference/vault_plugin/configure/pgp_signing_key.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/_includes/reference/vault_plugin/configure/pgp_signing_key.md -------------------------------------------------------------------------------- /docs/_includes/reference/vault_plugin/configure/trusted_pgp_public_key.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/_includes/reference/vault_plugin/configure/trusted_pgp_public_key.md -------------------------------------------------------------------------------- /docs/_includes/reference/vault_plugin/configure/trusted_pgp_public_key/name.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/_includes/reference/vault_plugin/configure/trusted_pgp_public_key/name.md -------------------------------------------------------------------------------- /docs/_includes/reference/vault_plugin/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/_includes/reference/vault_plugin/index.md -------------------------------------------------------------------------------- /docs/_includes/reference/vault_plugin/publish.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/_includes/reference/vault_plugin/publish.md -------------------------------------------------------------------------------- /docs/_includes/reference/vault_plugin/release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/_includes/reference/vault_plugin/release.md -------------------------------------------------------------------------------- /docs/_includes/reference/vault_plugin/task.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/_includes/reference/vault_plugin/task.md -------------------------------------------------------------------------------- /docs/_includes/reference/vault_plugin/task/configure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/_includes/reference/vault_plugin/task/configure.md -------------------------------------------------------------------------------- /docs/_includes/reference/vault_plugin/task/uuid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/_includes/reference/vault_plugin/task/uuid.md -------------------------------------------------------------------------------- /docs/_includes/reference/vault_plugin/task/uuid/cancel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/_includes/reference/vault_plugin/task/uuid/cancel.md -------------------------------------------------------------------------------- /docs/_includes/reference/vault_plugin/task/uuid/log.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/_includes/reference/vault_plugin/task/uuid/log.md -------------------------------------------------------------------------------- /docs/_includes/security_en/components.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/_includes/security_en/components.html -------------------------------------------------------------------------------- /docs/_includes/security_en/intro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/_includes/security_en/intro.html -------------------------------------------------------------------------------- /docs/_includes/security_en/not-protecting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/_includes/security_en/not-protecting.html -------------------------------------------------------------------------------- /docs/_includes/security_en/provide.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/_includes/security_en/provide.html -------------------------------------------------------------------------------- /docs/_includes/security_en/recommendations.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/_includes/security_en/recommendations.html -------------------------------------------------------------------------------- /docs/_includes/security_ru/components.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/_includes/security_ru/components.html -------------------------------------------------------------------------------- /docs/_includes/security_ru/intro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/_includes/security_ru/intro.html -------------------------------------------------------------------------------- /docs/_includes/security_ru/not-protecting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/_includes/security_ru/not-protecting.html -------------------------------------------------------------------------------- /docs/_includes/security_ru/provide.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/_includes/security_ru/provide.html -------------------------------------------------------------------------------- /docs/_includes/security_ru/recommendations.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/_includes/security_ru/recommendations.html -------------------------------------------------------------------------------- /docs/_includes/sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/_includes/sidebar.html -------------------------------------------------------------------------------- /docs/_includes/sidebar_entry.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/_includes/sidebar_entry.html -------------------------------------------------------------------------------- /docs/_includes/toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/_includes/toc.html -------------------------------------------------------------------------------- /docs/_includes/topnav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/_includes/topnav.html -------------------------------------------------------------------------------- /docs/_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/_layouts/default.html -------------------------------------------------------------------------------- /docs/_layouts/main-page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/_layouts/main-page.html -------------------------------------------------------------------------------- /docs/_layouts/none.html: -------------------------------------------------------------------------------- 1 | --- 2 | --- 3 | {{content}} -------------------------------------------------------------------------------- /docs/_layouts/page-nosidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/_layouts/page-nosidebar.html -------------------------------------------------------------------------------- /docs/_layouts/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/_layouts/page.html -------------------------------------------------------------------------------- /docs/_layouts/sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/_layouts/sidebar.html -------------------------------------------------------------------------------- /docs/_plugins/custom_filters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/_plugins/custom_filters.rb -------------------------------------------------------------------------------- /docs/_plugins/offtopic.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/_plugins/offtopic.rb -------------------------------------------------------------------------------- /docs/_plugins/raise_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/_plugins/raise_error.rb -------------------------------------------------------------------------------- /docs/_plugins/variables.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/_plugins/variables.rb -------------------------------------------------------------------------------- /docs/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/css/bootstrap.min.css -------------------------------------------------------------------------------- /docs/css/components/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/css/components/_footer.scss -------------------------------------------------------------------------------- /docs/css/components/_header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/css/components/_header.scss -------------------------------------------------------------------------------- /docs/css/components/_menu-burger.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/css/components/_menu-burger.scss -------------------------------------------------------------------------------- /docs/css/components/index/_architecture.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/css/components/index/_architecture.scss -------------------------------------------------------------------------------- /docs/css/components/index/_benefits.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/css/components/index/_benefits.scss -------------------------------------------------------------------------------- /docs/css/components/index/_easy-use.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/css/components/index/_easy-use.scss -------------------------------------------------------------------------------- /docs/css/components/index/_how-work-trdl.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/css/components/index/_how-work-trdl.scss -------------------------------------------------------------------------------- /docs/css/components/index/_intro.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/css/components/index/_intro.scss -------------------------------------------------------------------------------- /docs/css/components/index/_slider.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/css/components/index/_slider.scss -------------------------------------------------------------------------------- /docs/css/components/index/_solve-that.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/css/components/index/_solve-that.scss -------------------------------------------------------------------------------- /docs/css/components/index/_whats-problems.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/css/components/index/_whats-problems.scss -------------------------------------------------------------------------------- /docs/css/components/security/_components.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/css/components/security/_components.scss -------------------------------------------------------------------------------- /docs/css/components/security/_intro.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/css/components/security/_intro.scss -------------------------------------------------------------------------------- /docs/css/components/security/_not-protecting.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/css/components/security/_not-protecting.scss -------------------------------------------------------------------------------- /docs/css/components/security/_provide.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/css/components/security/_provide.scss -------------------------------------------------------------------------------- /docs/css/components/security/_recommendations.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/css/components/security/_recommendations.scss -------------------------------------------------------------------------------- /docs/css/configuration-table.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/css/configuration-table.css -------------------------------------------------------------------------------- /docs/css/docs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/css/docs.css -------------------------------------------------------------------------------- /docs/css/featherlight.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/css/featherlight.min.css -------------------------------------------------------------------------------- /docs/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/css/font-awesome.min.css -------------------------------------------------------------------------------- /docs/css/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/css/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /docs/css/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/css/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /docs/css/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/css/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /docs/css/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/css/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /docs/css/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/css/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /docs/css/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/css/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /docs/css/guides.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/css/guides.css -------------------------------------------------------------------------------- /docs/css/header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/css/header.css -------------------------------------------------------------------------------- /docs/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/css/index.css -------------------------------------------------------------------------------- /docs/css/installation.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/css/installation.css -------------------------------------------------------------------------------- /docs/css/introduction.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/css/introduction.css -------------------------------------------------------------------------------- /docs/css/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/css/main.scss -------------------------------------------------------------------------------- /docs/css/misc/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/css/misc/_mixins.scss -------------------------------------------------------------------------------- /docs/css/misc/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/css/misc/_variables.scss -------------------------------------------------------------------------------- /docs/css/misc/common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/css/misc/common.scss -------------------------------------------------------------------------------- /docs/css/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/css/normalize.css -------------------------------------------------------------------------------- /docs/css/overview.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/css/overview.css -------------------------------------------------------------------------------- /docs/css/printstyles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/css/printstyles.css -------------------------------------------------------------------------------- /docs/css/submenu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/css/submenu.css -------------------------------------------------------------------------------- /docs/css/syntax.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/css/syntax.css -------------------------------------------------------------------------------- /docs/css/tab.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/css/tab.css -------------------------------------------------------------------------------- /docs/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /docs/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /docs/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /docs/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /docs/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /docs/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /docs/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /docs/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /docs/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /docs/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /docs/images/404.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/images/404.png -------------------------------------------------------------------------------- /docs/images/arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/images/arrow.svg -------------------------------------------------------------------------------- /docs/images/backgrounds/community.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/images/backgrounds/community.svg -------------------------------------------------------------------------------- /docs/images/backgrounds/feature_special.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/images/backgrounds/feature_special.svg -------------------------------------------------------------------------------- /docs/images/backgrounds/feature_special2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/images/backgrounds/feature_special2.svg -------------------------------------------------------------------------------- /docs/images/backgrounds/features.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/images/backgrounds/features.svg -------------------------------------------------------------------------------- /docs/images/backgrounds/intro-lines.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/images/backgrounds/intro-lines.svg -------------------------------------------------------------------------------- /docs/images/backgrounds/intro.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/images/backgrounds/intro.svg -------------------------------------------------------------------------------- /docs/images/backgrounds/presentation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/images/backgrounds/presentation.svg -------------------------------------------------------------------------------- /docs/images/backgrounds/stats.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/images/backgrounds/stats.svg -------------------------------------------------------------------------------- /docs/images/backgrounds/welcome.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/images/backgrounds/welcome.svg -------------------------------------------------------------------------------- /docs/images/favicon/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/images/favicon/android-chrome-192x192.png -------------------------------------------------------------------------------- /docs/images/favicon/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/images/favicon/android-chrome-512x512.png -------------------------------------------------------------------------------- /docs/images/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/images/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /docs/images/favicon/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/images/favicon/browserconfig.xml -------------------------------------------------------------------------------- /docs/images/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/images/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /docs/images/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/images/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /docs/images/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/images/favicon/favicon.ico -------------------------------------------------------------------------------- /docs/images/favicon/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/images/favicon/mstile-150x150.png -------------------------------------------------------------------------------- /docs/images/favicon/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/images/favicon/safari-pinned-tab.svg -------------------------------------------------------------------------------- /docs/images/favicon/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/images/favicon/site.webmanifest -------------------------------------------------------------------------------- /docs/images/icons/bullet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/images/icons/bullet.svg -------------------------------------------------------------------------------- /docs/images/icons/check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/images/icons/check.svg -------------------------------------------------------------------------------- /docs/images/icons/discourse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/images/icons/discourse.svg -------------------------------------------------------------------------------- /docs/images/icons/discussions.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/images/icons/discussions.svg -------------------------------------------------------------------------------- /docs/images/icons/dropdown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/images/icons/dropdown.svg -------------------------------------------------------------------------------- /docs/images/icons/feature-ansible.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/images/icons/feature-ansible.svg -------------------------------------------------------------------------------- /docs/images/icons/feature-config.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/images/icons/feature-config.svg -------------------------------------------------------------------------------- /docs/images/icons/feature-debug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/images/icons/feature-debug.svg -------------------------------------------------------------------------------- /docs/images/icons/feature-easy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/images/icons/feature-easy.svg -------------------------------------------------------------------------------- /docs/images/icons/feature-helm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/images/icons/feature-helm.svg -------------------------------------------------------------------------------- /docs/images/icons/feature-kubernetes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/images/icons/feature-kubernetes.svg -------------------------------------------------------------------------------- /docs/images/icons/feature-lifecycle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/images/icons/feature-lifecycle.svg -------------------------------------------------------------------------------- /docs/images/icons/feature-size.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/images/icons/feature-size.svg -------------------------------------------------------------------------------- /docs/images/icons/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/images/icons/github.svg -------------------------------------------------------------------------------- /docs/images/icons/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/images/icons/heart.png -------------------------------------------------------------------------------- /docs/images/icons/heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/images/icons/heart.svg -------------------------------------------------------------------------------- /docs/images/icons/rss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/images/icons/rss.svg -------------------------------------------------------------------------------- /docs/images/icons/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/images/icons/search.svg -------------------------------------------------------------------------------- /docs/images/icons/slack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/images/icons/slack.svg -------------------------------------------------------------------------------- /docs/images/icons/sprite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/images/icons/sprite.svg -------------------------------------------------------------------------------- /docs/images/icons/star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/images/icons/star.svg -------------------------------------------------------------------------------- /docs/images/icons/telegram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/images/icons/telegram.svg -------------------------------------------------------------------------------- /docs/images/icons/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/images/icons/twitter.svg -------------------------------------------------------------------------------- /docs/images/intro-scheme_en.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/images/intro-scheme_en.svg -------------------------------------------------------------------------------- /docs/images/intro-scheme_ru.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/images/intro-scheme_ru.svg -------------------------------------------------------------------------------- /docs/images/intro.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/images/intro.svg -------------------------------------------------------------------------------- /docs/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/images/logo.svg -------------------------------------------------------------------------------- /docs/images/share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/images/share.png -------------------------------------------------------------------------------- /docs/images/slider/publish/1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/images/slider/publish/1.svg -------------------------------------------------------------------------------- /docs/images/slider/publish/2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/images/slider/publish/2.svg -------------------------------------------------------------------------------- /docs/images/slider/publish/3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/images/slider/publish/3.svg -------------------------------------------------------------------------------- /docs/images/slider/publish/4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/images/slider/publish/4.svg -------------------------------------------------------------------------------- /docs/images/slider/publish/5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/images/slider/publish/5.svg -------------------------------------------------------------------------------- /docs/images/slider/publish/6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/images/slider/publish/6.svg -------------------------------------------------------------------------------- /docs/images/slider/publish/7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/images/slider/publish/7.svg -------------------------------------------------------------------------------- /docs/images/slider/release/1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/images/slider/release/1.svg -------------------------------------------------------------------------------- /docs/images/slider/release/2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/images/slider/release/2.svg -------------------------------------------------------------------------------- /docs/images/slider/release/3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/images/slider/release/3.svg -------------------------------------------------------------------------------- /docs/images/slider/release/4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/images/slider/release/4.svg -------------------------------------------------------------------------------- /docs/images/slider/release/5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/images/slider/release/5.svg -------------------------------------------------------------------------------- /docs/images/slider/release/6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/images/slider/release/6.svg -------------------------------------------------------------------------------- /docs/images/telegram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/images/telegram.svg -------------------------------------------------------------------------------- /docs/images/werf-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/images/werf-logo.svg -------------------------------------------------------------------------------- /docs/images/werf-schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/images/werf-schema.png -------------------------------------------------------------------------------- /docs/jekyll.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/jekyll.Dockerfile -------------------------------------------------------------------------------- /docs/js/channels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/js/channels.js -------------------------------------------------------------------------------- /docs/js/customscripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/js/customscripts.js -------------------------------------------------------------------------------- /docs/js/details.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/js/details.js -------------------------------------------------------------------------------- /docs/js/featherlight.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/js/featherlight.min.js -------------------------------------------------------------------------------- /docs/js/installation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/js/installation.js -------------------------------------------------------------------------------- /docs/js/introduction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/js/introduction.js -------------------------------------------------------------------------------- /docs/js/jekyll-search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/js/jekyll-search.js -------------------------------------------------------------------------------- /docs/js/jquery-3.1.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/js/jquery-3.1.0.min.js -------------------------------------------------------------------------------- /docs/js/jquery.ba-throttle-debounce.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/js/jquery.ba-throttle-debounce.min.js -------------------------------------------------------------------------------- /docs/js/jquery.localScroll.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/js/jquery.localScroll.min.js -------------------------------------------------------------------------------- /docs/js/jquery.navgoco.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/js/jquery.navgoco.min.js -------------------------------------------------------------------------------- /docs/js/jquery.scrollTo.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/js/jquery.scrollTo.min.js -------------------------------------------------------------------------------- /docs/js/jquery.shuffle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/js/jquery.shuffle.min.js -------------------------------------------------------------------------------- /docs/js/masonry.pkgd.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/js/masonry.pkgd.min.js -------------------------------------------------------------------------------- /docs/js/menu-burger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/js/menu-burger.js -------------------------------------------------------------------------------- /docs/js/popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/js/popup.js -------------------------------------------------------------------------------- /docs/js/slider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/js/slider.js -------------------------------------------------------------------------------- /docs/js/tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/js/tab.js -------------------------------------------------------------------------------- /docs/js/tippy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/js/tippy.js -------------------------------------------------------------------------------- /docs/js/toc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/js/toc.js -------------------------------------------------------------------------------- /docs/pages_en/404.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/pages_en/404.md -------------------------------------------------------------------------------- /docs/pages_en/QUICKSTART.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/pages_en/QUICKSTART.md -------------------------------------------------------------------------------- /docs/pages_en/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/pages_en/index.html -------------------------------------------------------------------------------- /docs/pages_en/reference/cli/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/pages_en/reference/cli/overview.md -------------------------------------------------------------------------------- /docs/pages_en/reference/cli/trdl_add.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/pages_en/reference/cli/trdl_add.md -------------------------------------------------------------------------------- /docs/pages_en/reference/cli/trdl_bin_path.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/pages_en/reference/cli/trdl_bin_path.md -------------------------------------------------------------------------------- /docs/pages_en/reference/cli/trdl_dir_path.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/pages_en/reference/cli/trdl_dir_path.md -------------------------------------------------------------------------------- /docs/pages_en/reference/cli/trdl_exec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/pages_en/reference/cli/trdl_exec.md -------------------------------------------------------------------------------- /docs/pages_en/reference/cli/trdl_list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/pages_en/reference/cli/trdl_list.md -------------------------------------------------------------------------------- /docs/pages_en/reference/cli/trdl_remove.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/pages_en/reference/cli/trdl_remove.md -------------------------------------------------------------------------------- /docs/pages_en/reference/cli/trdl_set_default_channel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/pages_en/reference/cli/trdl_set_default_channel.md -------------------------------------------------------------------------------- /docs/pages_en/reference/cli/trdl_update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/pages_en/reference/cli/trdl_update.md -------------------------------------------------------------------------------- /docs/pages_en/reference/cli/trdl_use.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/pages_en/reference/cli/trdl_use.md -------------------------------------------------------------------------------- /docs/pages_en/reference/trdl_channels_yaml.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/pages_en/reference/trdl_channels_yaml.md -------------------------------------------------------------------------------- /docs/pages_en/reference/trdl_yaml.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/pages_en/reference/trdl_yaml.md -------------------------------------------------------------------------------- /docs/pages_en/reference/tuf_repository_layout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/pages_en/reference/tuf_repository_layout.md -------------------------------------------------------------------------------- /docs/pages_en/reference/vault_plugin/configure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/pages_en/reference/vault_plugin/configure.md -------------------------------------------------------------------------------- /docs/pages_en/reference/vault_plugin/configure/build/mac_signing_identity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/pages_en/reference/vault_plugin/configure/build/mac_signing_identity.md -------------------------------------------------------------------------------- /docs/pages_en/reference/vault_plugin/configure/build/secrets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/pages_en/reference/vault_plugin/configure/build/secrets.md -------------------------------------------------------------------------------- /docs/pages_en/reference/vault_plugin/configure/build/secrets/id.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/pages_en/reference/vault_plugin/configure/build/secrets/id.md -------------------------------------------------------------------------------- /docs/pages_en/reference/vault_plugin/configure/git_credential.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/pages_en/reference/vault_plugin/configure/git_credential.md -------------------------------------------------------------------------------- /docs/pages_en/reference/vault_plugin/configure/last_published_git_commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/pages_en/reference/vault_plugin/configure/last_published_git_commit.md -------------------------------------------------------------------------------- /docs/pages_en/reference/vault_plugin/configure/pgp_signing_key.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/pages_en/reference/vault_plugin/configure/pgp_signing_key.md -------------------------------------------------------------------------------- /docs/pages_en/reference/vault_plugin/configure/trusted_pgp_public_key.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/pages_en/reference/vault_plugin/configure/trusted_pgp_public_key.md -------------------------------------------------------------------------------- /docs/pages_en/reference/vault_plugin/configure/trusted_pgp_public_key/name.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/pages_en/reference/vault_plugin/configure/trusted_pgp_public_key/name.md -------------------------------------------------------------------------------- /docs/pages_en/reference/vault_plugin/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/pages_en/reference/vault_plugin/index.md -------------------------------------------------------------------------------- /docs/pages_en/reference/vault_plugin/publish.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/pages_en/reference/vault_plugin/publish.md -------------------------------------------------------------------------------- /docs/pages_en/reference/vault_plugin/release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/pages_en/reference/vault_plugin/release.md -------------------------------------------------------------------------------- /docs/pages_en/reference/vault_plugin/task.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/pages_en/reference/vault_plugin/task.md -------------------------------------------------------------------------------- /docs/pages_en/reference/vault_plugin/task/configure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/pages_en/reference/vault_plugin/task/configure.md -------------------------------------------------------------------------------- /docs/pages_en/reference/vault_plugin/task/uuid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/pages_en/reference/vault_plugin/task/uuid.md -------------------------------------------------------------------------------- /docs/pages_en/reference/vault_plugin/task/uuid/cancel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/pages_en/reference/vault_plugin/task/uuid/cancel.md -------------------------------------------------------------------------------- /docs/pages_en/reference/vault_plugin/task/uuid/log.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/pages_en/reference/vault_plugin/task/uuid/log.md -------------------------------------------------------------------------------- /docs/pages_en/security.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/pages_en/security.html -------------------------------------------------------------------------------- /docs/pages_ru/404.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/pages_ru/404.md -------------------------------------------------------------------------------- /docs/pages_ru/QUICKSTART.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/pages_ru/QUICKSTART.md -------------------------------------------------------------------------------- /docs/pages_ru/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/pages_ru/index.html -------------------------------------------------------------------------------- /docs/pages_ru/reference/cli: -------------------------------------------------------------------------------- 1 | ../../pages_en/reference/cli/ -------------------------------------------------------------------------------- /docs/pages_ru/reference/trdl_channels_yaml.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/pages_ru/reference/trdl_channels_yaml.md -------------------------------------------------------------------------------- /docs/pages_ru/reference/trdl_yaml.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/pages_ru/reference/trdl_yaml.md -------------------------------------------------------------------------------- /docs/pages_ru/reference/tuf_repository_layout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/pages_ru/reference/tuf_repository_layout.md -------------------------------------------------------------------------------- /docs/pages_ru/reference/vault_plugin: -------------------------------------------------------------------------------- 1 | ../../pages_en/reference/vault_plugin/ -------------------------------------------------------------------------------- /docs/pages_ru/security.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/pages_ru/security.html -------------------------------------------------------------------------------- /docs/trdl-client.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/trdl-client.asc -------------------------------------------------------------------------------- /docs/trdl-server.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/trdl-server.asc -------------------------------------------------------------------------------- /docs/werf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/docs/werf.yaml -------------------------------------------------------------------------------- /e2e/Taskfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/e2e/Taskfile.yaml -------------------------------------------------------------------------------- /e2e/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/e2e/go.mod -------------------------------------------------------------------------------- /e2e/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/e2e/go.sum -------------------------------------------------------------------------------- /e2e/tests/client/_fixtures/tuf_repo/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/e2e/tests/client/_fixtures/tuf_repo/Dockerfile -------------------------------------------------------------------------------- /e2e/tests/client/_fixtures/tuf_repo/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/e2e/tests/client/_fixtures/tuf_repo/docker-compose.yaml -------------------------------------------------------------------------------- /e2e/tests/client/_fixtures/tuf_repo/staged/targets/channels/0/alpha: -------------------------------------------------------------------------------- 1 | v0.0.2 2 | -------------------------------------------------------------------------------- /e2e/tests/client/_fixtures/tuf_repo/staged/targets/channels/0/beta: -------------------------------------------------------------------------------- 1 | v0.0.2 2 | -------------------------------------------------------------------------------- /e2e/tests/client/_fixtures/tuf_repo/staged/targets/channels/0/ea: -------------------------------------------------------------------------------- 1 | v0.0.2 2 | -------------------------------------------------------------------------------- /e2e/tests/client/_fixtures/tuf_repo/staged/targets/channels/0/rock-solid: -------------------------------------------------------------------------------- 1 | v0.0.1 2 | -------------------------------------------------------------------------------- /e2e/tests/client/_fixtures/tuf_repo/staged/targets/channels/0/stable: -------------------------------------------------------------------------------- 1 | v0.0.1 2 | -------------------------------------------------------------------------------- /e2e/tests/client/_fixtures/tuf_repo/staged/targets/releases/v0.0.1/any-any/bin/script.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | echo "v0.0.1" 4 | -------------------------------------------------------------------------------- /e2e/tests/client/_fixtures/tuf_repo/staged/targets/releases/v0.0.1/windows-any/bin/script.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/e2e/tests/client/_fixtures/tuf_repo/staged/targets/releases/v0.0.1/windows-any/bin/script.bat -------------------------------------------------------------------------------- /e2e/tests/client/_fixtures/tuf_repo/staged/targets/releases/v0.0.2/any-any/bin/script.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | echo "v0.0.2" 4 | -------------------------------------------------------------------------------- /e2e/tests/client/_fixtures/tuf_repo/staged/targets/releases/v0.0.2/windows-any/bin/script.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/e2e/tests/client/_fixtures/tuf_repo/staged/targets/releases/v0.0.2/windows-any/bin/script.bat -------------------------------------------------------------------------------- /e2e/tests/client/basic_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/e2e/tests/client/basic_test.go -------------------------------------------------------------------------------- /e2e/tests/client/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/e2e/tests/client/suite_test.go -------------------------------------------------------------------------------- /e2e/tests/client/use_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/e2e/tests/client/use_test.go -------------------------------------------------------------------------------- /e2e/tests/flow/_fixtures/complete_cycle/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/e2e/tests/flow/_fixtures/complete_cycle/docker-compose.yaml -------------------------------------------------------------------------------- /e2e/tests/flow/_fixtures/complete_cycle/trdl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/e2e/tests/flow/_fixtures/complete_cycle/trdl.yaml -------------------------------------------------------------------------------- /e2e/tests/flow/_fixtures/pgp_keys: -------------------------------------------------------------------------------- 1 | ../../../../server/pkg/git/_fixtures/pgp_keys -------------------------------------------------------------------------------- /e2e/tests/flow/complete_cycle_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/e2e/tests/flow/complete_cycle_test.go -------------------------------------------------------------------------------- /e2e/tests/flow/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/e2e/tests/flow/suite_test.go -------------------------------------------------------------------------------- /e2e/tests/flow_vault/_fixtures/complete_cycle/trdl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/e2e/tests/flow_vault/_fixtures/complete_cycle/trdl.yaml -------------------------------------------------------------------------------- /e2e/tests/flow_vault/_fixtures/pgp_keys: -------------------------------------------------------------------------------- 1 | ../../../../server/pkg/git/_fixtures/pgp_keys -------------------------------------------------------------------------------- /e2e/tests/flow_vault/complete_cycle_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/e2e/tests/flow_vault/complete_cycle_test.go -------------------------------------------------------------------------------- /e2e/tests/flow_vault/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/e2e/tests/flow_vault/suite_test.go -------------------------------------------------------------------------------- /e2e/tests/flow_vault/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/e2e/tests/flow_vault/utils.go -------------------------------------------------------------------------------- /quill.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/quill.Dockerfile -------------------------------------------------------------------------------- /release/Taskfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/release/Taskfile.yaml -------------------------------------------------------------------------------- /release/cmd/trdl-vault/commands/commands.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/release/cmd/trdl-vault/commands/commands.go -------------------------------------------------------------------------------- /release/cmd/trdl-vault/common/cmd_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/release/cmd/trdl-vault/common/cmd_data.go -------------------------------------------------------------------------------- /release/cmd/trdl-vault/common/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/release/cmd/trdl-vault/common/common.go -------------------------------------------------------------------------------- /release/cmd/trdl-vault/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/release/cmd/trdl-vault/main.go -------------------------------------------------------------------------------- /release/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/release/go.mod -------------------------------------------------------------------------------- /release/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/release/go.sum -------------------------------------------------------------------------------- /release/pkg/client/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/release/pkg/client/main.go -------------------------------------------------------------------------------- /release/pkg/vault/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/release/pkg/vault/client.go -------------------------------------------------------------------------------- /release/pkg/vault/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/release/pkg/vault/error.go -------------------------------------------------------------------------------- /release/scripts/verify-dist-binaries.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/release/scripts/verify-dist-binaries.sh -------------------------------------------------------------------------------- /release/trdl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/release/trdl.yaml -------------------------------------------------------------------------------- /release/trdl_channels.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/release/trdl_channels.yaml -------------------------------------------------------------------------------- /server/.gitignore: -------------------------------------------------------------------------------- 1 | # Runtime 2 | /vault 3 | /publisher 4 | /.minio_data 5 | /.run -------------------------------------------------------------------------------- /server/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/Dockerfile -------------------------------------------------------------------------------- /server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/README.md -------------------------------------------------------------------------------- /server/Taskfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/Taskfile.yaml -------------------------------------------------------------------------------- /server/backend.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/backend.go -------------------------------------------------------------------------------- /server/backend_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/backend_test.go -------------------------------------------------------------------------------- /server/cmd/vault-plugin-docs/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/cmd/vault-plugin-docs/main.go -------------------------------------------------------------------------------- /server/cmd/vault-plugin-secrets-trdl/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/cmd/vault-plugin-secrets-trdl/main.go -------------------------------------------------------------------------------- /server/examples/publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/examples/publish.sh -------------------------------------------------------------------------------- /server/examples/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/examples/release.sh -------------------------------------------------------------------------------- /server/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/go.mod -------------------------------------------------------------------------------- /server/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/go.sum -------------------------------------------------------------------------------- /server/path_configure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/path_configure.go -------------------------------------------------------------------------------- /server/path_configure_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/path_configure_test.go -------------------------------------------------------------------------------- /server/path_publish.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/path_publish.go -------------------------------------------------------------------------------- /server/path_publish_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/path_publish_test.go -------------------------------------------------------------------------------- /server/path_release.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/path_release.go -------------------------------------------------------------------------------- /server/path_release_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/path_release_test.go -------------------------------------------------------------------------------- /server/periodic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/periodic.go -------------------------------------------------------------------------------- /server/pkg/config/trdl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/pkg/config/trdl.go -------------------------------------------------------------------------------- /server/pkg/config/trdl_channels.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/pkg/config/trdl_channels.go -------------------------------------------------------------------------------- /server/pkg/docker/build.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/pkg/docker/build.go -------------------------------------------------------------------------------- /server/pkg/docker/builder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/pkg/docker/builder.go -------------------------------------------------------------------------------- /server/pkg/docker/dockerfile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/pkg/docker/dockerfile.go -------------------------------------------------------------------------------- /server/pkg/docker/mac_signing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/pkg/docker/mac_signing.go -------------------------------------------------------------------------------- /server/pkg/docker/secrets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/pkg/docker/secrets.go -------------------------------------------------------------------------------- /server/pkg/docker/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/pkg/docker/util.go -------------------------------------------------------------------------------- /server/pkg/docker/util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/pkg/docker/util_test.go -------------------------------------------------------------------------------- /server/pkg/gendocs/gendocs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/pkg/gendocs/gendocs.go -------------------------------------------------------------------------------- /server/pkg/gendocs/generator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/pkg/gendocs/generator.go -------------------------------------------------------------------------------- /server/pkg/gendocs/jekyll_pages_generator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/pkg/gendocs/jekyll_pages_generator.go -------------------------------------------------------------------------------- /server/pkg/gendocs/jekyll_sidebar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/pkg/gendocs/jekyll_sidebar.go -------------------------------------------------------------------------------- /server/pkg/gendocs/markdown_pages_generator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/pkg/gendocs/markdown_pages_generator.go -------------------------------------------------------------------------------- /server/pkg/gendocs/templates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/pkg/gendocs/templates.go -------------------------------------------------------------------------------- /server/pkg/gendocs/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/pkg/gendocs/util.go -------------------------------------------------------------------------------- /server/pkg/git/_fixtures/pgp_keys/developer_private.pgp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/pkg/git/_fixtures/pgp_keys/developer_private.pgp -------------------------------------------------------------------------------- /server/pkg/git/_fixtures/pgp_keys/developer_public.pgp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/pkg/git/_fixtures/pgp_keys/developer_public.pgp -------------------------------------------------------------------------------- /server/pkg/git/_fixtures/pgp_keys/pm_private.pgp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/pkg/git/_fixtures/pgp_keys/pm_private.pgp -------------------------------------------------------------------------------- /server/pkg/git/_fixtures/pgp_keys/pm_public.pgp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/pkg/git/_fixtures/pgp_keys/pm_public.pgp -------------------------------------------------------------------------------- /server/pkg/git/_fixtures/pgp_keys/tl_private.pgp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/pkg/git/_fixtures/pgp_keys/tl_private.pgp -------------------------------------------------------------------------------- /server/pkg/git/_fixtures/pgp_keys/tl_public.pgp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/pkg/git/_fixtures/pgp_keys/tl_public.pgp -------------------------------------------------------------------------------- /server/pkg/git/credentials.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/pkg/git/credentials.go -------------------------------------------------------------------------------- /server/pkg/git/credentials_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/pkg/git/credentials_test.go -------------------------------------------------------------------------------- /server/pkg/git/repository.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/pkg/git/repository.go -------------------------------------------------------------------------------- /server/pkg/git/signatures.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/pkg/git/signatures.go -------------------------------------------------------------------------------- /server/pkg/git/signatures_loader_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/pkg/git/signatures_loader_test.go -------------------------------------------------------------------------------- /server/pkg/git/signatures_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/pkg/git/signatures_test.go -------------------------------------------------------------------------------- /server/pkg/git/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/pkg/git/suite_test.go -------------------------------------------------------------------------------- /server/pkg/git/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/pkg/git/utils.go -------------------------------------------------------------------------------- /server/pkg/git/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/pkg/git/utils_test.go -------------------------------------------------------------------------------- /server/pkg/keyhelper/load_keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/pkg/keyhelper/load_keys.go -------------------------------------------------------------------------------- /server/pkg/mac_signing/backend.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/pkg/mac_signing/backend.go -------------------------------------------------------------------------------- /server/pkg/mac_signing/storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/pkg/mac_signing/storage.go -------------------------------------------------------------------------------- /server/pkg/mac_signing/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/pkg/mac_signing/types.go -------------------------------------------------------------------------------- /server/pkg/pgp/backend.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/pkg/pgp/backend.go -------------------------------------------------------------------------------- /server/pkg/pgp/backend_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/pkg/pgp/backend_test.go -------------------------------------------------------------------------------- /server/pkg/pgp/rsa_signing_key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/pkg/pgp/rsa_signing_key.go -------------------------------------------------------------------------------- /server/pkg/pgp/rsa_signing_key_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/pkg/pgp/rsa_signing_key_test.go -------------------------------------------------------------------------------- /server/pkg/pgp/storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/pkg/pgp/storage.go -------------------------------------------------------------------------------- /server/pkg/pgp/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/pkg/pgp/util.go -------------------------------------------------------------------------------- /server/pkg/publisher/backend.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/pkg/publisher/backend.go -------------------------------------------------------------------------------- /server/pkg/publisher/filesystem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/pkg/publisher/filesystem.go -------------------------------------------------------------------------------- /server/pkg/publisher/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/pkg/publisher/interface.go -------------------------------------------------------------------------------- /server/pkg/publisher/non_atomic_tuf_store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/pkg/publisher/non_atomic_tuf_store.go -------------------------------------------------------------------------------- /server/pkg/publisher/periodic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/pkg/publisher/periodic.go -------------------------------------------------------------------------------- /server/pkg/publisher/publisher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/pkg/publisher/publisher.go -------------------------------------------------------------------------------- /server/pkg/publisher/repository.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/pkg/publisher/repository.go -------------------------------------------------------------------------------- /server/pkg/publisher/s3_filesystem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/pkg/publisher/s3_filesystem.go -------------------------------------------------------------------------------- /server/pkg/publisher/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/pkg/publisher/suite_test.go -------------------------------------------------------------------------------- /server/pkg/publisher/tuf_repo_priv_keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/pkg/publisher/tuf_repo_priv_keys.go -------------------------------------------------------------------------------- /server/pkg/publisher/tuf_repo_rotator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/pkg/publisher/tuf_repo_rotator.go -------------------------------------------------------------------------------- /server/pkg/publisher/tuf_repo_rotator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/pkg/publisher/tuf_repo_rotator_test.go -------------------------------------------------------------------------------- /server/pkg/secrets/backend.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/pkg/secrets/backend.go -------------------------------------------------------------------------------- /server/pkg/secrets/storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/pkg/secrets/storage.go -------------------------------------------------------------------------------- /server/pkg/tasks_manager/actions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/pkg/tasks_manager/actions.go -------------------------------------------------------------------------------- /server/pkg/tasks_manager/actions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/pkg/tasks_manager/actions_test.go -------------------------------------------------------------------------------- /server/pkg/tasks_manager/backend.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/pkg/tasks_manager/backend.go -------------------------------------------------------------------------------- /server/pkg/tasks_manager/backend_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/pkg/tasks_manager/backend_test.go -------------------------------------------------------------------------------- /server/pkg/tasks_manager/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/pkg/tasks_manager/config.go -------------------------------------------------------------------------------- /server/pkg/tasks_manager/config_storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/pkg/tasks_manager/config_storage.go -------------------------------------------------------------------------------- /server/pkg/tasks_manager/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/pkg/tasks_manager/interface.go -------------------------------------------------------------------------------- /server/pkg/tasks_manager/manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/pkg/tasks_manager/manager.go -------------------------------------------------------------------------------- /server/pkg/tasks_manager/manager_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/pkg/tasks_manager/manager_test.go -------------------------------------------------------------------------------- /server/pkg/tasks_manager/periodic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/pkg/tasks_manager/periodic.go -------------------------------------------------------------------------------- /server/pkg/tasks_manager/periodic_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/pkg/tasks_manager/periodic_test.go -------------------------------------------------------------------------------- /server/pkg/tasks_manager/task.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/pkg/tasks_manager/task.go -------------------------------------------------------------------------------- /server/pkg/tasks_manager/testutil/paths.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/pkg/tasks_manager/testutil/paths.go -------------------------------------------------------------------------------- /server/pkg/tasks_manager/worker/buffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/pkg/tasks_manager/worker/buffer.go -------------------------------------------------------------------------------- /server/pkg/tasks_manager/worker/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/pkg/tasks_manager/worker/interface.go -------------------------------------------------------------------------------- /server/pkg/tasks_manager/worker/job.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/pkg/tasks_manager/worker/job.go -------------------------------------------------------------------------------- /server/pkg/tasks_manager/worker/worker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/pkg/tasks_manager/worker/worker.go -------------------------------------------------------------------------------- /server/pkg/tasks_manager/worker/worker_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/pkg/tasks_manager/worker/worker_test.go -------------------------------------------------------------------------------- /server/pkg/testutil/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/pkg/testutil/command.go -------------------------------------------------------------------------------- /server/pkg/testutil/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/pkg/testutil/file.go -------------------------------------------------------------------------------- /server/pkg/testutil/git.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/pkg/testutil/git.go -------------------------------------------------------------------------------- /server/pkg/testutil/random.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/pkg/testutil/random.go -------------------------------------------------------------------------------- /server/pkg/testutil/suite.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/pkg/testutil/suite.go -------------------------------------------------------------------------------- /server/pkg/util/clock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/pkg/util/clock.go -------------------------------------------------------------------------------- /server/pkg/util/io.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/pkg/util/io.go -------------------------------------------------------------------------------- /server/pkg/util/logical_error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/pkg/util/logical_error.go -------------------------------------------------------------------------------- /server/pkg/util/request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/pkg/util/request.go -------------------------------------------------------------------------------- /server/pkg/util/throughput_io.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/pkg/util/throughput_io.go -------------------------------------------------------------------------------- /server/pkg/util/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/pkg/util/utils.go -------------------------------------------------------------------------------- /server/scripts/verify-dist-binaries.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/scripts/verify-dist-binaries.sh -------------------------------------------------------------------------------- /server/trdl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/trdl.yaml -------------------------------------------------------------------------------- /server/trdl_channels.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/server/trdl_channels.yaml -------------------------------------------------------------------------------- /trdl-builder.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/trdl/HEAD/trdl-builder.Dockerfile --------------------------------------------------------------------------------