├── .github ├── pull_request_template.md ├── semantic.yml └── workflows │ ├── pre-release.yml │ └── release.yml ├── .gitignore ├── .versionrc.json ├── CHANGELOG.md ├── CODEOWNERS ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── dynatrace-oneagent ├── deploy-dynatrace-oneagent-openshift.sh └── deploy-dynatrace-oneagent.sh ├── gh-actions-scripts └── post-changelog-actions.sh ├── istio-configuration └── configure-istio.sh ├── load-generation ├── bin │ ├── loadgenerator-linux │ ├── loadgenerator-mac │ └── loadgenerator-win.exe ├── build.sh ├── cartsloadgen │ ├── Dockerfile │ ├── build.sh │ ├── deploy │ │ ├── cartsloadgen-base.yaml │ │ ├── cartsloadgen-fast.yaml │ │ ├── cartsloadgen-faulty.yaml │ │ └── cartsloadgen-prod.yaml │ └── generate_traffic.sh └── main.go ├── onboarding-carts ├── argo │ ├── carts.tgz │ └── carts │ │ ├── Chart.yaml │ │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── carts-db-deployment.yaml │ │ ├── carts-db-service.yaml │ │ ├── keptn-hook.yaml │ │ ├── rollout.yaml │ │ └── service.yaml │ │ └── values.yaml ├── carts-db.tgz ├── carts-db │ ├── Chart.yaml │ ├── templates │ │ ├── carts-db-deployment.yaml │ │ └── carts-db-service.yaml │ └── values.yaml ├── carts.tgz ├── carts │ ├── Chart.yaml │ ├── templates │ │ ├── deployment.yaml │ │ └── service.yaml │ └── values.yaml ├── dynatrace │ └── dynatrace.conf.yaml ├── jmeter │ ├── basiccheck.jmx │ └── load.jmx ├── lighthouse-source-dynatrace.yaml ├── lighthouse-source-prometheus.yaml ├── manifests │ ├── manifest-carts-db.yaml │ └── manifest-carts.yaml ├── remediation.yaml ├── remediation_feature_toggle.yaml ├── shipyard-argo.yaml ├── shipyard-quality-gates.yaml ├── shipyard.yaml ├── sli-config-argo-prometheus.yaml ├── sli-config-dynatrace-no-deployment-tag.yaml ├── sli-config-dynatrace.yaml ├── sli-config-prometheus.yaml ├── slo-quality-gates.yaml ├── slo-self-healing-dynatrace.yaml └── slo-self-healing-prometheus.yaml ├── quickstart ├── .gitignore ├── README.md ├── automated-operations.sh ├── clean-project.sh ├── demo │ ├── helm │ │ ├── hardening_endpoints.yaml │ │ ├── helloservice.tgz │ │ ├── helloservice │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ ├── deployment.yaml │ │ │ │ └── service.yaml │ │ │ └── values.yaml │ │ └── production_endpoints.yaml │ ├── jmeter │ │ ├── jmeter.conf.yaml │ │ └── load.jmx │ ├── job │ │ ├── config.yaml │ │ └── job-executor.yaml │ ├── prometheus │ │ └── sli.yaml │ ├── remediation.yaml │ ├── shipyard.yaml │ └── slo.yaml ├── expose-keptn.sh └── multistage-delivery.sh ├── simplenodeservice ├── .gitignore ├── README.md ├── dynatrace │ ├── createCalculatedMetrics.sh │ ├── createLoadTestingDashboard.sh │ ├── createTestRequestAttributes.sh │ ├── createTestStepCalculatedMetrics.sh │ └── loadtestingdashboard.json ├── helpers │ └── gen_load.sh ├── images │ ├── 4buildoverview.png │ └── simplenodesersviceui.png ├── keptn │ ├── add_resources.sh │ ├── charts.tgz │ ├── charts │ │ ├── Chart.yaml │ │ ├── templates │ │ │ ├── deployment.yaml │ │ │ └── services.yaml │ │ └── values.yaml │ ├── dynatrace │ │ ├── dynatrace.conf.yaml │ │ ├── sli_basic.yaml │ │ └── sli_perftest.yaml │ ├── exposeBridge.sh │ ├── jmeter │ │ ├── basiccheck.jmx │ │ ├── jmeter.conf.yaml │ │ └── load.jmx │ ├── manifests │ │ ├── bridge.yaml │ │ └── gen │ │ │ └── readme.md │ ├── shipyard.yaml │ ├── shipyard_keptn07.yaml │ ├── slo_basic.yaml │ ├── slo_empty.yaml │ └── slo_perftest.yaml ├── keptnevents │ └── configchangeevent.json ├── quality-gate-only │ ├── dynatrace │ │ ├── dynatrace.conf.yaml │ │ ├── sli_basic.yaml │ │ └── sli_perftest.yaml │ ├── shipyard_qualitystageonly.yaml │ ├── slo_basic.yaml │ └── slo_perftest.yaml └── twoframes.html └── unleash-server ├── README.md ├── shipyard.yaml ├── unleash-db.tgz ├── unleash-db ├── Chart.yaml ├── templates │ ├── db-deployment.yaml │ └── db-service.yaml └── values.yaml ├── unleash.tgz └── unleash ├── Chart.yaml ├── templates ├── deployment.yaml └── service.yaml └── values.yaml /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/semantic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/.github/semantic.yml -------------------------------------------------------------------------------- /.github/workflows/pre-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/.github/workflows/pre-release.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/.gitignore -------------------------------------------------------------------------------- /.versionrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/.versionrc.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/README.md -------------------------------------------------------------------------------- /dynatrace-oneagent/deploy-dynatrace-oneagent-openshift.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/dynatrace-oneagent/deploy-dynatrace-oneagent-openshift.sh -------------------------------------------------------------------------------- /dynatrace-oneagent/deploy-dynatrace-oneagent.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/dynatrace-oneagent/deploy-dynatrace-oneagent.sh -------------------------------------------------------------------------------- /gh-actions-scripts/post-changelog-actions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/gh-actions-scripts/post-changelog-actions.sh -------------------------------------------------------------------------------- /istio-configuration/configure-istio.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/istio-configuration/configure-istio.sh -------------------------------------------------------------------------------- /load-generation/bin/loadgenerator-linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/load-generation/bin/loadgenerator-linux -------------------------------------------------------------------------------- /load-generation/bin/loadgenerator-mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/load-generation/bin/loadgenerator-mac -------------------------------------------------------------------------------- /load-generation/bin/loadgenerator-win.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/load-generation/bin/loadgenerator-win.exe -------------------------------------------------------------------------------- /load-generation/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/load-generation/build.sh -------------------------------------------------------------------------------- /load-generation/cartsloadgen/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/load-generation/cartsloadgen/Dockerfile -------------------------------------------------------------------------------- /load-generation/cartsloadgen/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/load-generation/cartsloadgen/build.sh -------------------------------------------------------------------------------- /load-generation/cartsloadgen/deploy/cartsloadgen-base.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/load-generation/cartsloadgen/deploy/cartsloadgen-base.yaml -------------------------------------------------------------------------------- /load-generation/cartsloadgen/deploy/cartsloadgen-fast.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/load-generation/cartsloadgen/deploy/cartsloadgen-fast.yaml -------------------------------------------------------------------------------- /load-generation/cartsloadgen/deploy/cartsloadgen-faulty.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/load-generation/cartsloadgen/deploy/cartsloadgen-faulty.yaml -------------------------------------------------------------------------------- /load-generation/cartsloadgen/deploy/cartsloadgen-prod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/load-generation/cartsloadgen/deploy/cartsloadgen-prod.yaml -------------------------------------------------------------------------------- /load-generation/cartsloadgen/generate_traffic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/load-generation/cartsloadgen/generate_traffic.sh -------------------------------------------------------------------------------- /load-generation/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/load-generation/main.go -------------------------------------------------------------------------------- /onboarding-carts/argo/carts.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/onboarding-carts/argo/carts.tgz -------------------------------------------------------------------------------- /onboarding-carts/argo/carts/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/onboarding-carts/argo/carts/Chart.yaml -------------------------------------------------------------------------------- /onboarding-carts/argo/carts/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/onboarding-carts/argo/carts/templates/NOTES.txt -------------------------------------------------------------------------------- /onboarding-carts/argo/carts/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/onboarding-carts/argo/carts/templates/_helpers.tpl -------------------------------------------------------------------------------- /onboarding-carts/argo/carts/templates/carts-db-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/onboarding-carts/argo/carts/templates/carts-db-deployment.yaml -------------------------------------------------------------------------------- /onboarding-carts/argo/carts/templates/carts-db-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/onboarding-carts/argo/carts/templates/carts-db-service.yaml -------------------------------------------------------------------------------- /onboarding-carts/argo/carts/templates/keptn-hook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/onboarding-carts/argo/carts/templates/keptn-hook.yaml -------------------------------------------------------------------------------- /onboarding-carts/argo/carts/templates/rollout.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/onboarding-carts/argo/carts/templates/rollout.yaml -------------------------------------------------------------------------------- /onboarding-carts/argo/carts/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/onboarding-carts/argo/carts/templates/service.yaml -------------------------------------------------------------------------------- /onboarding-carts/argo/carts/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/onboarding-carts/argo/carts/values.yaml -------------------------------------------------------------------------------- /onboarding-carts/carts-db.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/onboarding-carts/carts-db.tgz -------------------------------------------------------------------------------- /onboarding-carts/carts-db/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/onboarding-carts/carts-db/Chart.yaml -------------------------------------------------------------------------------- /onboarding-carts/carts-db/templates/carts-db-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/onboarding-carts/carts-db/templates/carts-db-deployment.yaml -------------------------------------------------------------------------------- /onboarding-carts/carts-db/templates/carts-db-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/onboarding-carts/carts-db/templates/carts-db-service.yaml -------------------------------------------------------------------------------- /onboarding-carts/carts-db/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/onboarding-carts/carts-db/values.yaml -------------------------------------------------------------------------------- /onboarding-carts/carts.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/onboarding-carts/carts.tgz -------------------------------------------------------------------------------- /onboarding-carts/carts/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/onboarding-carts/carts/Chart.yaml -------------------------------------------------------------------------------- /onboarding-carts/carts/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/onboarding-carts/carts/templates/deployment.yaml -------------------------------------------------------------------------------- /onboarding-carts/carts/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/onboarding-carts/carts/templates/service.yaml -------------------------------------------------------------------------------- /onboarding-carts/carts/values.yaml: -------------------------------------------------------------------------------- 1 | image: docker.io/keptnexamples/carts:0.13.1 2 | replicaCount: 1 -------------------------------------------------------------------------------- /onboarding-carts/dynatrace/dynatrace.conf.yaml: -------------------------------------------------------------------------------- 1 | spec_version: '0.1.0' 2 | dtCreds: dynatrace -------------------------------------------------------------------------------- /onboarding-carts/jmeter/basiccheck.jmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/onboarding-carts/jmeter/basiccheck.jmx -------------------------------------------------------------------------------- /onboarding-carts/jmeter/load.jmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/onboarding-carts/jmeter/load.jmx -------------------------------------------------------------------------------- /onboarding-carts/lighthouse-source-dynatrace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/onboarding-carts/lighthouse-source-dynatrace.yaml -------------------------------------------------------------------------------- /onboarding-carts/lighthouse-source-prometheus.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/onboarding-carts/lighthouse-source-prometheus.yaml -------------------------------------------------------------------------------- /onboarding-carts/manifests/manifest-carts-db.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/onboarding-carts/manifests/manifest-carts-db.yaml -------------------------------------------------------------------------------- /onboarding-carts/manifests/manifest-carts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/onboarding-carts/manifests/manifest-carts.yaml -------------------------------------------------------------------------------- /onboarding-carts/remediation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/onboarding-carts/remediation.yaml -------------------------------------------------------------------------------- /onboarding-carts/remediation_feature_toggle.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/onboarding-carts/remediation_feature_toggle.yaml -------------------------------------------------------------------------------- /onboarding-carts/shipyard-argo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/onboarding-carts/shipyard-argo.yaml -------------------------------------------------------------------------------- /onboarding-carts/shipyard-quality-gates.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/onboarding-carts/shipyard-quality-gates.yaml -------------------------------------------------------------------------------- /onboarding-carts/shipyard.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/onboarding-carts/shipyard.yaml -------------------------------------------------------------------------------- /onboarding-carts/sli-config-argo-prometheus.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/onboarding-carts/sli-config-argo-prometheus.yaml -------------------------------------------------------------------------------- /onboarding-carts/sli-config-dynatrace-no-deployment-tag.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/onboarding-carts/sli-config-dynatrace-no-deployment-tag.yaml -------------------------------------------------------------------------------- /onboarding-carts/sli-config-dynatrace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/onboarding-carts/sli-config-dynatrace.yaml -------------------------------------------------------------------------------- /onboarding-carts/sli-config-prometheus.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/onboarding-carts/sli-config-prometheus.yaml -------------------------------------------------------------------------------- /onboarding-carts/slo-quality-gates.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/onboarding-carts/slo-quality-gates.yaml -------------------------------------------------------------------------------- /onboarding-carts/slo-self-healing-dynatrace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/onboarding-carts/slo-self-healing-dynatrace.yaml -------------------------------------------------------------------------------- /onboarding-carts/slo-self-healing-prometheus.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/onboarding-carts/slo-self-healing-prometheus.yaml -------------------------------------------------------------------------------- /quickstart/.gitignore: -------------------------------------------------------------------------------- 1 | remediation_trigger.json 2 | -------------------------------------------------------------------------------- /quickstart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/quickstart/README.md -------------------------------------------------------------------------------- /quickstart/automated-operations.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/quickstart/automated-operations.sh -------------------------------------------------------------------------------- /quickstart/clean-project.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/quickstart/clean-project.sh -------------------------------------------------------------------------------- /quickstart/demo/helm/hardening_endpoints.yaml: -------------------------------------------------------------------------------- 1 | deploymentURIsLocal: 2 | - "http://helloservice.podtatohead-hardening:80" 3 | -------------------------------------------------------------------------------- /quickstart/demo/helm/helloservice.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/quickstart/demo/helm/helloservice.tgz -------------------------------------------------------------------------------- /quickstart/demo/helm/helloservice/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/quickstart/demo/helm/helloservice/Chart.yaml -------------------------------------------------------------------------------- /quickstart/demo/helm/helloservice/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/quickstart/demo/helm/helloservice/templates/deployment.yaml -------------------------------------------------------------------------------- /quickstart/demo/helm/helloservice/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/quickstart/demo/helm/helloservice/templates/service.yaml -------------------------------------------------------------------------------- /quickstart/demo/helm/helloservice/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/quickstart/demo/helm/helloservice/values.yaml -------------------------------------------------------------------------------- /quickstart/demo/helm/production_endpoints.yaml: -------------------------------------------------------------------------------- 1 | deploymentURIsLocal: 2 | - "http://helloservice.podtatohead-production:80" 3 | -------------------------------------------------------------------------------- /quickstart/demo/jmeter/jmeter.conf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/quickstart/demo/jmeter/jmeter.conf.yaml -------------------------------------------------------------------------------- /quickstart/demo/jmeter/load.jmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/quickstart/demo/jmeter/load.jmx -------------------------------------------------------------------------------- /quickstart/demo/job/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/quickstart/demo/job/config.yaml -------------------------------------------------------------------------------- /quickstart/demo/job/job-executor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/quickstart/demo/job/job-executor.yaml -------------------------------------------------------------------------------- /quickstart/demo/prometheus/sli.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/quickstart/demo/prometheus/sli.yaml -------------------------------------------------------------------------------- /quickstart/demo/remediation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/quickstart/demo/remediation.yaml -------------------------------------------------------------------------------- /quickstart/demo/shipyard.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/quickstart/demo/shipyard.yaml -------------------------------------------------------------------------------- /quickstart/demo/slo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/quickstart/demo/slo.yaml -------------------------------------------------------------------------------- /quickstart/expose-keptn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/quickstart/expose-keptn.sh -------------------------------------------------------------------------------- /quickstart/multistage-delivery.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/quickstart/multistage-delivery.sh -------------------------------------------------------------------------------- /simplenodeservice/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/simplenodeservice/.gitignore -------------------------------------------------------------------------------- /simplenodeservice/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/simplenodeservice/README.md -------------------------------------------------------------------------------- /simplenodeservice/dynatrace/createCalculatedMetrics.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/simplenodeservice/dynatrace/createCalculatedMetrics.sh -------------------------------------------------------------------------------- /simplenodeservice/dynatrace/createLoadTestingDashboard.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/simplenodeservice/dynatrace/createLoadTestingDashboard.sh -------------------------------------------------------------------------------- /simplenodeservice/dynatrace/createTestRequestAttributes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/simplenodeservice/dynatrace/createTestRequestAttributes.sh -------------------------------------------------------------------------------- /simplenodeservice/dynatrace/createTestStepCalculatedMetrics.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/simplenodeservice/dynatrace/createTestStepCalculatedMetrics.sh -------------------------------------------------------------------------------- /simplenodeservice/dynatrace/loadtestingdashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/simplenodeservice/dynatrace/loadtestingdashboard.json -------------------------------------------------------------------------------- /simplenodeservice/helpers/gen_load.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/simplenodeservice/helpers/gen_load.sh -------------------------------------------------------------------------------- /simplenodeservice/images/4buildoverview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/simplenodeservice/images/4buildoverview.png -------------------------------------------------------------------------------- /simplenodeservice/images/simplenodesersviceui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/simplenodeservice/images/simplenodesersviceui.png -------------------------------------------------------------------------------- /simplenodeservice/keptn/add_resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/simplenodeservice/keptn/add_resources.sh -------------------------------------------------------------------------------- /simplenodeservice/keptn/charts.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/simplenodeservice/keptn/charts.tgz -------------------------------------------------------------------------------- /simplenodeservice/keptn/charts/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/simplenodeservice/keptn/charts/Chart.yaml -------------------------------------------------------------------------------- /simplenodeservice/keptn/charts/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/simplenodeservice/keptn/charts/templates/deployment.yaml -------------------------------------------------------------------------------- /simplenodeservice/keptn/charts/templates/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/simplenodeservice/keptn/charts/templates/services.yaml -------------------------------------------------------------------------------- /simplenodeservice/keptn/charts/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/simplenodeservice/keptn/charts/values.yaml -------------------------------------------------------------------------------- /simplenodeservice/keptn/dynatrace/dynatrace.conf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/simplenodeservice/keptn/dynatrace/dynatrace.conf.yaml -------------------------------------------------------------------------------- /simplenodeservice/keptn/dynatrace/sli_basic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/simplenodeservice/keptn/dynatrace/sli_basic.yaml -------------------------------------------------------------------------------- /simplenodeservice/keptn/dynatrace/sli_perftest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/simplenodeservice/keptn/dynatrace/sli_perftest.yaml -------------------------------------------------------------------------------- /simplenodeservice/keptn/exposeBridge.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/simplenodeservice/keptn/exposeBridge.sh -------------------------------------------------------------------------------- /simplenodeservice/keptn/jmeter/basiccheck.jmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/simplenodeservice/keptn/jmeter/basiccheck.jmx -------------------------------------------------------------------------------- /simplenodeservice/keptn/jmeter/jmeter.conf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/simplenodeservice/keptn/jmeter/jmeter.conf.yaml -------------------------------------------------------------------------------- /simplenodeservice/keptn/jmeter/load.jmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/simplenodeservice/keptn/jmeter/load.jmx -------------------------------------------------------------------------------- /simplenodeservice/keptn/manifests/bridge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/simplenodeservice/keptn/manifests/bridge.yaml -------------------------------------------------------------------------------- /simplenodeservice/keptn/manifests/gen/readme.md: -------------------------------------------------------------------------------- 1 | # will be used to generate yaml files -> wohooo! -------------------------------------------------------------------------------- /simplenodeservice/keptn/shipyard.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/simplenodeservice/keptn/shipyard.yaml -------------------------------------------------------------------------------- /simplenodeservice/keptn/shipyard_keptn07.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/simplenodeservice/keptn/shipyard_keptn07.yaml -------------------------------------------------------------------------------- /simplenodeservice/keptn/slo_basic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/simplenodeservice/keptn/slo_basic.yaml -------------------------------------------------------------------------------- /simplenodeservice/keptn/slo_empty.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | spec_version: '0.1.0' 3 | comparison: 4 | objectives: -------------------------------------------------------------------------------- /simplenodeservice/keptn/slo_perftest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/simplenodeservice/keptn/slo_perftest.yaml -------------------------------------------------------------------------------- /simplenodeservice/keptnevents/configchangeevent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/simplenodeservice/keptnevents/configchangeevent.json -------------------------------------------------------------------------------- /simplenodeservice/quality-gate-only/dynatrace/dynatrace.conf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/simplenodeservice/quality-gate-only/dynatrace/dynatrace.conf.yaml -------------------------------------------------------------------------------- /simplenodeservice/quality-gate-only/dynatrace/sli_basic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/simplenodeservice/quality-gate-only/dynatrace/sli_basic.yaml -------------------------------------------------------------------------------- /simplenodeservice/quality-gate-only/dynatrace/sli_perftest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/simplenodeservice/quality-gate-only/dynatrace/sli_perftest.yaml -------------------------------------------------------------------------------- /simplenodeservice/quality-gate-only/shipyard_qualitystageonly.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/simplenodeservice/quality-gate-only/shipyard_qualitystageonly.yaml -------------------------------------------------------------------------------- /simplenodeservice/quality-gate-only/slo_basic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/simplenodeservice/quality-gate-only/slo_basic.yaml -------------------------------------------------------------------------------- /simplenodeservice/quality-gate-only/slo_perftest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/simplenodeservice/quality-gate-only/slo_perftest.yaml -------------------------------------------------------------------------------- /simplenodeservice/twoframes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/simplenodeservice/twoframes.html -------------------------------------------------------------------------------- /unleash-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/unleash-server/README.md -------------------------------------------------------------------------------- /unleash-server/shipyard.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/unleash-server/shipyard.yaml -------------------------------------------------------------------------------- /unleash-server/unleash-db.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/unleash-server/unleash-db.tgz -------------------------------------------------------------------------------- /unleash-server/unleash-db/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/unleash-server/unleash-db/Chart.yaml -------------------------------------------------------------------------------- /unleash-server/unleash-db/templates/db-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/unleash-server/unleash-db/templates/db-deployment.yaml -------------------------------------------------------------------------------- /unleash-server/unleash-db/templates/db-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/unleash-server/unleash-db/templates/db-service.yaml -------------------------------------------------------------------------------- /unleash-server/unleash-db/values.yaml: -------------------------------------------------------------------------------- 1 | image: postgres:10.4 2 | replicaCount: 1 -------------------------------------------------------------------------------- /unleash-server/unleash.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/unleash-server/unleash.tgz -------------------------------------------------------------------------------- /unleash-server/unleash/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/unleash-server/unleash/Chart.yaml -------------------------------------------------------------------------------- /unleash-server/unleash/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/unleash-server/unleash/templates/deployment.yaml -------------------------------------------------------------------------------- /unleash-server/unleash/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keptn/examples/HEAD/unleash-server/unleash/templates/service.yaml -------------------------------------------------------------------------------- /unleash-server/unleash/values.yaml: -------------------------------------------------------------------------------- 1 | image: docker.io/keptnexamples/unleash:1.0.0 2 | replicaCount: 1 --------------------------------------------------------------------------------