├── .dockerignore ├── .gitignore ├── HACKING.adoc ├── Jenkinsfile ├── LICENSE.txt ├── Makefile ├── README.adoc ├── activate ├── distribution ├── .gitignore ├── .yamllint ├── Dockerfile ├── Makefile ├── bin │ └── start-dev.sh ├── client │ ├── .eslintrc.json │ ├── .gitignore │ ├── Makefile │ ├── README.adoc │ ├── config │ │ ├── default.json │ │ └── test.json │ ├── package-lock.json │ ├── package.json │ ├── patches │ │ └── promise-request-retry+1.0.1.patch │ ├── public │ │ ├── 502.html │ │ ├── 521.html │ │ ├── docs │ │ │ ├── .gitignore │ │ │ └── asciidoctor.css │ │ ├── index.html │ │ └── static │ │ │ ├── demon_256.png │ │ │ ├── magic_v8.gif │ │ │ └── magician_256.png │ ├── scripts │ │ └── render-docs │ ├── src │ │ ├── client.ts │ │ └── lib │ │ │ ├── __mocks__ │ │ │ └── fs.js │ │ │ ├── checksum.ts │ │ │ ├── downloader.ts │ │ │ ├── error-telemetry.ts │ │ │ ├── healthchecker.ts │ │ │ ├── periodic.ts │ │ │ ├── rand-patch.ts │ │ │ ├── registration.ts │ │ │ ├── request-options.ts │ │ │ ├── snapshotter.ts │ │ │ ├── status.ts │ │ │ ├── storage.ts │ │ │ ├── supervisord.ts │ │ │ ├── ui.ts │ │ │ └── update.ts │ ├── test │ │ ├── checksum.test.ts │ │ ├── client.test.ts │ │ ├── downloader.test.ts │ │ ├── error-telemetry.test.ts │ │ ├── healthchecker.test.ts │ │ ├── periodic.test.ts │ │ ├── registration.test.ts │ │ ├── snapshotter.test.ts │ │ ├── status.test.ts │ │ ├── storage.test.ts │ │ ├── ui.test.ts │ │ ├── update.rollback.test.ts │ │ └── update.test.ts │ ├── testlib │ │ └── helpers.ts │ ├── tsconfig.json │ ├── ui-test │ │ └── index.test.js │ ├── ui │ │ └── index.js │ └── webpack.config.js ├── config │ ├── README.adoc │ ├── as-code │ │ ├── core.yaml │ │ ├── create-admin-user.yaml │ │ ├── metrics-healthchecking.yaml │ │ └── no-executor.yaml │ ├── logging.properties │ ├── nginx.conf │ ├── squid.conf │ └── supervisord.conf ├── docker-compose.squid-cache.yml ├── docker-compose.yml ├── flavors │ ├── Makefile │ ├── aws-ec2-cloud │ │ ├── CloudFormation │ │ │ └── cloudformation-template.json │ │ ├── Dockerfile │ │ ├── README.adoc │ │ └── config │ │ │ └── as-code │ │ │ ├── artifact-manager-s3.yaml │ │ │ └── ec2-cloud.yaml │ ├── build-or-push-flavors.sh │ ├── docker-cloud │ │ ├── Dockerfile │ │ └── config │ │ │ ├── as-code │ │ │ └── docker-cloud.yaml │ │ │ └── supervisord.conf │ └── java11-docker-cloud │ │ ├── Dockerfile │ │ └── config │ │ ├── as-code │ │ └── docker-cloud.yaml │ │ └── supervisord.conf ├── packaging-list.client.txt ├── packaging-list.config.txt ├── packaging-list.scripts.txt ├── packaging-list.www.txt ├── scripts │ ├── jenkins-evergreen.sh │ └── start-client.sh └── tests │ ├── flavors │ ├── aws-ec2-cloud │ │ └── docker-compose.aws-ec2-cloud.yml │ ├── docker-cloud │ │ └── docker-compose.docker-cloud.yml │ └── java11-docker-cloud │ │ └── docker-compose.java11-docker-cloud.yml │ ├── offline-tests.sh │ ├── rollback-tests.sh │ ├── rollback │ ├── 1-ingest-ok.json │ └── 2-ingest-borked.json │ ├── tests.sh │ └── utilities ├── docs ├── developer │ ├── USE-CASES.adoc │ └── meetings │ │ ├── 2018-03-18-JENKINS-49406-quality-bar │ │ └── README.adoc │ │ ├── 2018-03-23-JENKINS-49852-pipeline-usage-telemetry │ │ └── README.adoc │ │ ├── 2018-05-07-existing-telemetry-setup-on-jenkins-io │ │ └── README.adoc │ │ ├── 2018-05-30-JENKINS-51299-developer-access-howto │ │ └── README.adoc │ │ ├── README.adoc │ │ └── _YYYY-MM-DD-subject-of-meeting │ │ └── README.adoc └── index.adoc ├── node.mk ├── services ├── .dockerignore ├── .editorconfig ├── .eslintrc.json ├── .gitignore ├── .rspec ├── .sequelizerc ├── .yamllint ├── .yardopts ├── Dockerfile ├── Dockerfile.migrations ├── Makefile ├── README.adoc ├── acceptance │ ├── app.test.js │ ├── fixtures │ │ └── 53318 │ │ │ ├── ingest.json │ │ │ └── versions.json │ ├── helpers.js │ ├── rand-patch.js │ ├── services │ │ ├── errortelemetry.test.js │ │ ├── registration.test.js │ │ ├── status.test.js │ │ ├── tainted.test.js │ │ ├── update.test.js │ │ └── version.test.js │ └── update-versions.test.js ├── assets │ ├── css │ │ ├── bootstrap-grid.css │ │ ├── bootstrap-grid.css.map │ │ ├── bootstrap-grid.min.css │ │ ├── bootstrap-grid.min.css.map │ │ ├── bootstrap-reboot.css │ │ ├── bootstrap-reboot.css.map │ │ ├── bootstrap-reboot.min.css │ │ ├── bootstrap-reboot.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ └── js │ │ ├── bootstrap.bundle.js │ │ ├── bootstrap.bundle.js.map │ │ ├── bootstrap.bundle.min.js │ │ ├── bootstrap.bundle.min.js.map │ │ ├── bootstrap.js │ │ ├── bootstrap.js.map │ │ ├── bootstrap.min.js │ │ ├── bootstrap.min.js.map │ │ ├── jquery.min.js │ │ └── popper.min.js ├── cli-test │ ├── ingest.test.js │ ├── plugin-dependency.test.js │ ├── plugin-manifest.test.js │ └── url-resolver.test.js ├── cli │ ├── ingest.js │ ├── manifest-resolver.js │ ├── manifest.js │ ├── plugin-dependency.js │ ├── plugin-manifest.js │ ├── update-center.js │ └── url-resolver.js ├── config │ ├── database.js │ ├── default.json │ ├── production.json │ └── test.json ├── docker-compose.yml ├── essentials.yaml ├── ingest-update-center ├── initdb.d │ └── .gitignore ├── migrations │ ├── 20180725143201-create-updates.js │ ├── 20180725143202-create-instances.js │ ├── 20180725143203-create-connections.js │ ├── 20180725143204-create-registrations.js │ ├── 20180725143205-create-versions.js │ ├── 20180725143206-create-errorlog.js │ ├── 20180913193732-create-tainted.js │ └── 20181009204000-drop-uuid_checksum_uniq-key.js ├── package-lock.json ├── package.json ├── prepare-essentials ├── public │ └── favicon.ico ├── scripts │ ├── check-psql │ └── upload-update-level ├── seeders │ ├── .gitignore │ └── 20180424162454-null-update-level.js ├── src │ ├── app.hooks.js │ ├── app.js │ ├── channels.js │ ├── homepage.js │ ├── hooks │ │ ├── dbtimestamp.js │ │ ├── ensureuuid.js │ │ ├── internalapi.js │ │ ├── internalonly.js │ │ └── logger.js │ ├── index.js │ ├── libs │ │ ├── auth-verifier.js │ │ └── sentry.js │ ├── middleware │ │ └── index.js │ ├── models │ │ ├── connection.js │ │ ├── index.js │ │ ├── instance.js │ │ ├── registration.js │ │ ├── tainted.js │ │ ├── update.js │ │ └── version.js │ ├── sequelize-swagger.js │ ├── sequelize.js │ └── services │ │ ├── errorTelemetry │ │ ├── errorTelemetry.class.js │ │ ├── errorTelemetry.hooks.js │ │ └── errorTelemetry.service.js │ │ ├── index.js │ │ ├── registration │ │ ├── registration.hooks.js │ │ └── registration.service.js │ │ ├── status │ │ ├── status.hooks.js │ │ └── status.service.js │ │ ├── tainted │ │ ├── tainted.hooks.js │ │ └── tainted.service.js │ │ ├── update │ │ ├── update.class.js │ │ ├── update.hooks.js │ │ └── update.service.js │ │ └── versions │ │ ├── versions.hooks.js │ │ └── versions.service.js ├── test │ ├── app.hooks.test.js │ ├── hooks │ │ ├── dbtimestamp.test.js │ │ ├── ensureuuid.test.js │ │ └── internalapi.test.js │ ├── libs │ │ ├── auth-verifier.test.js │ │ └── sentry.test.js │ ├── middleware.test.js │ └── services │ │ ├── errortelemetry.hooks.test.js │ │ ├── errortelemetry.test.js │ │ ├── registration.test.js │ │ ├── status.hooks.test.js │ │ ├── status.test.js │ │ ├── update.class.test.js │ │ ├── update.hooks.test.js │ │ ├── update.test.js │ │ ├── versions.hooks.test.js │ │ └── versions.test.js ├── views │ └── index.ejs └── wait-for-postgres.sh └── tools ├── compose ├── jq ├── jsonlint ├── mvn ├── node ├── npm ├── shellcheck └── yamllint /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.sw* 2 | build/ 3 | shunit2 4 | .vscode/ 5 | -------------------------------------------------------------------------------- /HACKING.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/HACKING.adoc -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/Makefile -------------------------------------------------------------------------------- /README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/README.adoc -------------------------------------------------------------------------------- /activate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/activate -------------------------------------------------------------------------------- /distribution/.gitignore: -------------------------------------------------------------------------------- 1 | commit.txt 2 | -------------------------------------------------------------------------------- /distribution/.yamllint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/distribution/.yamllint -------------------------------------------------------------------------------- /distribution/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/distribution/Dockerfile -------------------------------------------------------------------------------- /distribution/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/distribution/Makefile -------------------------------------------------------------------------------- /distribution/bin/start-dev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/distribution/bin/start-dev.sh -------------------------------------------------------------------------------- /distribution/client/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/distribution/client/.eslintrc.json -------------------------------------------------------------------------------- /distribution/client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/distribution/client/.gitignore -------------------------------------------------------------------------------- /distribution/client/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/distribution/client/Makefile -------------------------------------------------------------------------------- /distribution/client/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/distribution/client/README.adoc -------------------------------------------------------------------------------- /distribution/client/config/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/distribution/client/config/default.json -------------------------------------------------------------------------------- /distribution/client/config/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/distribution/client/config/test.json -------------------------------------------------------------------------------- /distribution/client/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/distribution/client/package-lock.json -------------------------------------------------------------------------------- /distribution/client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/distribution/client/package.json -------------------------------------------------------------------------------- /distribution/client/patches/promise-request-retry+1.0.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/distribution/client/patches/promise-request-retry+1.0.1.patch -------------------------------------------------------------------------------- /distribution/client/public/502.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/distribution/client/public/502.html -------------------------------------------------------------------------------- /distribution/client/public/521.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/distribution/client/public/521.html -------------------------------------------------------------------------------- /distribution/client/public/docs/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /distribution/client/public/docs/asciidoctor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/distribution/client/public/docs/asciidoctor.css -------------------------------------------------------------------------------- /distribution/client/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/distribution/client/public/index.html -------------------------------------------------------------------------------- /distribution/client/public/static/demon_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/distribution/client/public/static/demon_256.png -------------------------------------------------------------------------------- /distribution/client/public/static/magic_v8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/distribution/client/public/static/magic_v8.gif -------------------------------------------------------------------------------- /distribution/client/public/static/magician_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/distribution/client/public/static/magician_256.png -------------------------------------------------------------------------------- /distribution/client/scripts/render-docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/distribution/client/scripts/render-docs -------------------------------------------------------------------------------- /distribution/client/src/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/distribution/client/src/client.ts -------------------------------------------------------------------------------- /distribution/client/src/lib/__mocks__/fs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/distribution/client/src/lib/__mocks__/fs.js -------------------------------------------------------------------------------- /distribution/client/src/lib/checksum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/distribution/client/src/lib/checksum.ts -------------------------------------------------------------------------------- /distribution/client/src/lib/downloader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/distribution/client/src/lib/downloader.ts -------------------------------------------------------------------------------- /distribution/client/src/lib/error-telemetry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/distribution/client/src/lib/error-telemetry.ts -------------------------------------------------------------------------------- /distribution/client/src/lib/healthchecker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/distribution/client/src/lib/healthchecker.ts -------------------------------------------------------------------------------- /distribution/client/src/lib/periodic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/distribution/client/src/lib/periodic.ts -------------------------------------------------------------------------------- /distribution/client/src/lib/rand-patch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/distribution/client/src/lib/rand-patch.ts -------------------------------------------------------------------------------- /distribution/client/src/lib/registration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/distribution/client/src/lib/registration.ts -------------------------------------------------------------------------------- /distribution/client/src/lib/request-options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/distribution/client/src/lib/request-options.ts -------------------------------------------------------------------------------- /distribution/client/src/lib/snapshotter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/distribution/client/src/lib/snapshotter.ts -------------------------------------------------------------------------------- /distribution/client/src/lib/status.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/distribution/client/src/lib/status.ts -------------------------------------------------------------------------------- /distribution/client/src/lib/storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/distribution/client/src/lib/storage.ts -------------------------------------------------------------------------------- /distribution/client/src/lib/supervisord.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/distribution/client/src/lib/supervisord.ts -------------------------------------------------------------------------------- /distribution/client/src/lib/ui.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/distribution/client/src/lib/ui.ts -------------------------------------------------------------------------------- /distribution/client/src/lib/update.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/distribution/client/src/lib/update.ts -------------------------------------------------------------------------------- /distribution/client/test/checksum.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/distribution/client/test/checksum.test.ts -------------------------------------------------------------------------------- /distribution/client/test/client.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/distribution/client/test/client.test.ts -------------------------------------------------------------------------------- /distribution/client/test/downloader.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/distribution/client/test/downloader.test.ts -------------------------------------------------------------------------------- /distribution/client/test/error-telemetry.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/distribution/client/test/error-telemetry.test.ts -------------------------------------------------------------------------------- /distribution/client/test/healthchecker.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/distribution/client/test/healthchecker.test.ts -------------------------------------------------------------------------------- /distribution/client/test/periodic.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/distribution/client/test/periodic.test.ts -------------------------------------------------------------------------------- /distribution/client/test/registration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/distribution/client/test/registration.test.ts -------------------------------------------------------------------------------- /distribution/client/test/snapshotter.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/distribution/client/test/snapshotter.test.ts -------------------------------------------------------------------------------- /distribution/client/test/status.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/distribution/client/test/status.test.ts -------------------------------------------------------------------------------- /distribution/client/test/storage.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/distribution/client/test/storage.test.ts -------------------------------------------------------------------------------- /distribution/client/test/ui.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/distribution/client/test/ui.test.ts -------------------------------------------------------------------------------- /distribution/client/test/update.rollback.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/distribution/client/test/update.rollback.test.ts -------------------------------------------------------------------------------- /distribution/client/test/update.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/distribution/client/test/update.test.ts -------------------------------------------------------------------------------- /distribution/client/testlib/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/distribution/client/testlib/helpers.ts -------------------------------------------------------------------------------- /distribution/client/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/distribution/client/tsconfig.json -------------------------------------------------------------------------------- /distribution/client/ui-test/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/distribution/client/ui-test/index.test.js -------------------------------------------------------------------------------- /distribution/client/ui/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/distribution/client/ui/index.js -------------------------------------------------------------------------------- /distribution/client/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/distribution/client/webpack.config.js -------------------------------------------------------------------------------- /distribution/config/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/distribution/config/README.adoc -------------------------------------------------------------------------------- /distribution/config/as-code/core.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/distribution/config/as-code/core.yaml -------------------------------------------------------------------------------- /distribution/config/as-code/create-admin-user.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/distribution/config/as-code/create-admin-user.yaml -------------------------------------------------------------------------------- /distribution/config/as-code/metrics-healthchecking.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/distribution/config/as-code/metrics-healthchecking.yaml -------------------------------------------------------------------------------- /distribution/config/as-code/no-executor.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | jenkins: 3 | numExecutors: 0 4 | -------------------------------------------------------------------------------- /distribution/config/logging.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/distribution/config/logging.properties -------------------------------------------------------------------------------- /distribution/config/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/distribution/config/nginx.conf -------------------------------------------------------------------------------- /distribution/config/squid.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/distribution/config/squid.conf -------------------------------------------------------------------------------- /distribution/config/supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/distribution/config/supervisord.conf -------------------------------------------------------------------------------- /distribution/docker-compose.squid-cache.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/distribution/docker-compose.squid-cache.yml -------------------------------------------------------------------------------- /distribution/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/distribution/docker-compose.yml -------------------------------------------------------------------------------- /distribution/flavors/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/distribution/flavors/Makefile -------------------------------------------------------------------------------- /distribution/flavors/aws-ec2-cloud/CloudFormation/cloudformation-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/distribution/flavors/aws-ec2-cloud/CloudFormation/cloudformation-template.json -------------------------------------------------------------------------------- /distribution/flavors/aws-ec2-cloud/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/distribution/flavors/aws-ec2-cloud/Dockerfile -------------------------------------------------------------------------------- /distribution/flavors/aws-ec2-cloud/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/distribution/flavors/aws-ec2-cloud/README.adoc -------------------------------------------------------------------------------- /distribution/flavors/aws-ec2-cloud/config/as-code/artifact-manager-s3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/distribution/flavors/aws-ec2-cloud/config/as-code/artifact-manager-s3.yaml -------------------------------------------------------------------------------- /distribution/flavors/aws-ec2-cloud/config/as-code/ec2-cloud.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/distribution/flavors/aws-ec2-cloud/config/as-code/ec2-cloud.yaml -------------------------------------------------------------------------------- /distribution/flavors/build-or-push-flavors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/distribution/flavors/build-or-push-flavors.sh -------------------------------------------------------------------------------- /distribution/flavors/docker-cloud/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/distribution/flavors/docker-cloud/Dockerfile -------------------------------------------------------------------------------- /distribution/flavors/docker-cloud/config/as-code/docker-cloud.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/distribution/flavors/docker-cloud/config/as-code/docker-cloud.yaml -------------------------------------------------------------------------------- /distribution/flavors/docker-cloud/config/supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/distribution/flavors/docker-cloud/config/supervisord.conf -------------------------------------------------------------------------------- /distribution/flavors/java11-docker-cloud/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/distribution/flavors/java11-docker-cloud/Dockerfile -------------------------------------------------------------------------------- /distribution/flavors/java11-docker-cloud/config/as-code/docker-cloud.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/distribution/flavors/java11-docker-cloud/config/as-code/docker-cloud.yaml -------------------------------------------------------------------------------- /distribution/flavors/java11-docker-cloud/config/supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/distribution/flavors/java11-docker-cloud/config/supervisord.conf -------------------------------------------------------------------------------- /distribution/packaging-list.client.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/distribution/packaging-list.client.txt -------------------------------------------------------------------------------- /distribution/packaging-list.config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/distribution/packaging-list.config.txt -------------------------------------------------------------------------------- /distribution/packaging-list.scripts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/distribution/packaging-list.scripts.txt -------------------------------------------------------------------------------- /distribution/packaging-list.www.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/distribution/packaging-list.www.txt -------------------------------------------------------------------------------- /distribution/scripts/jenkins-evergreen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/distribution/scripts/jenkins-evergreen.sh -------------------------------------------------------------------------------- /distribution/scripts/start-client.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/distribution/scripts/start-client.sh -------------------------------------------------------------------------------- /distribution/tests/flavors/aws-ec2-cloud/docker-compose.aws-ec2-cloud.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/distribution/tests/flavors/aws-ec2-cloud/docker-compose.aws-ec2-cloud.yml -------------------------------------------------------------------------------- /distribution/tests/flavors/docker-cloud/docker-compose.docker-cloud.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/distribution/tests/flavors/docker-cloud/docker-compose.docker-cloud.yml -------------------------------------------------------------------------------- /distribution/tests/flavors/java11-docker-cloud/docker-compose.java11-docker-cloud.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/distribution/tests/flavors/java11-docker-cloud/docker-compose.java11-docker-cloud.yml -------------------------------------------------------------------------------- /distribution/tests/offline-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/distribution/tests/offline-tests.sh -------------------------------------------------------------------------------- /distribution/tests/rollback-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/distribution/tests/rollback-tests.sh -------------------------------------------------------------------------------- /distribution/tests/rollback/1-ingest-ok.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/distribution/tests/rollback/1-ingest-ok.json -------------------------------------------------------------------------------- /distribution/tests/rollback/2-ingest-borked.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/distribution/tests/rollback/2-ingest-borked.json -------------------------------------------------------------------------------- /distribution/tests/tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/distribution/tests/tests.sh -------------------------------------------------------------------------------- /distribution/tests/utilities: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/distribution/tests/utilities -------------------------------------------------------------------------------- /docs/developer/USE-CASES.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/docs/developer/USE-CASES.adoc -------------------------------------------------------------------------------- /docs/developer/meetings/2018-03-18-JENKINS-49406-quality-bar/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/docs/developer/meetings/2018-03-18-JENKINS-49406-quality-bar/README.adoc -------------------------------------------------------------------------------- /docs/developer/meetings/2018-03-23-JENKINS-49852-pipeline-usage-telemetry/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/docs/developer/meetings/2018-03-23-JENKINS-49852-pipeline-usage-telemetry/README.adoc -------------------------------------------------------------------------------- /docs/developer/meetings/2018-05-07-existing-telemetry-setup-on-jenkins-io/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/docs/developer/meetings/2018-05-07-existing-telemetry-setup-on-jenkins-io/README.adoc -------------------------------------------------------------------------------- /docs/developer/meetings/2018-05-30-JENKINS-51299-developer-access-howto/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/docs/developer/meetings/2018-05-30-JENKINS-51299-developer-access-howto/README.adoc -------------------------------------------------------------------------------- /docs/developer/meetings/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/docs/developer/meetings/README.adoc -------------------------------------------------------------------------------- /docs/developer/meetings/_YYYY-MM-DD-subject-of-meeting/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/docs/developer/meetings/_YYYY-MM-DD-subject-of-meeting/README.adoc -------------------------------------------------------------------------------- /docs/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/docs/index.adoc -------------------------------------------------------------------------------- /node.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/node.mk -------------------------------------------------------------------------------- /services/.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /services/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/.editorconfig -------------------------------------------------------------------------------- /services/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/.eslintrc.json -------------------------------------------------------------------------------- /services/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/.gitignore -------------------------------------------------------------------------------- /services/.rspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/.rspec -------------------------------------------------------------------------------- /services/.sequelizerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/.sequelizerc -------------------------------------------------------------------------------- /services/.yamllint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/.yamllint -------------------------------------------------------------------------------- /services/.yardopts: -------------------------------------------------------------------------------- 1 | --no-private --protected app/**/*.rb - README.adoc LICENSE 2 | -------------------------------------------------------------------------------- /services/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/Dockerfile -------------------------------------------------------------------------------- /services/Dockerfile.migrations: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/Dockerfile.migrations -------------------------------------------------------------------------------- /services/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/Makefile -------------------------------------------------------------------------------- /services/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/README.adoc -------------------------------------------------------------------------------- /services/acceptance/app.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/acceptance/app.test.js -------------------------------------------------------------------------------- /services/acceptance/fixtures/53318/ingest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/acceptance/fixtures/53318/ingest.json -------------------------------------------------------------------------------- /services/acceptance/fixtures/53318/versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/acceptance/fixtures/53318/versions.json -------------------------------------------------------------------------------- /services/acceptance/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/acceptance/helpers.js -------------------------------------------------------------------------------- /services/acceptance/rand-patch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/acceptance/rand-patch.js -------------------------------------------------------------------------------- /services/acceptance/services/errortelemetry.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/acceptance/services/errortelemetry.test.js -------------------------------------------------------------------------------- /services/acceptance/services/registration.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/acceptance/services/registration.test.js -------------------------------------------------------------------------------- /services/acceptance/services/status.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/acceptance/services/status.test.js -------------------------------------------------------------------------------- /services/acceptance/services/tainted.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/acceptance/services/tainted.test.js -------------------------------------------------------------------------------- /services/acceptance/services/update.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/acceptance/services/update.test.js -------------------------------------------------------------------------------- /services/acceptance/services/version.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/acceptance/services/version.test.js -------------------------------------------------------------------------------- /services/acceptance/update-versions.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/acceptance/update-versions.test.js -------------------------------------------------------------------------------- /services/assets/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/assets/css/bootstrap-grid.css -------------------------------------------------------------------------------- /services/assets/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/assets/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /services/assets/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/assets/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /services/assets/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/assets/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /services/assets/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/assets/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /services/assets/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/assets/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /services/assets/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/assets/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /services/assets/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/assets/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /services/assets/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/assets/css/bootstrap.css -------------------------------------------------------------------------------- /services/assets/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/assets/css/bootstrap.css.map -------------------------------------------------------------------------------- /services/assets/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/assets/css/bootstrap.min.css -------------------------------------------------------------------------------- /services/assets/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/assets/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /services/assets/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/assets/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /services/assets/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/assets/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /services/assets/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/assets/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /services/assets/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/assets/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /services/assets/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/assets/js/bootstrap.js -------------------------------------------------------------------------------- /services/assets/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/assets/js/bootstrap.js.map -------------------------------------------------------------------------------- /services/assets/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/assets/js/bootstrap.min.js -------------------------------------------------------------------------------- /services/assets/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/assets/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /services/assets/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/assets/js/jquery.min.js -------------------------------------------------------------------------------- /services/assets/js/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/assets/js/popper.min.js -------------------------------------------------------------------------------- /services/cli-test/ingest.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/cli-test/ingest.test.js -------------------------------------------------------------------------------- /services/cli-test/plugin-dependency.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/cli-test/plugin-dependency.test.js -------------------------------------------------------------------------------- /services/cli-test/plugin-manifest.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/cli-test/plugin-manifest.test.js -------------------------------------------------------------------------------- /services/cli-test/url-resolver.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/cli-test/url-resolver.test.js -------------------------------------------------------------------------------- /services/cli/ingest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/cli/ingest.js -------------------------------------------------------------------------------- /services/cli/manifest-resolver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/cli/manifest-resolver.js -------------------------------------------------------------------------------- /services/cli/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/cli/manifest.js -------------------------------------------------------------------------------- /services/cli/plugin-dependency.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/cli/plugin-dependency.js -------------------------------------------------------------------------------- /services/cli/plugin-manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/cli/plugin-manifest.js -------------------------------------------------------------------------------- /services/cli/update-center.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/cli/update-center.js -------------------------------------------------------------------------------- /services/cli/url-resolver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/cli/url-resolver.js -------------------------------------------------------------------------------- /services/config/database.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/config/database.js -------------------------------------------------------------------------------- /services/config/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/config/default.json -------------------------------------------------------------------------------- /services/config/production.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/config/production.json -------------------------------------------------------------------------------- /services/config/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/config/test.json -------------------------------------------------------------------------------- /services/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/docker-compose.yml -------------------------------------------------------------------------------- /services/essentials.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/essentials.yaml -------------------------------------------------------------------------------- /services/ingest-update-center: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/ingest-update-center -------------------------------------------------------------------------------- /services/initdb.d/.gitignore: -------------------------------------------------------------------------------- 1 | *.sql 2 | -------------------------------------------------------------------------------- /services/migrations/20180725143201-create-updates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/migrations/20180725143201-create-updates.js -------------------------------------------------------------------------------- /services/migrations/20180725143202-create-instances.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/migrations/20180725143202-create-instances.js -------------------------------------------------------------------------------- /services/migrations/20180725143203-create-connections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/migrations/20180725143203-create-connections.js -------------------------------------------------------------------------------- /services/migrations/20180725143204-create-registrations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/migrations/20180725143204-create-registrations.js -------------------------------------------------------------------------------- /services/migrations/20180725143205-create-versions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/migrations/20180725143205-create-versions.js -------------------------------------------------------------------------------- /services/migrations/20180725143206-create-errorlog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/migrations/20180725143206-create-errorlog.js -------------------------------------------------------------------------------- /services/migrations/20180913193732-create-tainted.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/migrations/20180913193732-create-tainted.js -------------------------------------------------------------------------------- /services/migrations/20181009204000-drop-uuid_checksum_uniq-key.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/migrations/20181009204000-drop-uuid_checksum_uniq-key.js -------------------------------------------------------------------------------- /services/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/package-lock.json -------------------------------------------------------------------------------- /services/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/package.json -------------------------------------------------------------------------------- /services/prepare-essentials: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/prepare-essentials -------------------------------------------------------------------------------- /services/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/public/favicon.ico -------------------------------------------------------------------------------- /services/scripts/check-psql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/scripts/check-psql -------------------------------------------------------------------------------- /services/scripts/upload-update-level: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/scripts/upload-update-level -------------------------------------------------------------------------------- /services/seeders/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/seeders/20180424162454-null-update-level.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/seeders/20180424162454-null-update-level.js -------------------------------------------------------------------------------- /services/src/app.hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/src/app.hooks.js -------------------------------------------------------------------------------- /services/src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/src/app.js -------------------------------------------------------------------------------- /services/src/channels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/src/channels.js -------------------------------------------------------------------------------- /services/src/homepage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/src/homepage.js -------------------------------------------------------------------------------- /services/src/hooks/dbtimestamp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/src/hooks/dbtimestamp.js -------------------------------------------------------------------------------- /services/src/hooks/ensureuuid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/src/hooks/ensureuuid.js -------------------------------------------------------------------------------- /services/src/hooks/internalapi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/src/hooks/internalapi.js -------------------------------------------------------------------------------- /services/src/hooks/internalonly.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/src/hooks/internalonly.js -------------------------------------------------------------------------------- /services/src/hooks/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/src/hooks/logger.js -------------------------------------------------------------------------------- /services/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/src/index.js -------------------------------------------------------------------------------- /services/src/libs/auth-verifier.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/src/libs/auth-verifier.js -------------------------------------------------------------------------------- /services/src/libs/sentry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/src/libs/sentry.js -------------------------------------------------------------------------------- /services/src/middleware/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/src/middleware/index.js -------------------------------------------------------------------------------- /services/src/models/connection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/src/models/connection.js -------------------------------------------------------------------------------- /services/src/models/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/src/models/index.js -------------------------------------------------------------------------------- /services/src/models/instance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/src/models/instance.js -------------------------------------------------------------------------------- /services/src/models/registration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/src/models/registration.js -------------------------------------------------------------------------------- /services/src/models/tainted.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/src/models/tainted.js -------------------------------------------------------------------------------- /services/src/models/update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/src/models/update.js -------------------------------------------------------------------------------- /services/src/models/version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/src/models/version.js -------------------------------------------------------------------------------- /services/src/sequelize-swagger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/src/sequelize-swagger.js -------------------------------------------------------------------------------- /services/src/sequelize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/src/sequelize.js -------------------------------------------------------------------------------- /services/src/services/errorTelemetry/errorTelemetry.class.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/src/services/errorTelemetry/errorTelemetry.class.js -------------------------------------------------------------------------------- /services/src/services/errorTelemetry/errorTelemetry.hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/src/services/errorTelemetry/errorTelemetry.hooks.js -------------------------------------------------------------------------------- /services/src/services/errorTelemetry/errorTelemetry.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/src/services/errorTelemetry/errorTelemetry.service.js -------------------------------------------------------------------------------- /services/src/services/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/src/services/index.js -------------------------------------------------------------------------------- /services/src/services/registration/registration.hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/src/services/registration/registration.hooks.js -------------------------------------------------------------------------------- /services/src/services/registration/registration.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/src/services/registration/registration.service.js -------------------------------------------------------------------------------- /services/src/services/status/status.hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/src/services/status/status.hooks.js -------------------------------------------------------------------------------- /services/src/services/status/status.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/src/services/status/status.service.js -------------------------------------------------------------------------------- /services/src/services/tainted/tainted.hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/src/services/tainted/tainted.hooks.js -------------------------------------------------------------------------------- /services/src/services/tainted/tainted.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/src/services/tainted/tainted.service.js -------------------------------------------------------------------------------- /services/src/services/update/update.class.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/src/services/update/update.class.js -------------------------------------------------------------------------------- /services/src/services/update/update.hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/src/services/update/update.hooks.js -------------------------------------------------------------------------------- /services/src/services/update/update.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/src/services/update/update.service.js -------------------------------------------------------------------------------- /services/src/services/versions/versions.hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/src/services/versions/versions.hooks.js -------------------------------------------------------------------------------- /services/src/services/versions/versions.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/src/services/versions/versions.service.js -------------------------------------------------------------------------------- /services/test/app.hooks.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/test/app.hooks.test.js -------------------------------------------------------------------------------- /services/test/hooks/dbtimestamp.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/test/hooks/dbtimestamp.test.js -------------------------------------------------------------------------------- /services/test/hooks/ensureuuid.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/test/hooks/ensureuuid.test.js -------------------------------------------------------------------------------- /services/test/hooks/internalapi.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/test/hooks/internalapi.test.js -------------------------------------------------------------------------------- /services/test/libs/auth-verifier.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/test/libs/auth-verifier.test.js -------------------------------------------------------------------------------- /services/test/libs/sentry.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/test/libs/sentry.test.js -------------------------------------------------------------------------------- /services/test/middleware.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/test/middleware.test.js -------------------------------------------------------------------------------- /services/test/services/errortelemetry.hooks.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/test/services/errortelemetry.hooks.test.js -------------------------------------------------------------------------------- /services/test/services/errortelemetry.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/test/services/errortelemetry.test.js -------------------------------------------------------------------------------- /services/test/services/registration.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/test/services/registration.test.js -------------------------------------------------------------------------------- /services/test/services/status.hooks.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/test/services/status.hooks.test.js -------------------------------------------------------------------------------- /services/test/services/status.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/test/services/status.test.js -------------------------------------------------------------------------------- /services/test/services/update.class.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/test/services/update.class.test.js -------------------------------------------------------------------------------- /services/test/services/update.hooks.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/test/services/update.hooks.test.js -------------------------------------------------------------------------------- /services/test/services/update.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/test/services/update.test.js -------------------------------------------------------------------------------- /services/test/services/versions.hooks.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/test/services/versions.hooks.test.js -------------------------------------------------------------------------------- /services/test/services/versions.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/test/services/versions.test.js -------------------------------------------------------------------------------- /services/views/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/views/index.ejs -------------------------------------------------------------------------------- /services/wait-for-postgres.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/services/wait-for-postgres.sh -------------------------------------------------------------------------------- /tools/compose: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/tools/compose -------------------------------------------------------------------------------- /tools/jq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/tools/jq -------------------------------------------------------------------------------- /tools/jsonlint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/tools/jsonlint -------------------------------------------------------------------------------- /tools/mvn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/tools/mvn -------------------------------------------------------------------------------- /tools/node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/tools/node -------------------------------------------------------------------------------- /tools/npm: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | exec $(dirname $0)/node npm $@ 4 | -------------------------------------------------------------------------------- /tools/shellcheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/tools/shellcheck -------------------------------------------------------------------------------- /tools/yamllint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/evergreen/HEAD/tools/yamllint --------------------------------------------------------------------------------