├── .gitignore ├── .python-version ├── .travis.yml ├── Dockerfile ├── LICENSE.md ├── Makefile ├── README.md ├── codecov.yml ├── common.sh ├── docs ├── logo-glyph.svg ├── logo-tagline.svg └── logo.png ├── format ├── install.sh ├── lighter ├── requirements.txt ├── setup.cfg ├── src ├── hooks │ └── hook-urllib2.py ├── lighter │ ├── __init__.py │ ├── datadog.py │ ├── docker.py │ ├── graphite.py │ ├── hipchat.py │ ├── main.py │ ├── maven.py │ ├── newrelic.py │ ├── secretary.py │ ├── slack.py │ ├── test.py │ ├── test │ │ ├── __init__.py │ │ ├── canary_test.py │ │ ├── datadog_test.py │ │ ├── deploy_test.py │ │ ├── docker_test.py │ │ ├── graphite_test.py │ │ ├── hipchat_test.py │ │ ├── maven_test.py │ │ ├── newrelic_test.py │ │ ├── secretary_test.py │ │ ├── slack_test.py │ │ └── util_test.py │ └── util.py └── resources │ ├── repository │ └── com │ │ └── meltwater │ │ ├── myservice-broken │ │ └── 1.0.0 │ │ │ └── myservice-broken-1.0.0.json │ │ ├── myservice-classifier │ │ ├── 1.0.0 │ │ │ └── myservice-classifier-1.0.0-marathon.json │ │ └── 1.1.1-SNAPSHOT │ │ │ └── myservice-classifier-1.1.1-SNAPSHOT-marathon.json │ │ ├── myservice-env │ │ └── 1.0.0 │ │ │ └── myservice-env-1.0.0.json │ │ ├── myservice-non-docker │ │ ├── 1.0.0 │ │ │ └── myservice-non-docker-1.0.0.json │ │ └── maven-metadata.xml │ │ ├── myservice-snapshot │ │ ├── 1.1.1-SNAPSHOT │ │ │ ├── maven-metadata.xml │ │ │ └── myservice-snapshot-1.1.1-20151102.035053-8-marathon.json │ │ └── maven-metadata.xml │ │ └── myservice │ │ ├── 1.0.0 │ │ └── myservice-1.0.0.json │ │ ├── 1.1.0 │ │ └── myservice-1.1.0.json │ │ ├── 1.1.1-SNAPSHOT │ │ ├── maven-metadata.xml │ │ └── myservice-1.1.1-SNAPSHOT.json │ │ └── maven-metadata.xml │ └── yaml │ ├── globals.yml │ ├── integration │ ├── datadog-config-tags.yml │ ├── datadog-default-tags.yml │ ├── globals.yml │ ├── graphite-config-tags.yml │ ├── myservice-canary1.yml │ ├── myservice-canary2.yml │ ├── myservice-canary3.yml │ ├── myservice-nonstring-envkey.yml │ ├── myservice-nonstring-envvar.yml │ ├── myservice-unresolved-variable.yml │ ├── myservice-version-range.yml │ └── myservice.yml │ ├── myprofile1.yml │ ├── myprofile2.yml │ └── staging │ ├── globals.yml │ ├── keys │ ├── config-private-key.pem │ ├── config-public-key.pem │ ├── master-private-key.pem │ ├── master-public-key.pem │ ├── myservice-private-key.pem │ └── myservice-public-key.pem │ ├── myservice-broken.yml │ ├── myservice-classifier.yml │ ├── myservice-docker-private-auth.yml │ ├── myservice-docker-private-repo.yml │ ├── myservice-docker-private.yml │ ├── myservice-embedded-encrypted-url.yml │ ├── myservice-encrypted-dots.yml │ ├── myservice-encrypted-password.yml │ ├── myservice-encrypted-substrings.yml │ ├── myservice-env-maven.yml │ ├── myservice-env-variable.yml │ ├── myservice-nomaven.yml │ ├── myservice-non-docker.yml │ ├── myservice-nosecret.yml │ ├── myservice-password.yml │ ├── myservice-servicekey.yml │ ├── myservice-serviceport-nooverride.yml │ ├── myservice-serviceport-override.yml │ ├── myservice-snapshot.yml │ ├── myservice-unique-snapshot.yml │ └── myservice.yml └── test /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltwaterArchive/lighter/HEAD/.gitignore -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 2.7.13 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltwaterArchive/lighter/HEAD/.travis.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltwaterArchive/lighter/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltwaterArchive/lighter/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltwaterArchive/lighter/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltwaterArchive/lighter/HEAD/README.md -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltwaterArchive/lighter/HEAD/codecov.yml -------------------------------------------------------------------------------- /common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltwaterArchive/lighter/HEAD/common.sh -------------------------------------------------------------------------------- /docs/logo-glyph.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltwaterArchive/lighter/HEAD/docs/logo-glyph.svg -------------------------------------------------------------------------------- /docs/logo-tagline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltwaterArchive/lighter/HEAD/docs/logo-tagline.svg -------------------------------------------------------------------------------- /docs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltwaterArchive/lighter/HEAD/docs/logo.png -------------------------------------------------------------------------------- /format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltwaterArchive/lighter/HEAD/format -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltwaterArchive/lighter/HEAD/install.sh -------------------------------------------------------------------------------- /lighter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltwaterArchive/lighter/HEAD/lighter -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltwaterArchive/lighter/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltwaterArchive/lighter/HEAD/setup.cfg -------------------------------------------------------------------------------- /src/hooks/hook-urllib2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltwaterArchive/lighter/HEAD/src/hooks/hook-urllib2.py -------------------------------------------------------------------------------- /src/lighter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/lighter/datadog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltwaterArchive/lighter/HEAD/src/lighter/datadog.py -------------------------------------------------------------------------------- /src/lighter/docker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltwaterArchive/lighter/HEAD/src/lighter/docker.py -------------------------------------------------------------------------------- /src/lighter/graphite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltwaterArchive/lighter/HEAD/src/lighter/graphite.py -------------------------------------------------------------------------------- /src/lighter/hipchat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltwaterArchive/lighter/HEAD/src/lighter/hipchat.py -------------------------------------------------------------------------------- /src/lighter/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltwaterArchive/lighter/HEAD/src/lighter/main.py -------------------------------------------------------------------------------- /src/lighter/maven.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltwaterArchive/lighter/HEAD/src/lighter/maven.py -------------------------------------------------------------------------------- /src/lighter/newrelic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltwaterArchive/lighter/HEAD/src/lighter/newrelic.py -------------------------------------------------------------------------------- /src/lighter/secretary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltwaterArchive/lighter/HEAD/src/lighter/secretary.py -------------------------------------------------------------------------------- /src/lighter/slack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltwaterArchive/lighter/HEAD/src/lighter/slack.py -------------------------------------------------------------------------------- /src/lighter/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltwaterArchive/lighter/HEAD/src/lighter/test.py -------------------------------------------------------------------------------- /src/lighter/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/lighter/test/canary_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltwaterArchive/lighter/HEAD/src/lighter/test/canary_test.py -------------------------------------------------------------------------------- /src/lighter/test/datadog_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltwaterArchive/lighter/HEAD/src/lighter/test/datadog_test.py -------------------------------------------------------------------------------- /src/lighter/test/deploy_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltwaterArchive/lighter/HEAD/src/lighter/test/deploy_test.py -------------------------------------------------------------------------------- /src/lighter/test/docker_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltwaterArchive/lighter/HEAD/src/lighter/test/docker_test.py -------------------------------------------------------------------------------- /src/lighter/test/graphite_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltwaterArchive/lighter/HEAD/src/lighter/test/graphite_test.py -------------------------------------------------------------------------------- /src/lighter/test/hipchat_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltwaterArchive/lighter/HEAD/src/lighter/test/hipchat_test.py -------------------------------------------------------------------------------- /src/lighter/test/maven_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltwaterArchive/lighter/HEAD/src/lighter/test/maven_test.py -------------------------------------------------------------------------------- /src/lighter/test/newrelic_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltwaterArchive/lighter/HEAD/src/lighter/test/newrelic_test.py -------------------------------------------------------------------------------- /src/lighter/test/secretary_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltwaterArchive/lighter/HEAD/src/lighter/test/secretary_test.py -------------------------------------------------------------------------------- /src/lighter/test/slack_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltwaterArchive/lighter/HEAD/src/lighter/test/slack_test.py -------------------------------------------------------------------------------- /src/lighter/test/util_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltwaterArchive/lighter/HEAD/src/lighter/test/util_test.py -------------------------------------------------------------------------------- /src/lighter/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltwaterArchive/lighter/HEAD/src/lighter/util.py -------------------------------------------------------------------------------- /src/resources/repository/com/meltwater/myservice-broken/1.0.0/myservice-broken-1.0.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltwaterArchive/lighter/HEAD/src/resources/repository/com/meltwater/myservice-broken/1.0.0/myservice-broken-1.0.0.json -------------------------------------------------------------------------------- /src/resources/repository/com/meltwater/myservice-classifier/1.0.0/myservice-classifier-1.0.0-marathon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltwaterArchive/lighter/HEAD/src/resources/repository/com/meltwater/myservice-classifier/1.0.0/myservice-classifier-1.0.0-marathon.json -------------------------------------------------------------------------------- /src/resources/repository/com/meltwater/myservice-classifier/1.1.1-SNAPSHOT/myservice-classifier-1.1.1-SNAPSHOT-marathon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltwaterArchive/lighter/HEAD/src/resources/repository/com/meltwater/myservice-classifier/1.1.1-SNAPSHOT/myservice-classifier-1.1.1-SNAPSHOT-marathon.json -------------------------------------------------------------------------------- /src/resources/repository/com/meltwater/myservice-env/1.0.0/myservice-env-1.0.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltwaterArchive/lighter/HEAD/src/resources/repository/com/meltwater/myservice-env/1.0.0/myservice-env-1.0.0.json -------------------------------------------------------------------------------- /src/resources/repository/com/meltwater/myservice-non-docker/1.0.0/myservice-non-docker-1.0.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltwaterArchive/lighter/HEAD/src/resources/repository/com/meltwater/myservice-non-docker/1.0.0/myservice-non-docker-1.0.0.json -------------------------------------------------------------------------------- /src/resources/repository/com/meltwater/myservice-non-docker/maven-metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltwaterArchive/lighter/HEAD/src/resources/repository/com/meltwater/myservice-non-docker/maven-metadata.xml -------------------------------------------------------------------------------- /src/resources/repository/com/meltwater/myservice-snapshot/1.1.1-SNAPSHOT/maven-metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltwaterArchive/lighter/HEAD/src/resources/repository/com/meltwater/myservice-snapshot/1.1.1-SNAPSHOT/maven-metadata.xml -------------------------------------------------------------------------------- /src/resources/repository/com/meltwater/myservice-snapshot/1.1.1-SNAPSHOT/myservice-snapshot-1.1.1-20151102.035053-8-marathon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltwaterArchive/lighter/HEAD/src/resources/repository/com/meltwater/myservice-snapshot/1.1.1-SNAPSHOT/myservice-snapshot-1.1.1-20151102.035053-8-marathon.json -------------------------------------------------------------------------------- /src/resources/repository/com/meltwater/myservice-snapshot/maven-metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltwaterArchive/lighter/HEAD/src/resources/repository/com/meltwater/myservice-snapshot/maven-metadata.xml -------------------------------------------------------------------------------- /src/resources/repository/com/meltwater/myservice/1.0.0/myservice-1.0.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltwaterArchive/lighter/HEAD/src/resources/repository/com/meltwater/myservice/1.0.0/myservice-1.0.0.json -------------------------------------------------------------------------------- /src/resources/repository/com/meltwater/myservice/1.1.0/myservice-1.1.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltwaterArchive/lighter/HEAD/src/resources/repository/com/meltwater/myservice/1.1.0/myservice-1.1.0.json -------------------------------------------------------------------------------- /src/resources/repository/com/meltwater/myservice/1.1.1-SNAPSHOT/maven-metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltwaterArchive/lighter/HEAD/src/resources/repository/com/meltwater/myservice/1.1.1-SNAPSHOT/maven-metadata.xml -------------------------------------------------------------------------------- /src/resources/repository/com/meltwater/myservice/1.1.1-SNAPSHOT/myservice-1.1.1-SNAPSHOT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltwaterArchive/lighter/HEAD/src/resources/repository/com/meltwater/myservice/1.1.1-SNAPSHOT/myservice-1.1.1-SNAPSHOT.json -------------------------------------------------------------------------------- /src/resources/repository/com/meltwater/myservice/maven-metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltwaterArchive/lighter/HEAD/src/resources/repository/com/meltwater/myservice/maven-metadata.xml -------------------------------------------------------------------------------- /src/resources/yaml/globals.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltwaterArchive/lighter/HEAD/src/resources/yaml/globals.yml -------------------------------------------------------------------------------- /src/resources/yaml/integration/datadog-config-tags.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltwaterArchive/lighter/HEAD/src/resources/yaml/integration/datadog-config-tags.yml -------------------------------------------------------------------------------- /src/resources/yaml/integration/datadog-default-tags.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltwaterArchive/lighter/HEAD/src/resources/yaml/integration/datadog-default-tags.yml -------------------------------------------------------------------------------- /src/resources/yaml/integration/globals.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltwaterArchive/lighter/HEAD/src/resources/yaml/integration/globals.yml -------------------------------------------------------------------------------- /src/resources/yaml/integration/graphite-config-tags.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltwaterArchive/lighter/HEAD/src/resources/yaml/integration/graphite-config-tags.yml -------------------------------------------------------------------------------- /src/resources/yaml/integration/myservice-canary1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltwaterArchive/lighter/HEAD/src/resources/yaml/integration/myservice-canary1.yml -------------------------------------------------------------------------------- /src/resources/yaml/integration/myservice-canary2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltwaterArchive/lighter/HEAD/src/resources/yaml/integration/myservice-canary2.yml -------------------------------------------------------------------------------- /src/resources/yaml/integration/myservice-canary3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltwaterArchive/lighter/HEAD/src/resources/yaml/integration/myservice-canary3.yml -------------------------------------------------------------------------------- /src/resources/yaml/integration/myservice-nonstring-envkey.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltwaterArchive/lighter/HEAD/src/resources/yaml/integration/myservice-nonstring-envkey.yml -------------------------------------------------------------------------------- /src/resources/yaml/integration/myservice-nonstring-envvar.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltwaterArchive/lighter/HEAD/src/resources/yaml/integration/myservice-nonstring-envvar.yml -------------------------------------------------------------------------------- /src/resources/yaml/integration/myservice-unresolved-variable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltwaterArchive/lighter/HEAD/src/resources/yaml/integration/myservice-unresolved-variable.yml -------------------------------------------------------------------------------- /src/resources/yaml/integration/myservice-version-range.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltwaterArchive/lighter/HEAD/src/resources/yaml/integration/myservice-version-range.yml -------------------------------------------------------------------------------- /src/resources/yaml/integration/myservice.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltwaterArchive/lighter/HEAD/src/resources/yaml/integration/myservice.yml -------------------------------------------------------------------------------- /src/resources/yaml/myprofile1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltwaterArchive/lighter/HEAD/src/resources/yaml/myprofile1.yml -------------------------------------------------------------------------------- /src/resources/yaml/myprofile2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltwaterArchive/lighter/HEAD/src/resources/yaml/myprofile2.yml -------------------------------------------------------------------------------- /src/resources/yaml/staging/globals.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltwaterArchive/lighter/HEAD/src/resources/yaml/staging/globals.yml -------------------------------------------------------------------------------- /src/resources/yaml/staging/keys/config-private-key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltwaterArchive/lighter/HEAD/src/resources/yaml/staging/keys/config-private-key.pem -------------------------------------------------------------------------------- /src/resources/yaml/staging/keys/config-public-key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltwaterArchive/lighter/HEAD/src/resources/yaml/staging/keys/config-public-key.pem -------------------------------------------------------------------------------- /src/resources/yaml/staging/keys/master-private-key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltwaterArchive/lighter/HEAD/src/resources/yaml/staging/keys/master-private-key.pem -------------------------------------------------------------------------------- /src/resources/yaml/staging/keys/master-public-key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltwaterArchive/lighter/HEAD/src/resources/yaml/staging/keys/master-public-key.pem -------------------------------------------------------------------------------- /src/resources/yaml/staging/keys/myservice-private-key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltwaterArchive/lighter/HEAD/src/resources/yaml/staging/keys/myservice-private-key.pem -------------------------------------------------------------------------------- /src/resources/yaml/staging/keys/myservice-public-key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltwaterArchive/lighter/HEAD/src/resources/yaml/staging/keys/myservice-public-key.pem -------------------------------------------------------------------------------- /src/resources/yaml/staging/myservice-broken.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltwaterArchive/lighter/HEAD/src/resources/yaml/staging/myservice-broken.yml -------------------------------------------------------------------------------- /src/resources/yaml/staging/myservice-classifier.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltwaterArchive/lighter/HEAD/src/resources/yaml/staging/myservice-classifier.yml -------------------------------------------------------------------------------- /src/resources/yaml/staging/myservice-docker-private-auth.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltwaterArchive/lighter/HEAD/src/resources/yaml/staging/myservice-docker-private-auth.yml -------------------------------------------------------------------------------- /src/resources/yaml/staging/myservice-docker-private-repo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltwaterArchive/lighter/HEAD/src/resources/yaml/staging/myservice-docker-private-repo.yml -------------------------------------------------------------------------------- /src/resources/yaml/staging/myservice-docker-private.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltwaterArchive/lighter/HEAD/src/resources/yaml/staging/myservice-docker-private.yml -------------------------------------------------------------------------------- /src/resources/yaml/staging/myservice-embedded-encrypted-url.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltwaterArchive/lighter/HEAD/src/resources/yaml/staging/myservice-embedded-encrypted-url.yml -------------------------------------------------------------------------------- /src/resources/yaml/staging/myservice-encrypted-dots.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltwaterArchive/lighter/HEAD/src/resources/yaml/staging/myservice-encrypted-dots.yml -------------------------------------------------------------------------------- /src/resources/yaml/staging/myservice-encrypted-password.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltwaterArchive/lighter/HEAD/src/resources/yaml/staging/myservice-encrypted-password.yml -------------------------------------------------------------------------------- /src/resources/yaml/staging/myservice-encrypted-substrings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltwaterArchive/lighter/HEAD/src/resources/yaml/staging/myservice-encrypted-substrings.yml -------------------------------------------------------------------------------- /src/resources/yaml/staging/myservice-env-maven.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltwaterArchive/lighter/HEAD/src/resources/yaml/staging/myservice-env-maven.yml -------------------------------------------------------------------------------- /src/resources/yaml/staging/myservice-env-variable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltwaterArchive/lighter/HEAD/src/resources/yaml/staging/myservice-env-variable.yml -------------------------------------------------------------------------------- /src/resources/yaml/staging/myservice-nomaven.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltwaterArchive/lighter/HEAD/src/resources/yaml/staging/myservice-nomaven.yml -------------------------------------------------------------------------------- /src/resources/yaml/staging/myservice-non-docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltwaterArchive/lighter/HEAD/src/resources/yaml/staging/myservice-non-docker.yml -------------------------------------------------------------------------------- /src/resources/yaml/staging/myservice-nosecret.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltwaterArchive/lighter/HEAD/src/resources/yaml/staging/myservice-nosecret.yml -------------------------------------------------------------------------------- /src/resources/yaml/staging/myservice-password.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltwaterArchive/lighter/HEAD/src/resources/yaml/staging/myservice-password.yml -------------------------------------------------------------------------------- /src/resources/yaml/staging/myservice-servicekey.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltwaterArchive/lighter/HEAD/src/resources/yaml/staging/myservice-servicekey.yml -------------------------------------------------------------------------------- /src/resources/yaml/staging/myservice-serviceport-nooverride.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltwaterArchive/lighter/HEAD/src/resources/yaml/staging/myservice-serviceport-nooverride.yml -------------------------------------------------------------------------------- /src/resources/yaml/staging/myservice-serviceport-override.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltwaterArchive/lighter/HEAD/src/resources/yaml/staging/myservice-serviceport-override.yml -------------------------------------------------------------------------------- /src/resources/yaml/staging/myservice-snapshot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltwaterArchive/lighter/HEAD/src/resources/yaml/staging/myservice-snapshot.yml -------------------------------------------------------------------------------- /src/resources/yaml/staging/myservice-unique-snapshot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltwaterArchive/lighter/HEAD/src/resources/yaml/staging/myservice-unique-snapshot.yml -------------------------------------------------------------------------------- /src/resources/yaml/staging/myservice.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltwaterArchive/lighter/HEAD/src/resources/yaml/staging/myservice.yml -------------------------------------------------------------------------------- /test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltwaterArchive/lighter/HEAD/test --------------------------------------------------------------------------------