├── .devcontainer ├── Dockerfile ├── devcontainer.json ├── docker.sh ├── kind-cluster.yml ├── post-create.sh └── post-start.sh ├── .github └── workflows │ └── automerge.yml ├── .gitignore ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── apptemplates └── simplenodeservice-content │ ├── argohookjobs.yml │ ├── backstagetemplates │ └── catalog-info.yaml │ ├── docs │ └── index.md │ ├── ingress.yml │ ├── monaco │ ├── configure-dt │ │ ├── owners │ │ │ ├── appteam.json │ │ │ └── owners.yml │ │ ├── slos │ │ │ ├── slos.json │ │ │ └── slos.yml │ │ └── synthetic-monitor │ │ │ ├── health-check-http.json │ │ │ └── monitors.yml │ └── manifest.yml │ ├── namespace.yml │ ├── rolebinding.yml │ ├── rollout.yml │ ├── securityScanJob.yml │ ├── service.yml │ └── workflow-post-sync-apply-monaco.yml ├── backstagetemplates └── catalog-info.yaml ├── catalog-info.yaml ├── cluster_installer.py ├── codespaces_test.py ├── customer-apps └── README.md ├── dql-snippets.md ├── dtlogo.svg ├── dynatraceassets ├── dashboards │ ├── argocd-lifecycle-dashboard.json │ ├── argocd-platform-observability.json │ ├── backstage-error-analysis.json │ ├── platform-observability-cockpit.json │ └── team-ownership-dashboard.json ├── notebooks │ ├── analyze-argocd-notification-events.json │ ├── argocd-log-analytics.json │ └── platform-engineering-walkthrough.json └── workflows │ └── lifecycle-events-workflow.json ├── gitops ├── applications │ └── platform │ │ ├── argoconfig.yml │ │ ├── argorollouts.yml │ │ ├── argoworkflows.yml │ │ ├── backstage.yml │ │ ├── cert-manager.yml │ │ ├── cron-jobs.yml.BAK │ │ ├── dynatrace.yml │ │ ├── ingress-nginx.yml │ │ ├── keptn.yml │ │ ├── kubeaudit.yml │ │ ├── namespaces.yml │ │ ├── openfeature.yml │ │ └── opentelemetry.yml ├── manifests │ └── platform │ │ ├── argo-rollouts │ │ └── rollouts.yml │ │ ├── argoconfig │ │ ├── argocd-applicationset-controller.yml │ │ ├── argocd-cm.yml │ │ ├── argocd-dex-server.yml │ │ ├── argocd-metrics.yml │ │ ├── argocd-no-tls.yml │ │ ├── argocd-nodeport.yml │ │ ├── argocd-notifications-cm.yml │ │ ├── argocd-notifications-controller-metrics.yml │ │ ├── argocd-rbac-cm.yml │ │ ├── argocd-repo-server.yml │ │ ├── argocd-server-metrics.yml │ │ └── customer-apps-appset.yml │ │ ├── backstage │ │ ├── config.yml │ │ ├── deployment.yml │ │ └── service.yml │ │ ├── cronJobs │ │ ├── kubebench.yml.BAK │ │ └── kubehunter.yml.BAK │ │ ├── dynatrace │ │ ├── dynatrace.yml │ │ └── workflow.yml │ │ ├── ingress-nginx │ │ └── deploy.yml │ │ ├── keptn │ │ ├── keptn-metrics.yml │ │ └── otelcol-keptnconfig.yml │ │ ├── kubeaudit │ │ └── config.yml │ │ ├── namespaces │ │ ├── argo-rollouts.yaml │ │ ├── argocd.yaml │ │ ├── backstage.yaml │ │ ├── cert-manager.yaml │ │ ├── cronjobs.yaml.BAK │ │ ├── dt.yaml │ │ ├── ingress-nginx.yaml │ │ ├── keptn.yaml │ │ ├── kubeaudit.yaml │ │ ├── monaco.yaml │ │ └── opentelemetry.yml │ │ └── opentelemetry │ │ └── service.yml ├── monaco │ ├── configure-platform │ │ ├── cloud.kubernetes │ │ │ ├── config.json │ │ │ └── config.yml │ │ ├── naming-rules │ │ │ ├── prepend-platform-name-process-group-naming-rule.json │ │ │ ├── prepend-platform-service-naming.json │ │ │ ├── prepend-team-name-service-naming-rule.json │ │ │ └── rules.yml │ │ ├── owners │ │ │ ├── owners.yml │ │ │ └── teamoutline.json │ │ └── synthetic-monitor │ │ │ ├── health-check-http.json │ │ │ └── monitors.yml │ └── manifest.yml └── platform.yml ├── handson ├── handson1.md ├── handson2.md ├── handson3.md ├── handson4.md └── handson5.md ├── images ├── argocd_overview.png ├── backstage_overview.png ├── branch-not-behind-upstream.png ├── codespace_new_with_options.jpg ├── codespaces_associate_with_repo.png ├── copy-main-branch-only-unticked.jpg ├── dynatrace_overview.png ├── enable_actions.png ├── fork_repo.png ├── gitlab_overview.png ├── handson2_21_createinbackstage.png ├── handson2_22_explore_argo_1.png ├── handson2_22_explorerepo_1.png ├── handson2_22_lifecycleevents_1.png ├── handson2_22_lifecycleevents_2.png ├── handson2_22_releaseawareness_1.png ├── handson2_24_configascode_1.png ├── handson2_24_exploreourapp_1.png ├── handson2_25_understandworkflow_1.png ├── handson2_animation_1.png ├── handson2_animation_2.png ├── handson2_animation_3.png ├── handson2_animation_4.png ├── handson2_animation_5.png ├── handson2_animation_6.png ├── handson2_animation_7.png ├── handson2_animation_animated.gif ├── handson3_31_createsrg_1.png ├── handson3_32_automate_srg_1.png ├── handson3_33_run_srg_workflow_1.png ├── handson3_34_add_notifications_1.png ├── handson3_srgoverview_1.png ├── handson3_srgoverview_2.png ├── handson3_srgoverview_3.png ├── handson3_srgoverview_4.png ├── handson3_srgoverview_animated.gif ├── handson4_41_update_version_1.png ├── handson4_41_update_version_2.png ├── platform-engineering-demo-overview.png ├── platform_overview_otel_argocd.png ├── platform_overview_otel_keptn.png ├── platform_setup_animation_1.png ├── platform_setup_animation_2.png ├── platform_setup_animation_3.png ├── platform_setup_animation_4.png ├── platform_setup_animation_5.png ├── platform_setup_animation_6.png ├── platform_setup_animation_7.png ├── platform_setup_animation_8.png ├── platform_setup_animation_9.png ├── platform_setup_animation_animated.gif ├── platform_setup_overview.png └── startup_trace.png ├── requirements.txt └── utils.py /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.devcontainer/docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/.devcontainer/docker.sh -------------------------------------------------------------------------------- /.devcontainer/kind-cluster.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/.devcontainer/kind-cluster.yml -------------------------------------------------------------------------------- /.devcontainer/post-create.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/.devcontainer/post-create.sh -------------------------------------------------------------------------------- /.devcontainer/post-start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/.devcontainer/post-start.sh -------------------------------------------------------------------------------- /.github/workflows/automerge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/.github/workflows/automerge.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/README.md -------------------------------------------------------------------------------- /apptemplates/simplenodeservice-content/argohookjobs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/apptemplates/simplenodeservice-content/argohookjobs.yml -------------------------------------------------------------------------------- /apptemplates/simplenodeservice-content/backstagetemplates/catalog-info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/apptemplates/simplenodeservice-content/backstagetemplates/catalog-info.yaml -------------------------------------------------------------------------------- /apptemplates/simplenodeservice-content/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/apptemplates/simplenodeservice-content/docs/index.md -------------------------------------------------------------------------------- /apptemplates/simplenodeservice-content/ingress.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/apptemplates/simplenodeservice-content/ingress.yml -------------------------------------------------------------------------------- /apptemplates/simplenodeservice-content/monaco/configure-dt/owners/appteam.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/apptemplates/simplenodeservice-content/monaco/configure-dt/owners/appteam.json -------------------------------------------------------------------------------- /apptemplates/simplenodeservice-content/monaco/configure-dt/owners/owners.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/apptemplates/simplenodeservice-content/monaco/configure-dt/owners/owners.yml -------------------------------------------------------------------------------- /apptemplates/simplenodeservice-content/monaco/configure-dt/slos/slos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/apptemplates/simplenodeservice-content/monaco/configure-dt/slos/slos.json -------------------------------------------------------------------------------- /apptemplates/simplenodeservice-content/monaco/configure-dt/slos/slos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/apptemplates/simplenodeservice-content/monaco/configure-dt/slos/slos.yml -------------------------------------------------------------------------------- /apptemplates/simplenodeservice-content/monaco/configure-dt/synthetic-monitor/health-check-http.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/apptemplates/simplenodeservice-content/monaco/configure-dt/synthetic-monitor/health-check-http.json -------------------------------------------------------------------------------- /apptemplates/simplenodeservice-content/monaco/configure-dt/synthetic-monitor/monitors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/apptemplates/simplenodeservice-content/monaco/configure-dt/synthetic-monitor/monitors.yml -------------------------------------------------------------------------------- /apptemplates/simplenodeservice-content/monaco/manifest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/apptemplates/simplenodeservice-content/monaco/manifest.yml -------------------------------------------------------------------------------- /apptemplates/simplenodeservice-content/namespace.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/apptemplates/simplenodeservice-content/namespace.yml -------------------------------------------------------------------------------- /apptemplates/simplenodeservice-content/rolebinding.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/apptemplates/simplenodeservice-content/rolebinding.yml -------------------------------------------------------------------------------- /apptemplates/simplenodeservice-content/rollout.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/apptemplates/simplenodeservice-content/rollout.yml -------------------------------------------------------------------------------- /apptemplates/simplenodeservice-content/securityScanJob.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/apptemplates/simplenodeservice-content/securityScanJob.yml -------------------------------------------------------------------------------- /apptemplates/simplenodeservice-content/service.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/apptemplates/simplenodeservice-content/service.yml -------------------------------------------------------------------------------- /apptemplates/simplenodeservice-content/workflow-post-sync-apply-monaco.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/apptemplates/simplenodeservice-content/workflow-post-sync-apply-monaco.yml -------------------------------------------------------------------------------- /backstagetemplates/catalog-info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/backstagetemplates/catalog-info.yaml -------------------------------------------------------------------------------- /catalog-info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/catalog-info.yaml -------------------------------------------------------------------------------- /cluster_installer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/cluster_installer.py -------------------------------------------------------------------------------- /codespaces_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/codespaces_test.py -------------------------------------------------------------------------------- /customer-apps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/customer-apps/README.md -------------------------------------------------------------------------------- /dql-snippets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/dql-snippets.md -------------------------------------------------------------------------------- /dtlogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/dtlogo.svg -------------------------------------------------------------------------------- /dynatraceassets/dashboards/argocd-lifecycle-dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/dynatraceassets/dashboards/argocd-lifecycle-dashboard.json -------------------------------------------------------------------------------- /dynatraceassets/dashboards/argocd-platform-observability.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/dynatraceassets/dashboards/argocd-platform-observability.json -------------------------------------------------------------------------------- /dynatraceassets/dashboards/backstage-error-analysis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/dynatraceassets/dashboards/backstage-error-analysis.json -------------------------------------------------------------------------------- /dynatraceassets/dashboards/platform-observability-cockpit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/dynatraceassets/dashboards/platform-observability-cockpit.json -------------------------------------------------------------------------------- /dynatraceassets/dashboards/team-ownership-dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/dynatraceassets/dashboards/team-ownership-dashboard.json -------------------------------------------------------------------------------- /dynatraceassets/notebooks/analyze-argocd-notification-events.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/dynatraceassets/notebooks/analyze-argocd-notification-events.json -------------------------------------------------------------------------------- /dynatraceassets/notebooks/argocd-log-analytics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/dynatraceassets/notebooks/argocd-log-analytics.json -------------------------------------------------------------------------------- /dynatraceassets/notebooks/platform-engineering-walkthrough.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/dynatraceassets/notebooks/platform-engineering-walkthrough.json -------------------------------------------------------------------------------- /dynatraceassets/workflows/lifecycle-events-workflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/dynatraceassets/workflows/lifecycle-events-workflow.json -------------------------------------------------------------------------------- /gitops/applications/platform/argoconfig.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/gitops/applications/platform/argoconfig.yml -------------------------------------------------------------------------------- /gitops/applications/platform/argorollouts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/gitops/applications/platform/argorollouts.yml -------------------------------------------------------------------------------- /gitops/applications/platform/argoworkflows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/gitops/applications/platform/argoworkflows.yml -------------------------------------------------------------------------------- /gitops/applications/platform/backstage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/gitops/applications/platform/backstage.yml -------------------------------------------------------------------------------- /gitops/applications/platform/cert-manager.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/gitops/applications/platform/cert-manager.yml -------------------------------------------------------------------------------- /gitops/applications/platform/cron-jobs.yml.BAK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/gitops/applications/platform/cron-jobs.yml.BAK -------------------------------------------------------------------------------- /gitops/applications/platform/dynatrace.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/gitops/applications/platform/dynatrace.yml -------------------------------------------------------------------------------- /gitops/applications/platform/ingress-nginx.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/gitops/applications/platform/ingress-nginx.yml -------------------------------------------------------------------------------- /gitops/applications/platform/keptn.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/gitops/applications/platform/keptn.yml -------------------------------------------------------------------------------- /gitops/applications/platform/kubeaudit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/gitops/applications/platform/kubeaudit.yml -------------------------------------------------------------------------------- /gitops/applications/platform/namespaces.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/gitops/applications/platform/namespaces.yml -------------------------------------------------------------------------------- /gitops/applications/platform/openfeature.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/gitops/applications/platform/openfeature.yml -------------------------------------------------------------------------------- /gitops/applications/platform/opentelemetry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/gitops/applications/platform/opentelemetry.yml -------------------------------------------------------------------------------- /gitops/manifests/platform/argo-rollouts/rollouts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/gitops/manifests/platform/argo-rollouts/rollouts.yml -------------------------------------------------------------------------------- /gitops/manifests/platform/argoconfig/argocd-applicationset-controller.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/gitops/manifests/platform/argoconfig/argocd-applicationset-controller.yml -------------------------------------------------------------------------------- /gitops/manifests/platform/argoconfig/argocd-cm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/gitops/manifests/platform/argoconfig/argocd-cm.yml -------------------------------------------------------------------------------- /gitops/manifests/platform/argoconfig/argocd-dex-server.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/gitops/manifests/platform/argoconfig/argocd-dex-server.yml -------------------------------------------------------------------------------- /gitops/manifests/platform/argoconfig/argocd-metrics.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/gitops/manifests/platform/argoconfig/argocd-metrics.yml -------------------------------------------------------------------------------- /gitops/manifests/platform/argoconfig/argocd-no-tls.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/gitops/manifests/platform/argoconfig/argocd-no-tls.yml -------------------------------------------------------------------------------- /gitops/manifests/platform/argoconfig/argocd-nodeport.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/gitops/manifests/platform/argoconfig/argocd-nodeport.yml -------------------------------------------------------------------------------- /gitops/manifests/platform/argoconfig/argocd-notifications-cm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/gitops/manifests/platform/argoconfig/argocd-notifications-cm.yml -------------------------------------------------------------------------------- /gitops/manifests/platform/argoconfig/argocd-notifications-controller-metrics.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/gitops/manifests/platform/argoconfig/argocd-notifications-controller-metrics.yml -------------------------------------------------------------------------------- /gitops/manifests/platform/argoconfig/argocd-rbac-cm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/gitops/manifests/platform/argoconfig/argocd-rbac-cm.yml -------------------------------------------------------------------------------- /gitops/manifests/platform/argoconfig/argocd-repo-server.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/gitops/manifests/platform/argoconfig/argocd-repo-server.yml -------------------------------------------------------------------------------- /gitops/manifests/platform/argoconfig/argocd-server-metrics.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/gitops/manifests/platform/argoconfig/argocd-server-metrics.yml -------------------------------------------------------------------------------- /gitops/manifests/platform/argoconfig/customer-apps-appset.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/gitops/manifests/platform/argoconfig/customer-apps-appset.yml -------------------------------------------------------------------------------- /gitops/manifests/platform/backstage/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/gitops/manifests/platform/backstage/config.yml -------------------------------------------------------------------------------- /gitops/manifests/platform/backstage/deployment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/gitops/manifests/platform/backstage/deployment.yml -------------------------------------------------------------------------------- /gitops/manifests/platform/backstage/service.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/gitops/manifests/platform/backstage/service.yml -------------------------------------------------------------------------------- /gitops/manifests/platform/cronJobs/kubebench.yml.BAK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/gitops/manifests/platform/cronJobs/kubebench.yml.BAK -------------------------------------------------------------------------------- /gitops/manifests/platform/cronJobs/kubehunter.yml.BAK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/gitops/manifests/platform/cronJobs/kubehunter.yml.BAK -------------------------------------------------------------------------------- /gitops/manifests/platform/dynatrace/dynatrace.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/gitops/manifests/platform/dynatrace/dynatrace.yml -------------------------------------------------------------------------------- /gitops/manifests/platform/dynatrace/workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/gitops/manifests/platform/dynatrace/workflow.yml -------------------------------------------------------------------------------- /gitops/manifests/platform/ingress-nginx/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/gitops/manifests/platform/ingress-nginx/deploy.yml -------------------------------------------------------------------------------- /gitops/manifests/platform/keptn/keptn-metrics.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/gitops/manifests/platform/keptn/keptn-metrics.yml -------------------------------------------------------------------------------- /gitops/manifests/platform/keptn/otelcol-keptnconfig.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/gitops/manifests/platform/keptn/otelcol-keptnconfig.yml -------------------------------------------------------------------------------- /gitops/manifests/platform/kubeaudit/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/gitops/manifests/platform/kubeaudit/config.yml -------------------------------------------------------------------------------- /gitops/manifests/platform/namespaces/argo-rollouts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/gitops/manifests/platform/namespaces/argo-rollouts.yaml -------------------------------------------------------------------------------- /gitops/manifests/platform/namespaces/argocd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/gitops/manifests/platform/namespaces/argocd.yaml -------------------------------------------------------------------------------- /gitops/manifests/platform/namespaces/backstage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/gitops/manifests/platform/namespaces/backstage.yaml -------------------------------------------------------------------------------- /gitops/manifests/platform/namespaces/cert-manager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/gitops/manifests/platform/namespaces/cert-manager.yaml -------------------------------------------------------------------------------- /gitops/manifests/platform/namespaces/cronjobs.yaml.BAK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/gitops/manifests/platform/namespaces/cronjobs.yaml.BAK -------------------------------------------------------------------------------- /gitops/manifests/platform/namespaces/dt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/gitops/manifests/platform/namespaces/dt.yaml -------------------------------------------------------------------------------- /gitops/manifests/platform/namespaces/ingress-nginx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/gitops/manifests/platform/namespaces/ingress-nginx.yaml -------------------------------------------------------------------------------- /gitops/manifests/platform/namespaces/keptn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/gitops/manifests/platform/namespaces/keptn.yaml -------------------------------------------------------------------------------- /gitops/manifests/platform/namespaces/kubeaudit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/gitops/manifests/platform/namespaces/kubeaudit.yaml -------------------------------------------------------------------------------- /gitops/manifests/platform/namespaces/monaco.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/gitops/manifests/platform/namespaces/monaco.yaml -------------------------------------------------------------------------------- /gitops/manifests/platform/namespaces/opentelemetry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/gitops/manifests/platform/namespaces/opentelemetry.yml -------------------------------------------------------------------------------- /gitops/manifests/platform/opentelemetry/service.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/gitops/manifests/platform/opentelemetry/service.yml -------------------------------------------------------------------------------- /gitops/monaco/configure-platform/cloud.kubernetes/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/gitops/monaco/configure-platform/cloud.kubernetes/config.json -------------------------------------------------------------------------------- /gitops/monaco/configure-platform/cloud.kubernetes/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/gitops/monaco/configure-platform/cloud.kubernetes/config.yml -------------------------------------------------------------------------------- /gitops/monaco/configure-platform/naming-rules/prepend-platform-name-process-group-naming-rule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/gitops/monaco/configure-platform/naming-rules/prepend-platform-name-process-group-naming-rule.json -------------------------------------------------------------------------------- /gitops/monaco/configure-platform/naming-rules/prepend-platform-service-naming.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/gitops/monaco/configure-platform/naming-rules/prepend-platform-service-naming.json -------------------------------------------------------------------------------- /gitops/monaco/configure-platform/naming-rules/prepend-team-name-service-naming-rule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/gitops/monaco/configure-platform/naming-rules/prepend-team-name-service-naming-rule.json -------------------------------------------------------------------------------- /gitops/monaco/configure-platform/naming-rules/rules.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/gitops/monaco/configure-platform/naming-rules/rules.yml -------------------------------------------------------------------------------- /gitops/monaco/configure-platform/owners/owners.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/gitops/monaco/configure-platform/owners/owners.yml -------------------------------------------------------------------------------- /gitops/monaco/configure-platform/owners/teamoutline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/gitops/monaco/configure-platform/owners/teamoutline.json -------------------------------------------------------------------------------- /gitops/monaco/configure-platform/synthetic-monitor/health-check-http.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/gitops/monaco/configure-platform/synthetic-monitor/health-check-http.json -------------------------------------------------------------------------------- /gitops/monaco/configure-platform/synthetic-monitor/monitors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/gitops/monaco/configure-platform/synthetic-monitor/monitors.yml -------------------------------------------------------------------------------- /gitops/monaco/manifest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/gitops/monaco/manifest.yml -------------------------------------------------------------------------------- /gitops/platform.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/gitops/platform.yml -------------------------------------------------------------------------------- /handson/handson1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/handson/handson1.md -------------------------------------------------------------------------------- /handson/handson2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/handson/handson2.md -------------------------------------------------------------------------------- /handson/handson3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/handson/handson3.md -------------------------------------------------------------------------------- /handson/handson4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/handson/handson4.md -------------------------------------------------------------------------------- /handson/handson5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/handson/handson5.md -------------------------------------------------------------------------------- /images/argocd_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/images/argocd_overview.png -------------------------------------------------------------------------------- /images/backstage_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/images/backstage_overview.png -------------------------------------------------------------------------------- /images/branch-not-behind-upstream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/images/branch-not-behind-upstream.png -------------------------------------------------------------------------------- /images/codespace_new_with_options.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/images/codespace_new_with_options.jpg -------------------------------------------------------------------------------- /images/codespaces_associate_with_repo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/images/codespaces_associate_with_repo.png -------------------------------------------------------------------------------- /images/copy-main-branch-only-unticked.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/images/copy-main-branch-only-unticked.jpg -------------------------------------------------------------------------------- /images/dynatrace_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/images/dynatrace_overview.png -------------------------------------------------------------------------------- /images/enable_actions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/images/enable_actions.png -------------------------------------------------------------------------------- /images/fork_repo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/images/fork_repo.png -------------------------------------------------------------------------------- /images/gitlab_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/images/gitlab_overview.png -------------------------------------------------------------------------------- /images/handson2_21_createinbackstage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/images/handson2_21_createinbackstage.png -------------------------------------------------------------------------------- /images/handson2_22_explore_argo_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/images/handson2_22_explore_argo_1.png -------------------------------------------------------------------------------- /images/handson2_22_explorerepo_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/images/handson2_22_explorerepo_1.png -------------------------------------------------------------------------------- /images/handson2_22_lifecycleevents_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/images/handson2_22_lifecycleevents_1.png -------------------------------------------------------------------------------- /images/handson2_22_lifecycleevents_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/images/handson2_22_lifecycleevents_2.png -------------------------------------------------------------------------------- /images/handson2_22_releaseawareness_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/images/handson2_22_releaseawareness_1.png -------------------------------------------------------------------------------- /images/handson2_24_configascode_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/images/handson2_24_configascode_1.png -------------------------------------------------------------------------------- /images/handson2_24_exploreourapp_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/images/handson2_24_exploreourapp_1.png -------------------------------------------------------------------------------- /images/handson2_25_understandworkflow_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/images/handson2_25_understandworkflow_1.png -------------------------------------------------------------------------------- /images/handson2_animation_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/images/handson2_animation_1.png -------------------------------------------------------------------------------- /images/handson2_animation_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/images/handson2_animation_2.png -------------------------------------------------------------------------------- /images/handson2_animation_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/images/handson2_animation_3.png -------------------------------------------------------------------------------- /images/handson2_animation_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/images/handson2_animation_4.png -------------------------------------------------------------------------------- /images/handson2_animation_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/images/handson2_animation_5.png -------------------------------------------------------------------------------- /images/handson2_animation_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/images/handson2_animation_6.png -------------------------------------------------------------------------------- /images/handson2_animation_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/images/handson2_animation_7.png -------------------------------------------------------------------------------- /images/handson2_animation_animated.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/images/handson2_animation_animated.gif -------------------------------------------------------------------------------- /images/handson3_31_createsrg_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/images/handson3_31_createsrg_1.png -------------------------------------------------------------------------------- /images/handson3_32_automate_srg_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/images/handson3_32_automate_srg_1.png -------------------------------------------------------------------------------- /images/handson3_33_run_srg_workflow_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/images/handson3_33_run_srg_workflow_1.png -------------------------------------------------------------------------------- /images/handson3_34_add_notifications_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/images/handson3_34_add_notifications_1.png -------------------------------------------------------------------------------- /images/handson3_srgoverview_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/images/handson3_srgoverview_1.png -------------------------------------------------------------------------------- /images/handson3_srgoverview_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/images/handson3_srgoverview_2.png -------------------------------------------------------------------------------- /images/handson3_srgoverview_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/images/handson3_srgoverview_3.png -------------------------------------------------------------------------------- /images/handson3_srgoverview_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/images/handson3_srgoverview_4.png -------------------------------------------------------------------------------- /images/handson3_srgoverview_animated.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/images/handson3_srgoverview_animated.gif -------------------------------------------------------------------------------- /images/handson4_41_update_version_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/images/handson4_41_update_version_1.png -------------------------------------------------------------------------------- /images/handson4_41_update_version_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/images/handson4_41_update_version_2.png -------------------------------------------------------------------------------- /images/platform-engineering-demo-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/images/platform-engineering-demo-overview.png -------------------------------------------------------------------------------- /images/platform_overview_otel_argocd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/images/platform_overview_otel_argocd.png -------------------------------------------------------------------------------- /images/platform_overview_otel_keptn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/images/platform_overview_otel_keptn.png -------------------------------------------------------------------------------- /images/platform_setup_animation_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/images/platform_setup_animation_1.png -------------------------------------------------------------------------------- /images/platform_setup_animation_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/images/platform_setup_animation_2.png -------------------------------------------------------------------------------- /images/platform_setup_animation_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/images/platform_setup_animation_3.png -------------------------------------------------------------------------------- /images/platform_setup_animation_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/images/platform_setup_animation_4.png -------------------------------------------------------------------------------- /images/platform_setup_animation_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/images/platform_setup_animation_5.png -------------------------------------------------------------------------------- /images/platform_setup_animation_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/images/platform_setup_animation_6.png -------------------------------------------------------------------------------- /images/platform_setup_animation_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/images/platform_setup_animation_7.png -------------------------------------------------------------------------------- /images/platform_setup_animation_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/images/platform_setup_animation_8.png -------------------------------------------------------------------------------- /images/platform_setup_animation_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/images/platform_setup_animation_9.png -------------------------------------------------------------------------------- /images/platform_setup_animation_animated.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/images/platform_setup_animation_animated.gif -------------------------------------------------------------------------------- /images/platform_setup_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/images/platform_setup_overview.png -------------------------------------------------------------------------------- /images/startup_trace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/images/startup_trace.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/requirements.txt -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynatrace-perfclinics/platform-engineering-demo/HEAD/utils.py --------------------------------------------------------------------------------