├── .gitignore ├── Readme.md ├── concourse └── pipeline │ ├── optional-private-repo-overlay.yaml │ ├── secrets.yaml │ └── spring-petclinic.yaml ├── demo-script.md ├── docs ├── 00-tkg-lab-foundation-gitops.md ├── 00-tkg-lab-foundation.md ├── 01-environment-config-gitops.md ├── 01-environment-config.md ├── 02-tbs-base-install.md ├── 03-tbs-custom-dependencies.md ├── 04-petclinic-workspace.md ├── 05-petclinic-tbs-namespace.md ├── 06-petclinic-db.md ├── 07-petclinic-repos.md ├── 08-petclinic-pipeline-gitops.md ├── 08-petclinic-pipeline.md ├── 09-petclinic-dashboard.md ├── 10-tbs-stack-update.md ├── 11-load-generation.md ├── custom-dashboard.png ├── demo.md ├── locust-test-running.png ├── locust-test-setup.png ├── one-off.md ├── petclinic-db.png ├── petclinic-rebase.png └── tanzu-e2e-cicd.png ├── local-config └── .gitkeep ├── scripts ├── set-pipeline.sh ├── tbs-in-depth-gitops.sh ├── tbs-in-depth-take-2.sh ├── tbs-in-depth.sh ├── tbs-manual-dotnetcore.sh └── tkg-day-2-ops.sh ├── tbs └── demo-cluster-builder-order.yaml └── traffic-generator └── locustfile.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doddatpivotal/tkg-lab-e2e-adaptation/HEAD/.gitignore -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doddatpivotal/tkg-lab-e2e-adaptation/HEAD/Readme.md -------------------------------------------------------------------------------- /concourse/pipeline/optional-private-repo-overlay.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doddatpivotal/tkg-lab-e2e-adaptation/HEAD/concourse/pipeline/optional-private-repo-overlay.yaml -------------------------------------------------------------------------------- /concourse/pipeline/secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doddatpivotal/tkg-lab-e2e-adaptation/HEAD/concourse/pipeline/secrets.yaml -------------------------------------------------------------------------------- /concourse/pipeline/spring-petclinic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doddatpivotal/tkg-lab-e2e-adaptation/HEAD/concourse/pipeline/spring-petclinic.yaml -------------------------------------------------------------------------------- /demo-script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doddatpivotal/tkg-lab-e2e-adaptation/HEAD/demo-script.md -------------------------------------------------------------------------------- /docs/00-tkg-lab-foundation-gitops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doddatpivotal/tkg-lab-e2e-adaptation/HEAD/docs/00-tkg-lab-foundation-gitops.md -------------------------------------------------------------------------------- /docs/00-tkg-lab-foundation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doddatpivotal/tkg-lab-e2e-adaptation/HEAD/docs/00-tkg-lab-foundation.md -------------------------------------------------------------------------------- /docs/01-environment-config-gitops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doddatpivotal/tkg-lab-e2e-adaptation/HEAD/docs/01-environment-config-gitops.md -------------------------------------------------------------------------------- /docs/01-environment-config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doddatpivotal/tkg-lab-e2e-adaptation/HEAD/docs/01-environment-config.md -------------------------------------------------------------------------------- /docs/02-tbs-base-install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doddatpivotal/tkg-lab-e2e-adaptation/HEAD/docs/02-tbs-base-install.md -------------------------------------------------------------------------------- /docs/03-tbs-custom-dependencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doddatpivotal/tkg-lab-e2e-adaptation/HEAD/docs/03-tbs-custom-dependencies.md -------------------------------------------------------------------------------- /docs/04-petclinic-workspace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doddatpivotal/tkg-lab-e2e-adaptation/HEAD/docs/04-petclinic-workspace.md -------------------------------------------------------------------------------- /docs/05-petclinic-tbs-namespace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doddatpivotal/tkg-lab-e2e-adaptation/HEAD/docs/05-petclinic-tbs-namespace.md -------------------------------------------------------------------------------- /docs/06-petclinic-db.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doddatpivotal/tkg-lab-e2e-adaptation/HEAD/docs/06-petclinic-db.md -------------------------------------------------------------------------------- /docs/07-petclinic-repos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doddatpivotal/tkg-lab-e2e-adaptation/HEAD/docs/07-petclinic-repos.md -------------------------------------------------------------------------------- /docs/08-petclinic-pipeline-gitops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doddatpivotal/tkg-lab-e2e-adaptation/HEAD/docs/08-petclinic-pipeline-gitops.md -------------------------------------------------------------------------------- /docs/08-petclinic-pipeline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doddatpivotal/tkg-lab-e2e-adaptation/HEAD/docs/08-petclinic-pipeline.md -------------------------------------------------------------------------------- /docs/09-petclinic-dashboard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doddatpivotal/tkg-lab-e2e-adaptation/HEAD/docs/09-petclinic-dashboard.md -------------------------------------------------------------------------------- /docs/10-tbs-stack-update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doddatpivotal/tkg-lab-e2e-adaptation/HEAD/docs/10-tbs-stack-update.md -------------------------------------------------------------------------------- /docs/11-load-generation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doddatpivotal/tkg-lab-e2e-adaptation/HEAD/docs/11-load-generation.md -------------------------------------------------------------------------------- /docs/custom-dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doddatpivotal/tkg-lab-e2e-adaptation/HEAD/docs/custom-dashboard.png -------------------------------------------------------------------------------- /docs/demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doddatpivotal/tkg-lab-e2e-adaptation/HEAD/docs/demo.md -------------------------------------------------------------------------------- /docs/locust-test-running.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doddatpivotal/tkg-lab-e2e-adaptation/HEAD/docs/locust-test-running.png -------------------------------------------------------------------------------- /docs/locust-test-setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doddatpivotal/tkg-lab-e2e-adaptation/HEAD/docs/locust-test-setup.png -------------------------------------------------------------------------------- /docs/one-off.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doddatpivotal/tkg-lab-e2e-adaptation/HEAD/docs/one-off.md -------------------------------------------------------------------------------- /docs/petclinic-db.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doddatpivotal/tkg-lab-e2e-adaptation/HEAD/docs/petclinic-db.png -------------------------------------------------------------------------------- /docs/petclinic-rebase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doddatpivotal/tkg-lab-e2e-adaptation/HEAD/docs/petclinic-rebase.png -------------------------------------------------------------------------------- /docs/tanzu-e2e-cicd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doddatpivotal/tkg-lab-e2e-adaptation/HEAD/docs/tanzu-e2e-cicd.png -------------------------------------------------------------------------------- /local-config/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/set-pipeline.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doddatpivotal/tkg-lab-e2e-adaptation/HEAD/scripts/set-pipeline.sh -------------------------------------------------------------------------------- /scripts/tbs-in-depth-gitops.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doddatpivotal/tkg-lab-e2e-adaptation/HEAD/scripts/tbs-in-depth-gitops.sh -------------------------------------------------------------------------------- /scripts/tbs-in-depth-take-2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doddatpivotal/tkg-lab-e2e-adaptation/HEAD/scripts/tbs-in-depth-take-2.sh -------------------------------------------------------------------------------- /scripts/tbs-in-depth.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doddatpivotal/tkg-lab-e2e-adaptation/HEAD/scripts/tbs-in-depth.sh -------------------------------------------------------------------------------- /scripts/tbs-manual-dotnetcore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doddatpivotal/tkg-lab-e2e-adaptation/HEAD/scripts/tbs-manual-dotnetcore.sh -------------------------------------------------------------------------------- /scripts/tkg-day-2-ops.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doddatpivotal/tkg-lab-e2e-adaptation/HEAD/scripts/tkg-day-2-ops.sh -------------------------------------------------------------------------------- /tbs/demo-cluster-builder-order.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doddatpivotal/tkg-lab-e2e-adaptation/HEAD/tbs/demo-cluster-builder-order.yaml -------------------------------------------------------------------------------- /traffic-generator/locustfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doddatpivotal/tkg-lab-e2e-adaptation/HEAD/traffic-generator/locustfile.py --------------------------------------------------------------------------------