├── .devcontainer ├── Containerfile ├── devcontainer.json └── files │ └── .bashrc ├── .gitattributes ├── .gitignore ├── LICENSE ├── OpenShiftDemoTime.code-workspace ├── README.md ├── WIP └── README.md ├── assets ├── byo │ ├── README.md │ ├── credentials-aws │ │ ├── README.md │ │ └── setup.sh │ ├── pull-secret │ │ ├── README.md │ │ └── setup.sh │ └── ssh-keys │ │ ├── README.md │ │ └── setup.sh ├── components │ ├── README.md │ ├── functions │ │ └── login-on-openshift.sh │ ├── openshift-gitops │ │ └── setup.sh │ ├── openshift-local-storage │ │ └── setup.sh │ ├── openshift-logging-coo │ │ └── setup.sh │ ├── openshift-logging-loki │ │ ├── create-s3-and-secret-for-loki.sh │ │ └── setup.sh │ ├── openshift-pipelines │ │ └── setup.sh │ ├── openshift-rhacm-credentials-aws │ │ ├── copy-secret-for-demo-pipelines.sh │ │ └── setup.sh │ ├── openshift-rhacm-deploy-aws-cluster │ │ └── setup.sh │ ├── openshift-rhacm-gitops-cluster │ │ └── setup.sh │ ├── openshift-rhacm-multicluster-observability │ │ └── setup.sh │ ├── openshift-rhacm-multiclusterhub │ │ └── setup.sh │ ├── openshift-rhacm-operator │ │ └── setup.sh │ ├── openshift-serverless │ │ └── setup.sh │ ├── openshift-storage │ │ └── setup.sh │ └── openshift-virtualization │ │ └── setup.sh ├── kustomize │ ├── README.md │ └── base │ │ ├── README.md │ │ ├── openshift-gitops │ │ ├── kustomization.yaml │ │ └── resources │ │ │ ├── namespace.yaml │ │ │ ├── operatorgroup.yaml │ │ │ └── subscription.yaml │ │ ├── openshift-local-storage-config │ │ ├── kustomization.yaml │ │ └── resources │ │ │ ├── localvolumediscovery.yaml │ │ │ └── localvolumeset.yaml │ │ ├── openshift-local-storage │ │ ├── kustomization.yaml │ │ └── resources │ │ │ ├── localvolumediscovery.yaml │ │ │ ├── localvolumeset.yaml │ │ │ ├── namespace.yaml │ │ │ ├── operatorgroup.yaml │ │ │ └── subscription.yaml │ │ ├── openshift-logging-coo │ │ ├── kustomization.yaml │ │ └── resources │ │ │ └── uiplugin.yaml │ │ ├── openshift-logging-loki │ │ ├── kustomization.yaml │ │ └── resources │ │ │ ├── clusterlogforwarder.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── lokistack.yaml │ │ │ └── serviceaccount.yaml │ │ ├── openshift-logging │ │ └── resources │ │ │ └── clusterlogforwarder.yaml │ │ ├── openshift-pipelines │ │ ├── kustomization.yaml │ │ └── resources │ │ │ └── subscription.yaml │ │ ├── openshift-rhacm-cluster-config-policies │ │ ├── kustomization.yaml │ │ └── resources │ │ │ ├── managedclusterset.yaml │ │ │ ├── managedclustersetbinding.yaml │ │ │ ├── namespace.yaml │ │ │ ├── policy-install-openshift-gitops-operator.yaml │ │ │ ├── policy-setup-acm-cluster-config-policies.yaml │ │ │ └── policy-setup-acm-gitops-cluster.yaml │ │ ├── openshift-rhacm-credentials-aws │ │ ├── kustomization.yaml │ │ └── resources │ │ │ └── secret.yaml │ │ ├── openshift-rhacm-gitops-cluster │ │ ├── kustomization.yaml │ │ └── resources │ │ │ ├── gitopscluster.yaml │ │ │ ├── managedclustersetbinding.yaml │ │ │ └── placement.yaml │ │ ├── openshift-rhacm-multicluster-observability │ │ ├── kustomization.yaml │ │ └── resources │ │ │ ├── multiclusterobservability.yaml │ │ │ ├── namespace.yaml │ │ │ └── secret.yaml │ │ ├── openshift-rhacm-multiclusterhub │ │ ├── kustomization.yaml │ │ └── resources │ │ │ └── multiclusterhub.yaml │ │ ├── openshift-rhacm-operator │ │ ├── kustomization.yaml │ │ └── resources │ │ │ ├── namespace.yaml │ │ │ ├── operatorgroup.yaml │ │ │ └── subscription.yaml │ │ ├── openshift-rhacs-central │ │ ├── kustomization.yaml │ │ └── resources │ │ │ ├── central.yaml │ │ │ ├── init-bundle.yaml │ │ │ └── namespace.yaml │ │ ├── openshift-serverless-knative-serving │ │ ├── kustomization.yaml │ │ └── resources │ │ │ └── knativeserving.yaml │ │ ├── openshift-serverless │ │ ├── kustomization.yaml │ │ └── resources │ │ │ ├── namespace.yaml │ │ │ ├── operatorgroup.yaml │ │ │ └── subscription.yaml │ │ ├── openshift-storage-config │ │ ├── kustomization.yaml │ │ └── resources │ │ │ └── storagecluster.yaml │ │ ├── openshift-storage │ │ ├── kustomization.yaml │ │ └── resources │ │ │ ├── namespace.yaml │ │ │ ├── operatorgroup.yaml │ │ │ └── subscription.yaml │ │ ├── openshift-virtualization-config │ │ ├── kustomization.yaml │ │ └── resources │ │ │ └── hyperconverged.yaml │ │ └── openshift-virtualization │ │ ├── kustomization.yaml │ │ └── resources │ │ ├── namespace.yaml │ │ ├── operatorgroup.yaml │ │ └── subscription.yaml ├── scripts │ ├── README.md │ └── shell │ │ ├── example-script │ │ ├── example.md │ │ └── example.sh │ │ └── lib │ │ ├── run_cmd.md │ │ ├── run_cmd.sh │ │ ├── show_divider.sh │ │ ├── show_msg.md │ │ └── show_msg.sh └── slack-command │ ├── index.js │ ├── package-lock.json │ └── package.json ├── docs └── README.md └── scenarios ├── README.md ├── cloud-on-wheels ├── bootstrap-ocp-hub-stage-01.sh ├── bootstrap-ocp-hub-stage-02.sh ├── bootstrap-ocp-hub-stage-03.sh ├── cow_setup_workflow.md ├── idm_ca.crt └── ldapgroupsync │ ├── idm_ca.crt │ ├── ldap-sync.yaml │ └── whitelist.txt ├── demo-rhacm-cluster └── bootstrap-demo.sh ├── demo-rhacm-hybrid-workload ├── DEMO_NOTES.md ├── DEMO_QA.md ├── README.md ├── argocd-applications │ ├── bootstrap │ │ ├── kustomization.yaml │ │ └── resources │ │ │ ├── cluster-config.yaml │ │ │ └── pipeline.yaml │ └── hybrid-workload │ │ ├── kustomization.yaml │ │ └── resources │ │ └── hybrid-workload.yaml ├── bootstrap-demo-part-01.sh ├── bootstrap-demo-part-02.sh ├── bootstrap-demo-part-03.sh ├── bootstrap-demo-part-04.sh └── kustomize │ └── base │ ├── cluster-config │ ├── kustomization.yaml │ └── resources │ │ └── clusterrolebinding.yaml │ ├── hybrid-workload │ ├── kustomization.yaml │ └── resources │ │ ├── buildconfig.yaml │ │ ├── deployment.yaml │ │ ├── galera-vm-01.yaml │ │ ├── galera-vm-02.yaml │ │ ├── imagestream.yaml │ │ ├── namespace.yaml │ │ ├── networkpolicy.yaml │ │ ├── route.yaml │ │ ├── secret.yaml │ │ ├── service-knative.yaml │ │ └── service.yaml │ └── pipeline │ ├── kustomization.yaml │ └── resources │ ├── clusterrolebinding.yaml │ ├── namespace.yaml │ ├── pipeline-deploy-hybrid-workload.yaml │ ├── task-git-clone-project.yaml │ └── task-ocp-cli.yaml ├── device-edge-101 ├── demo-01.md ├── demo-02.md ├── demo-03.md ├── lab-01.md ├── lab-02.md ├── lab-04.md ├── notes-01.md ├── notes-02.md └── notes-03.md ├── ocp-virt-demo ├── 01-show-ocp-webconsole.md ├── 02-create-vm-manage.md ├── 03-create-vm-snapshot-clone-backup.md ├── 04-migrate-vm-vmware-ocp-virt.md ├── notes.md └── other.md ├── uc01-cluster-as-a-service ├── DEMO_NOTES.md ├── DEMO_TECH_NOTES.md ├── README.md ├── argocd-applications │ └── bootstrap │ │ ├── kustomization.yaml │ │ └── resources │ │ ├── cluster-config.yaml │ │ └── pipeline.yaml ├── bootstrap-demo-part-01.sh ├── demo-initialize.sh ├── import-cluster-copy-command.sh └── kustomize │ └── base │ ├── cluster-config │ ├── kustomization.yaml │ └── resources │ │ └── clusterrolebinding.yaml │ └── pipeline │ ├── kustomization.yaml │ └── resources │ ├── clusterrolebinding.yaml │ ├── namespace.yaml │ ├── pipeline-deploy-acm-managed-aws-cluster.yaml │ ├── task-deploy-acm-managed-aws-cluster.yaml │ ├── task-git-clone-project.yaml │ └── task-ocp-cli.yaml ├── uc02-vm-as-a-service ├── README.md ├── appset.yaml ├── bm-placement.yaml ├── kustomization.yaml ├── pipeline.yaml ├── rhel8.yaml └── rhel9.yaml ├── uc03-namespace-as-a-service └── README.md ├── uc04-container-as-a-service ├── app │ ├── .dockerignore │ ├── .gitignore │ ├── .mvn │ │ └── wrapper │ │ │ ├── .gitignore │ │ │ ├── MavenWrapperDownloader.java │ │ │ └── maven-wrapper.properties │ ├── README.md │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── docker │ │ │ ├── Dockerfile.jvm │ │ │ ├── Dockerfile.legacy-jar │ │ │ ├── Dockerfile.native │ │ │ └── Dockerfile.native-micro │ │ ├── java │ │ │ └── org │ │ │ │ └── acme │ │ │ │ └── GreetingResource.java │ │ └── resources │ │ │ └── application.properties │ │ └── test │ │ └── java │ │ └── org │ │ └── acme │ │ ├── GreetingResourceIT.java │ │ └── GreetingResourceTest.java ├── build-from-binary │ ├── build.yaml │ ├── deployment.yaml │ ├── is.yaml │ ├── kustomization.yaml │ ├── route.yaml │ └── service.yaml ├── build-from-dockerfile │ ├── build.yaml │ ├── deployment.yaml │ ├── is.yaml │ ├── kustomization.yaml │ ├── route.yaml │ └── service.yaml ├── build-from-source │ ├── build.yaml │ ├── deployment.yaml │ ├── is.yaml │ ├── kustomization.yaml │ ├── route.yaml │ └── service.yaml ├── jar │ ├── .DS_Store │ └── app.jar ├── list-images.sh └── pipeline.yaml ├── uc05--cloud-native-as-a-service ├── aso-v1-sqlserver │ ├── 01-azure-sql-server-secret.yaml │ ├── 02-azure-sql-server.yaml │ ├── 03-azure-sql-db.yaml │ ├── 04-azure-sql-service.yaml │ ├── 05-azure-sql-filrewall.yaml │ ├── README.md │ └── kustomization.yaml └── aso-v2-postgresql │ ├── 01-rg.yaml │ ├── 02-psql-secret.yaml │ ├── 03-psql-flexibleserver.yaml │ ├── 04-psql-flexibledb.yaml │ ├── 05-psql-service.yaml │ └── 06-psql-firewall.yaml ├── uc07-mandatory-configuration ├── README.md ├── htpasswd ├── namespace.yaml ├── namespaceconfig.yaml ├── oauth.yaml ├── pipeline.yaml ├── rbac.yaml └── setup.sh ├── uc08-custom-policy ├── README.md ├── k8srequiredlabels.yaml └── must-have-type-label-policy.yaml ├── uc09-control-policy-scope ├── README.md ├── cicd-namespace-policy.yaml ├── placement.yaml └── prod-ha-policy.yaml ├── uc10-authentication-and-identity-providers ├── README.md ├── github-secret.yaml ├── htpasswd ├── oauth.yaml └── setup.sh ├── uc11-authorization-and-rbac ├── graph.sh ├── groups.yaml ├── htpasswd ├── kustomization.yaml ├── namespaces.yaml ├── rbac.yaml └── setup.sh ├── uc12-deny-all └── README.md ├── uc13-workload-network-policies ├── README.md ├── adminnetworkpolicy_allow_backend.yaml ├── adminnetworkpolicy_allow_frontend.yaml ├── adminnetworkpolicy_deny_all_backend.yaml └── adminnetworkpolicy_deny_all_frontend.yaml ├── uc14-east-west-and-north-south-traffic ├── configure.sh ├── part1-service-interconnect.md ├── part2-service-mesh.md ├── part3-connectivity-link.md └── site.yaml ├── uc15-hybrid-workload ├── DEMO_NOTES.md ├── README.md ├── argocd-applications │ └── hybrid-workload │ │ ├── kustomization.yaml │ │ └── resources │ │ └── hybrid-workload.yaml ├── bootstrap-virt-cluster.sh ├── kustomize │ └── hybrid-workload │ │ ├── kustomization.yaml │ │ └── resources │ │ ├── buildconfig.yaml │ │ ├── deployment.yaml │ │ ├── galera-vm-01.yaml │ │ ├── galera-vm-02.yaml │ │ ├── imagestream.yaml │ │ ├── namespace.yaml │ │ ├── networkpolicy.yaml │ │ ├── route.yaml │ │ ├── secret.yaml │ │ ├── service-knative.yaml │ │ └── service.yaml └── single-pod-workload.yaml ├── uc16-workload-scalability ├── README.md ├── applicationset.yaml ├── keda │ ├── app │ │ ├── config.php │ │ ├── index.php │ │ └── reset.php │ └── resources │ │ ├── buildconfig.yaml │ │ ├── deployment.yaml │ │ ├── imagestream.yaml │ │ ├── keda.yaml │ │ ├── kustomization.yaml │ │ ├── mysql.yaml │ │ ├── namespace.yaml │ │ ├── php-counter-scaler.yaml │ │ ├── route.yaml │ │ └── service.yaml ├── kustomization.yaml ├── resources │ ├── buildconfig.yaml │ ├── deployment.yaml │ ├── hpa.yaml │ ├── imagestream.yaml │ ├── namespace.yaml │ ├── route.yaml │ └── service.yaml └── stress.sh ├── uc17-cluster-autoscaler ├── README.md ├── argocd-applications │ ├── bootstrap-spoke │ │ ├── kustomization.yaml │ │ └── resources │ │ │ ├── applicationset.yaml │ │ │ └── placement.yaml │ ├── demo-pipelines-hub │ │ ├── kustomization.yaml │ │ └── resources │ │ │ ├── applicationset.yaml │ │ │ └── placement.yaml │ ├── demo-pipelines-spoke │ │ ├── kustomization.yaml │ │ └── resources │ │ │ ├── applicationset.yaml │ │ │ └── placement.yaml │ └── stress-job │ │ ├── kustomization.yaml │ │ └── resources │ │ ├── applicationset.yaml │ │ └── placement.yaml ├── bootstrap-spoke-cluster.sh ├── demo-initialize-hub.sh ├── kustomize │ └── base │ │ ├── cluster-config │ │ ├── kustomization.yaml │ │ └── resources │ │ │ └── clusterrolebinding.yaml │ │ ├── demo-pipelines-hub │ │ ├── kustomization.yaml │ │ └── resources │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── namespace.yaml │ │ │ ├── pipeline-deploy-acm-managed-aws-cluster.yaml │ │ │ ├── task-deploy-acm-managed-aws-cluster.yaml │ │ │ ├── task-git-clone-project.yaml │ │ │ └── task-ocp-cli.yaml │ │ └── demo-pipelines-spoke │ │ ├── kustomization.yaml │ │ └── resources │ │ ├── clusterrolebinding.yaml │ │ ├── namespace.yaml │ │ ├── pipeline-run-stress-job.yaml │ │ ├── task-git-clone-project.yaml │ │ └── task-ocp-cli.yaml └── stress-job │ ├── Dockerfile │ ├── app.sh │ ├── kustomize │ ├── kustomization.yaml │ └── resources │ │ ├── buildconfig.yaml │ │ ├── cronjob.yaml │ │ ├── imagestream.yaml │ │ ├── job.yaml │ │ └── namespace.yaml │ └── requirements.txt ├── uc18-metrics-and-logs ├── README.md ├── argocd-applications │ ├── bootstrap-hub │ │ ├── kustomization.yaml │ │ └── resources │ │ │ ├── applicationset.yaml │ │ │ └── placement.yaml │ └── bootstrap-spoke │ │ ├── kustomization.yaml │ │ └── resources │ │ ├── applicationset.yaml │ │ └── placement.yaml ├── bootstrap-hub-cluster.sh ├── bootstrap-spoke-cluster.sh ├── kustomize │ └── base │ │ ├── demo-pipelines-hub │ │ ├── kustomization.yaml │ │ └── resources │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── namespace.yaml │ │ │ ├── pipeline-deploy-acm-managed-aws-cluster.yaml │ │ │ ├── task-deploy-acm-managed-aws-cluster.yaml │ │ │ ├── task-git-clone-project.yaml │ │ │ └── task-ocp-cli.yaml │ │ ├── hub-config │ │ ├── kustomization.yaml │ │ └── resources │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── managedclusterbinding.yaml │ │ │ ├── namespace.yaml │ │ │ ├── placement.yaml │ │ │ ├── placementbinding.yaml │ │ │ └── policy.yaml │ │ └── spoke-config │ │ ├── kustomization.yaml │ │ └── resources │ │ └── clusterrolebinding.yaml └── podinfo │ ├── app.py │ ├── kustomize │ ├── kustomization.yaml │ └── resources │ │ ├── buildconfig.yaml │ │ ├── deployment.yaml │ │ ├── imagestream.yaml │ │ ├── namespace.yaml │ │ ├── prometheusrule.yaml │ │ ├── route.yaml │ │ ├── service.yaml │ │ └── servicemonitor.yaml │ └── requirements.txt ├── uc19-network-graphs ├── README.md ├── argocd-applications │ ├── bootstrap-hub │ │ ├── kustomization.yaml │ │ └── resources │ │ │ ├── applicationset.yaml │ │ │ └── placement.yaml │ └── bootstrap-spoke │ │ ├── kustomization.yaml │ │ └── resources │ │ ├── applicationset.yaml │ │ └── placement.yaml ├── bootstrap-hub-cluster.sh ├── bootstrap-spoke-cluster.sh ├── kustomize │ └── base │ │ ├── demo-pipelines-hub │ │ ├── kustomization.yaml │ │ └── resources │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── namespace.yaml │ │ │ ├── pipeline-deploy-acm-managed-aws-cluster.yaml │ │ │ ├── task-deploy-acm-managed-aws-cluster.yaml │ │ │ ├── task-git-clone-project.yaml │ │ │ └── task-ocp-cli.yaml │ │ ├── hub-config │ │ ├── kustomization.yaml │ │ └── resources │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── managedclusterbinding.yaml │ │ │ ├── namespace.yaml │ │ │ ├── placement.yaml │ │ │ ├── placementbinding.yaml │ │ │ ├── policy-stackrox-hub-init-bundle.yaml │ │ │ └── policy.yaml │ │ └── spoke-config │ │ ├── kustomization.yaml │ │ └── resources │ │ └── clusterrolebinding.yaml ├── mini-contacts │ ├── api │ │ ├── .s2i │ │ │ └── bin │ │ │ │ └── run │ │ ├── app │ │ │ ├── db.py │ │ │ └── main.py │ │ └── requirements.txt │ ├── frontend │ │ ├── package.json │ │ ├── public │ │ │ └── index.html │ │ └── server.js │ └── kustomize │ │ ├── backend │ │ ├── kustomization.yaml │ │ └── resources │ │ │ ├── configmap.yaml │ │ │ ├── job.yaml │ │ │ ├── namespace.yaml │ │ │ ├── networkpolicy.yaml │ │ │ ├── secret.yaml │ │ │ ├── service.yaml │ │ │ └── statefulset.yaml │ │ ├── frontend │ │ ├── kustomization.yaml │ │ └── resources │ │ │ ├── buildconfig.yaml │ │ │ ├── configmap.yaml │ │ │ ├── deployment.yaml │ │ │ ├── imagestream.yaml │ │ │ ├── namespace.yaml │ │ │ ├── networkpolicy.yaml │ │ │ ├── route.yaml │ │ │ ├── secret.yaml │ │ │ └── service.yaml │ │ └── kustomization.yaml └── test-argo-app.yaml ├── uc20-policy-dashboard ├── policy-check-cert.yaml ├── policy-check-kubeadmin.yaml ├── policy-check-namespace.yaml └── policy-check-pod.yaml ├── uc22-cluster-upgrade ├── README.md ├── argocd-applications │ ├── bootstrap │ │ ├── kustomization.yaml │ │ └── resources │ │ │ ├── applicationset.yaml │ │ │ └── placement.yaml │ └── podspot │ │ ├── kustomization.yaml │ │ └── resources │ │ ├── applicationset.yaml │ │ └── placement.yaml ├── backend-pod-spot │ ├── app.py │ ├── kustomize │ │ ├── kustomization.yaml │ │ └── resources │ │ │ ├── buildconfig.yaml │ │ │ ├── deployment.yaml │ │ │ ├── imagestream.yaml │ │ │ ├── namespace.yaml │ │ │ ├── route.yaml │ │ │ └── service.yaml │ └── requirements.txt ├── bootstrap-demo-part-01.sh ├── demo-initialize.sh ├── frontend-pod-spot │ ├── kustomize │ │ ├── kustomization.yaml │ │ └── resources │ │ │ ├── buildconfig.yaml │ │ │ ├── deployment.yaml │ │ │ ├── imagestream.yaml │ │ │ ├── namespace.yaml │ │ │ ├── route.yaml │ │ │ └── service.yaml │ ├── package.json │ ├── public │ │ └── index.html │ └── server.js └── kustomize │ └── base │ └── cluster-config │ ├── kustomization.yaml │ └── resources │ └── clusterrolebinding.yaml ├── uc25-node-resiliency ├── DEMO_NOTES.md ├── README.md ├── argocd-applications │ └── hybrid-workload │ │ ├── kustomization.yaml │ │ └── resources │ │ └── hybrid-workload.yaml ├── bootstrap-virt-cluster.sh ├── kustomize │ └── hybrid-workload │ │ ├── kustomization.yaml │ │ └── resources │ │ ├── buildconfig.yaml │ │ ├── deployment.yaml │ │ ├── galera-vm-01.yaml │ │ ├── galera-vm-02.yaml │ │ ├── imagestream.yaml │ │ ├── namespace.yaml │ │ ├── networkpolicy.yaml │ │ ├── route.yaml │ │ ├── secret.yaml │ │ ├── service-knative.yaml │ │ └── service.yaml └── single-pod-workload.yaml └── uc26-cluster-and-site-resiliency ├── README.md ├── app.yaml ├── applicationset.yaml ├── db.yaml ├── kustomization.yaml └── resiliency.sh /.devcontainer/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/.devcontainer/Containerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.devcontainer/files/.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/.devcontainer/files/.bashrc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/LICENSE -------------------------------------------------------------------------------- /OpenShiftDemoTime.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/OpenShiftDemoTime.code-workspace -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/README.md -------------------------------------------------------------------------------- /WIP/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/WIP/README.md -------------------------------------------------------------------------------- /assets/byo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/byo/README.md -------------------------------------------------------------------------------- /assets/byo/credentials-aws/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/byo/credentials-aws/README.md -------------------------------------------------------------------------------- /assets/byo/credentials-aws/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/byo/credentials-aws/setup.sh -------------------------------------------------------------------------------- /assets/byo/pull-secret/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/byo/pull-secret/README.md -------------------------------------------------------------------------------- /assets/byo/pull-secret/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/byo/pull-secret/setup.sh -------------------------------------------------------------------------------- /assets/byo/ssh-keys/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/byo/ssh-keys/README.md -------------------------------------------------------------------------------- /assets/byo/ssh-keys/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/byo/ssh-keys/setup.sh -------------------------------------------------------------------------------- /assets/components/README.md: -------------------------------------------------------------------------------- 1 | # Components folder asset 2 | -------------------------------------------------------------------------------- /assets/components/functions/login-on-openshift.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/components/functions/login-on-openshift.sh -------------------------------------------------------------------------------- /assets/components/openshift-gitops/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/components/openshift-gitops/setup.sh -------------------------------------------------------------------------------- /assets/components/openshift-local-storage/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/components/openshift-local-storage/setup.sh -------------------------------------------------------------------------------- /assets/components/openshift-logging-coo/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/components/openshift-logging-coo/setup.sh -------------------------------------------------------------------------------- /assets/components/openshift-logging-loki/create-s3-and-secret-for-loki.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/components/openshift-logging-loki/create-s3-and-secret-for-loki.sh -------------------------------------------------------------------------------- /assets/components/openshift-logging-loki/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/components/openshift-logging-loki/setup.sh -------------------------------------------------------------------------------- /assets/components/openshift-pipelines/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/components/openshift-pipelines/setup.sh -------------------------------------------------------------------------------- /assets/components/openshift-rhacm-credentials-aws/copy-secret-for-demo-pipelines.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/components/openshift-rhacm-credentials-aws/copy-secret-for-demo-pipelines.sh -------------------------------------------------------------------------------- /assets/components/openshift-rhacm-credentials-aws/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/components/openshift-rhacm-credentials-aws/setup.sh -------------------------------------------------------------------------------- /assets/components/openshift-rhacm-deploy-aws-cluster/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/components/openshift-rhacm-deploy-aws-cluster/setup.sh -------------------------------------------------------------------------------- /assets/components/openshift-rhacm-gitops-cluster/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/components/openshift-rhacm-gitops-cluster/setup.sh -------------------------------------------------------------------------------- /assets/components/openshift-rhacm-multicluster-observability/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/components/openshift-rhacm-multicluster-observability/setup.sh -------------------------------------------------------------------------------- /assets/components/openshift-rhacm-multiclusterhub/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/components/openshift-rhacm-multiclusterhub/setup.sh -------------------------------------------------------------------------------- /assets/components/openshift-rhacm-operator/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/components/openshift-rhacm-operator/setup.sh -------------------------------------------------------------------------------- /assets/components/openshift-serverless/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/components/openshift-serverless/setup.sh -------------------------------------------------------------------------------- /assets/components/openshift-storage/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/components/openshift-storage/setup.sh -------------------------------------------------------------------------------- /assets/components/openshift-virtualization/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/components/openshift-virtualization/setup.sh -------------------------------------------------------------------------------- /assets/kustomize/README.md: -------------------------------------------------------------------------------- 1 | # Kuztomize folder asset 2 | -------------------------------------------------------------------------------- /assets/kustomize/base/README.md: -------------------------------------------------------------------------------- 1 | # Kustomize base asset folder 2 | -------------------------------------------------------------------------------- /assets/kustomize/base/openshift-gitops/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/kustomize/base/openshift-gitops/kustomization.yaml -------------------------------------------------------------------------------- /assets/kustomize/base/openshift-gitops/resources/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/kustomize/base/openshift-gitops/resources/namespace.yaml -------------------------------------------------------------------------------- /assets/kustomize/base/openshift-gitops/resources/operatorgroup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/kustomize/base/openshift-gitops/resources/operatorgroup.yaml -------------------------------------------------------------------------------- /assets/kustomize/base/openshift-gitops/resources/subscription.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/kustomize/base/openshift-gitops/resources/subscription.yaml -------------------------------------------------------------------------------- /assets/kustomize/base/openshift-local-storage-config/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/kustomize/base/openshift-local-storage-config/kustomization.yaml -------------------------------------------------------------------------------- /assets/kustomize/base/openshift-local-storage-config/resources/localvolumediscovery.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/kustomize/base/openshift-local-storage-config/resources/localvolumediscovery.yaml -------------------------------------------------------------------------------- /assets/kustomize/base/openshift-local-storage-config/resources/localvolumeset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/kustomize/base/openshift-local-storage-config/resources/localvolumeset.yaml -------------------------------------------------------------------------------- /assets/kustomize/base/openshift-local-storage/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/kustomize/base/openshift-local-storage/kustomization.yaml -------------------------------------------------------------------------------- /assets/kustomize/base/openshift-local-storage/resources/localvolumediscovery.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/kustomize/base/openshift-local-storage/resources/localvolumediscovery.yaml -------------------------------------------------------------------------------- /assets/kustomize/base/openshift-local-storage/resources/localvolumeset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/kustomize/base/openshift-local-storage/resources/localvolumeset.yaml -------------------------------------------------------------------------------- /assets/kustomize/base/openshift-local-storage/resources/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/kustomize/base/openshift-local-storage/resources/namespace.yaml -------------------------------------------------------------------------------- /assets/kustomize/base/openshift-local-storage/resources/operatorgroup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/kustomize/base/openshift-local-storage/resources/operatorgroup.yaml -------------------------------------------------------------------------------- /assets/kustomize/base/openshift-local-storage/resources/subscription.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/kustomize/base/openshift-local-storage/resources/subscription.yaml -------------------------------------------------------------------------------- /assets/kustomize/base/openshift-logging-coo/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/kustomize/base/openshift-logging-coo/kustomization.yaml -------------------------------------------------------------------------------- /assets/kustomize/base/openshift-logging-coo/resources/uiplugin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/kustomize/base/openshift-logging-coo/resources/uiplugin.yaml -------------------------------------------------------------------------------- /assets/kustomize/base/openshift-logging-loki/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/kustomize/base/openshift-logging-loki/kustomization.yaml -------------------------------------------------------------------------------- /assets/kustomize/base/openshift-logging-loki/resources/clusterlogforwarder.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/kustomize/base/openshift-logging-loki/resources/clusterlogforwarder.yaml -------------------------------------------------------------------------------- /assets/kustomize/base/openshift-logging-loki/resources/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/kustomize/base/openshift-logging-loki/resources/clusterrolebinding.yaml -------------------------------------------------------------------------------- /assets/kustomize/base/openshift-logging-loki/resources/lokistack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/kustomize/base/openshift-logging-loki/resources/lokistack.yaml -------------------------------------------------------------------------------- /assets/kustomize/base/openshift-logging-loki/resources/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/kustomize/base/openshift-logging-loki/resources/serviceaccount.yaml -------------------------------------------------------------------------------- /assets/kustomize/base/openshift-logging/resources/clusterlogforwarder.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/kustomize/base/openshift-pipelines/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/kustomize/base/openshift-pipelines/kustomization.yaml -------------------------------------------------------------------------------- /assets/kustomize/base/openshift-pipelines/resources/subscription.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/kustomize/base/openshift-pipelines/resources/subscription.yaml -------------------------------------------------------------------------------- /assets/kustomize/base/openshift-rhacm-cluster-config-policies/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/kustomize/base/openshift-rhacm-cluster-config-policies/kustomization.yaml -------------------------------------------------------------------------------- /assets/kustomize/base/openshift-rhacm-cluster-config-policies/resources/managedclusterset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/kustomize/base/openshift-rhacm-cluster-config-policies/resources/managedclusterset.yaml -------------------------------------------------------------------------------- /assets/kustomize/base/openshift-rhacm-cluster-config-policies/resources/managedclustersetbinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/kustomize/base/openshift-rhacm-cluster-config-policies/resources/managedclustersetbinding.yaml -------------------------------------------------------------------------------- /assets/kustomize/base/openshift-rhacm-cluster-config-policies/resources/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/kustomize/base/openshift-rhacm-cluster-config-policies/resources/namespace.yaml -------------------------------------------------------------------------------- /assets/kustomize/base/openshift-rhacm-cluster-config-policies/resources/policy-install-openshift-gitops-operator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/kustomize/base/openshift-rhacm-cluster-config-policies/resources/policy-install-openshift-gitops-operator.yaml -------------------------------------------------------------------------------- /assets/kustomize/base/openshift-rhacm-cluster-config-policies/resources/policy-setup-acm-cluster-config-policies.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/kustomize/base/openshift-rhacm-cluster-config-policies/resources/policy-setup-acm-cluster-config-policies.yaml -------------------------------------------------------------------------------- /assets/kustomize/base/openshift-rhacm-cluster-config-policies/resources/policy-setup-acm-gitops-cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/kustomize/base/openshift-rhacm-cluster-config-policies/resources/policy-setup-acm-gitops-cluster.yaml -------------------------------------------------------------------------------- /assets/kustomize/base/openshift-rhacm-credentials-aws/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/kustomize/base/openshift-rhacm-credentials-aws/kustomization.yaml -------------------------------------------------------------------------------- /assets/kustomize/base/openshift-rhacm-credentials-aws/resources/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/kustomize/base/openshift-rhacm-credentials-aws/resources/secret.yaml -------------------------------------------------------------------------------- /assets/kustomize/base/openshift-rhacm-gitops-cluster/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/kustomize/base/openshift-rhacm-gitops-cluster/kustomization.yaml -------------------------------------------------------------------------------- /assets/kustomize/base/openshift-rhacm-gitops-cluster/resources/gitopscluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/kustomize/base/openshift-rhacm-gitops-cluster/resources/gitopscluster.yaml -------------------------------------------------------------------------------- /assets/kustomize/base/openshift-rhacm-gitops-cluster/resources/managedclustersetbinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/kustomize/base/openshift-rhacm-gitops-cluster/resources/managedclustersetbinding.yaml -------------------------------------------------------------------------------- /assets/kustomize/base/openshift-rhacm-gitops-cluster/resources/placement.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/kustomize/base/openshift-rhacm-gitops-cluster/resources/placement.yaml -------------------------------------------------------------------------------- /assets/kustomize/base/openshift-rhacm-multicluster-observability/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/kustomize/base/openshift-rhacm-multicluster-observability/kustomization.yaml -------------------------------------------------------------------------------- /assets/kustomize/base/openshift-rhacm-multicluster-observability/resources/multiclusterobservability.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/kustomize/base/openshift-rhacm-multicluster-observability/resources/multiclusterobservability.yaml -------------------------------------------------------------------------------- /assets/kustomize/base/openshift-rhacm-multicluster-observability/resources/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/kustomize/base/openshift-rhacm-multicluster-observability/resources/namespace.yaml -------------------------------------------------------------------------------- /assets/kustomize/base/openshift-rhacm-multicluster-observability/resources/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/kustomize/base/openshift-rhacm-multicluster-observability/resources/secret.yaml -------------------------------------------------------------------------------- /assets/kustomize/base/openshift-rhacm-multiclusterhub/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/kustomize/base/openshift-rhacm-multiclusterhub/kustomization.yaml -------------------------------------------------------------------------------- /assets/kustomize/base/openshift-rhacm-multiclusterhub/resources/multiclusterhub.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/kustomize/base/openshift-rhacm-multiclusterhub/resources/multiclusterhub.yaml -------------------------------------------------------------------------------- /assets/kustomize/base/openshift-rhacm-operator/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/kustomize/base/openshift-rhacm-operator/kustomization.yaml -------------------------------------------------------------------------------- /assets/kustomize/base/openshift-rhacm-operator/resources/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/kustomize/base/openshift-rhacm-operator/resources/namespace.yaml -------------------------------------------------------------------------------- /assets/kustomize/base/openshift-rhacm-operator/resources/operatorgroup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/kustomize/base/openshift-rhacm-operator/resources/operatorgroup.yaml -------------------------------------------------------------------------------- /assets/kustomize/base/openshift-rhacm-operator/resources/subscription.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/kustomize/base/openshift-rhacm-operator/resources/subscription.yaml -------------------------------------------------------------------------------- /assets/kustomize/base/openshift-rhacs-central/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/kustomize/base/openshift-rhacs-central/kustomization.yaml -------------------------------------------------------------------------------- /assets/kustomize/base/openshift-rhacs-central/resources/central.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/kustomize/base/openshift-rhacs-central/resources/central.yaml -------------------------------------------------------------------------------- /assets/kustomize/base/openshift-rhacs-central/resources/init-bundle.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/kustomize/base/openshift-rhacs-central/resources/init-bundle.yaml -------------------------------------------------------------------------------- /assets/kustomize/base/openshift-rhacs-central/resources/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/kustomize/base/openshift-rhacs-central/resources/namespace.yaml -------------------------------------------------------------------------------- /assets/kustomize/base/openshift-serverless-knative-serving/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/kustomize/base/openshift-serverless-knative-serving/kustomization.yaml -------------------------------------------------------------------------------- /assets/kustomize/base/openshift-serverless-knative-serving/resources/knativeserving.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/kustomize/base/openshift-serverless-knative-serving/resources/knativeserving.yaml -------------------------------------------------------------------------------- /assets/kustomize/base/openshift-serverless/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/kustomize/base/openshift-serverless/kustomization.yaml -------------------------------------------------------------------------------- /assets/kustomize/base/openshift-serverless/resources/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/kustomize/base/openshift-serverless/resources/namespace.yaml -------------------------------------------------------------------------------- /assets/kustomize/base/openshift-serverless/resources/operatorgroup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/kustomize/base/openshift-serverless/resources/operatorgroup.yaml -------------------------------------------------------------------------------- /assets/kustomize/base/openshift-serverless/resources/subscription.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/kustomize/base/openshift-serverless/resources/subscription.yaml -------------------------------------------------------------------------------- /assets/kustomize/base/openshift-storage-config/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/kustomize/base/openshift-storage-config/kustomization.yaml -------------------------------------------------------------------------------- /assets/kustomize/base/openshift-storage-config/resources/storagecluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/kustomize/base/openshift-storage-config/resources/storagecluster.yaml -------------------------------------------------------------------------------- /assets/kustomize/base/openshift-storage/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/kustomize/base/openshift-storage/kustomization.yaml -------------------------------------------------------------------------------- /assets/kustomize/base/openshift-storage/resources/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/kustomize/base/openshift-storage/resources/namespace.yaml -------------------------------------------------------------------------------- /assets/kustomize/base/openshift-storage/resources/operatorgroup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/kustomize/base/openshift-storage/resources/operatorgroup.yaml -------------------------------------------------------------------------------- /assets/kustomize/base/openshift-storage/resources/subscription.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/kustomize/base/openshift-storage/resources/subscription.yaml -------------------------------------------------------------------------------- /assets/kustomize/base/openshift-virtualization-config/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/kustomize/base/openshift-virtualization-config/kustomization.yaml -------------------------------------------------------------------------------- /assets/kustomize/base/openshift-virtualization-config/resources/hyperconverged.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/kustomize/base/openshift-virtualization-config/resources/hyperconverged.yaml -------------------------------------------------------------------------------- /assets/kustomize/base/openshift-virtualization/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/kustomize/base/openshift-virtualization/kustomization.yaml -------------------------------------------------------------------------------- /assets/kustomize/base/openshift-virtualization/resources/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/kustomize/base/openshift-virtualization/resources/namespace.yaml -------------------------------------------------------------------------------- /assets/kustomize/base/openshift-virtualization/resources/operatorgroup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/kustomize/base/openshift-virtualization/resources/operatorgroup.yaml -------------------------------------------------------------------------------- /assets/kustomize/base/openshift-virtualization/resources/subscription.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/kustomize/base/openshift-virtualization/resources/subscription.yaml -------------------------------------------------------------------------------- /assets/scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/scripts/README.md -------------------------------------------------------------------------------- /assets/scripts/shell/example-script/example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/scripts/shell/example-script/example.md -------------------------------------------------------------------------------- /assets/scripts/shell/example-script/example.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/scripts/shell/example-script/example.sh -------------------------------------------------------------------------------- /assets/scripts/shell/lib/run_cmd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/scripts/shell/lib/run_cmd.md -------------------------------------------------------------------------------- /assets/scripts/shell/lib/run_cmd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/scripts/shell/lib/run_cmd.sh -------------------------------------------------------------------------------- /assets/scripts/shell/lib/show_divider.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/scripts/shell/lib/show_divider.sh -------------------------------------------------------------------------------- /assets/scripts/shell/lib/show_msg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/scripts/shell/lib/show_msg.md -------------------------------------------------------------------------------- /assets/scripts/shell/lib/show_msg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/scripts/shell/lib/show_msg.sh -------------------------------------------------------------------------------- /assets/slack-command/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/slack-command/index.js -------------------------------------------------------------------------------- /assets/slack-command/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/slack-command/package-lock.json -------------------------------------------------------------------------------- /assets/slack-command/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/assets/slack-command/package.json -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- 1 | # docs/README.md 2 | -------------------------------------------------------------------------------- /scenarios/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/README.md -------------------------------------------------------------------------------- /scenarios/cloud-on-wheels/bootstrap-ocp-hub-stage-01.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/cloud-on-wheels/bootstrap-ocp-hub-stage-01.sh -------------------------------------------------------------------------------- /scenarios/cloud-on-wheels/bootstrap-ocp-hub-stage-02.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/cloud-on-wheels/bootstrap-ocp-hub-stage-02.sh -------------------------------------------------------------------------------- /scenarios/cloud-on-wheels/bootstrap-ocp-hub-stage-03.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/cloud-on-wheels/bootstrap-ocp-hub-stage-03.sh -------------------------------------------------------------------------------- /scenarios/cloud-on-wheels/cow_setup_workflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/cloud-on-wheels/cow_setup_workflow.md -------------------------------------------------------------------------------- /scenarios/cloud-on-wheels/idm_ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/cloud-on-wheels/idm_ca.crt -------------------------------------------------------------------------------- /scenarios/cloud-on-wheels/ldapgroupsync/idm_ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/cloud-on-wheels/ldapgroupsync/idm_ca.crt -------------------------------------------------------------------------------- /scenarios/cloud-on-wheels/ldapgroupsync/ldap-sync.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/cloud-on-wheels/ldapgroupsync/ldap-sync.yaml -------------------------------------------------------------------------------- /scenarios/cloud-on-wheels/ldapgroupsync/whitelist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/cloud-on-wheels/ldapgroupsync/whitelist.txt -------------------------------------------------------------------------------- /scenarios/demo-rhacm-cluster/bootstrap-demo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/demo-rhacm-cluster/bootstrap-demo.sh -------------------------------------------------------------------------------- /scenarios/demo-rhacm-hybrid-workload/DEMO_NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/demo-rhacm-hybrid-workload/DEMO_NOTES.md -------------------------------------------------------------------------------- /scenarios/demo-rhacm-hybrid-workload/DEMO_QA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/demo-rhacm-hybrid-workload/DEMO_QA.md -------------------------------------------------------------------------------- /scenarios/demo-rhacm-hybrid-workload/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/demo-rhacm-hybrid-workload/README.md -------------------------------------------------------------------------------- /scenarios/demo-rhacm-hybrid-workload/argocd-applications/bootstrap/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/demo-rhacm-hybrid-workload/argocd-applications/bootstrap/kustomization.yaml -------------------------------------------------------------------------------- /scenarios/demo-rhacm-hybrid-workload/argocd-applications/bootstrap/resources/cluster-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/demo-rhacm-hybrid-workload/argocd-applications/bootstrap/resources/cluster-config.yaml -------------------------------------------------------------------------------- /scenarios/demo-rhacm-hybrid-workload/argocd-applications/bootstrap/resources/pipeline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/demo-rhacm-hybrid-workload/argocd-applications/bootstrap/resources/pipeline.yaml -------------------------------------------------------------------------------- /scenarios/demo-rhacm-hybrid-workload/argocd-applications/hybrid-workload/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/demo-rhacm-hybrid-workload/argocd-applications/hybrid-workload/kustomization.yaml -------------------------------------------------------------------------------- /scenarios/demo-rhacm-hybrid-workload/argocd-applications/hybrid-workload/resources/hybrid-workload.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/demo-rhacm-hybrid-workload/argocd-applications/hybrid-workload/resources/hybrid-workload.yaml -------------------------------------------------------------------------------- /scenarios/demo-rhacm-hybrid-workload/bootstrap-demo-part-01.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/demo-rhacm-hybrid-workload/bootstrap-demo-part-01.sh -------------------------------------------------------------------------------- /scenarios/demo-rhacm-hybrid-workload/bootstrap-demo-part-02.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/demo-rhacm-hybrid-workload/bootstrap-demo-part-02.sh -------------------------------------------------------------------------------- /scenarios/demo-rhacm-hybrid-workload/bootstrap-demo-part-03.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/demo-rhacm-hybrid-workload/bootstrap-demo-part-03.sh -------------------------------------------------------------------------------- /scenarios/demo-rhacm-hybrid-workload/bootstrap-demo-part-04.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/demo-rhacm-hybrid-workload/bootstrap-demo-part-04.sh -------------------------------------------------------------------------------- /scenarios/demo-rhacm-hybrid-workload/kustomize/base/cluster-config/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/demo-rhacm-hybrid-workload/kustomize/base/cluster-config/kustomization.yaml -------------------------------------------------------------------------------- /scenarios/demo-rhacm-hybrid-workload/kustomize/base/cluster-config/resources/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/demo-rhacm-hybrid-workload/kustomize/base/cluster-config/resources/clusterrolebinding.yaml -------------------------------------------------------------------------------- /scenarios/demo-rhacm-hybrid-workload/kustomize/base/hybrid-workload/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/demo-rhacm-hybrid-workload/kustomize/base/hybrid-workload/kustomization.yaml -------------------------------------------------------------------------------- /scenarios/demo-rhacm-hybrid-workload/kustomize/base/hybrid-workload/resources/buildconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/demo-rhacm-hybrid-workload/kustomize/base/hybrid-workload/resources/buildconfig.yaml -------------------------------------------------------------------------------- /scenarios/demo-rhacm-hybrid-workload/kustomize/base/hybrid-workload/resources/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/demo-rhacm-hybrid-workload/kustomize/base/hybrid-workload/resources/deployment.yaml -------------------------------------------------------------------------------- /scenarios/demo-rhacm-hybrid-workload/kustomize/base/hybrid-workload/resources/galera-vm-01.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/demo-rhacm-hybrid-workload/kustomize/base/hybrid-workload/resources/galera-vm-01.yaml -------------------------------------------------------------------------------- /scenarios/demo-rhacm-hybrid-workload/kustomize/base/hybrid-workload/resources/galera-vm-02.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/demo-rhacm-hybrid-workload/kustomize/base/hybrid-workload/resources/galera-vm-02.yaml -------------------------------------------------------------------------------- /scenarios/demo-rhacm-hybrid-workload/kustomize/base/hybrid-workload/resources/imagestream.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/demo-rhacm-hybrid-workload/kustomize/base/hybrid-workload/resources/imagestream.yaml -------------------------------------------------------------------------------- /scenarios/demo-rhacm-hybrid-workload/kustomize/base/hybrid-workload/resources/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/demo-rhacm-hybrid-workload/kustomize/base/hybrid-workload/resources/namespace.yaml -------------------------------------------------------------------------------- /scenarios/demo-rhacm-hybrid-workload/kustomize/base/hybrid-workload/resources/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/demo-rhacm-hybrid-workload/kustomize/base/hybrid-workload/resources/networkpolicy.yaml -------------------------------------------------------------------------------- /scenarios/demo-rhacm-hybrid-workload/kustomize/base/hybrid-workload/resources/route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/demo-rhacm-hybrid-workload/kustomize/base/hybrid-workload/resources/route.yaml -------------------------------------------------------------------------------- /scenarios/demo-rhacm-hybrid-workload/kustomize/base/hybrid-workload/resources/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/demo-rhacm-hybrid-workload/kustomize/base/hybrid-workload/resources/secret.yaml -------------------------------------------------------------------------------- /scenarios/demo-rhacm-hybrid-workload/kustomize/base/hybrid-workload/resources/service-knative.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/demo-rhacm-hybrid-workload/kustomize/base/hybrid-workload/resources/service-knative.yaml -------------------------------------------------------------------------------- /scenarios/demo-rhacm-hybrid-workload/kustomize/base/hybrid-workload/resources/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/demo-rhacm-hybrid-workload/kustomize/base/hybrid-workload/resources/service.yaml -------------------------------------------------------------------------------- /scenarios/demo-rhacm-hybrid-workload/kustomize/base/pipeline/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/demo-rhacm-hybrid-workload/kustomize/base/pipeline/kustomization.yaml -------------------------------------------------------------------------------- /scenarios/demo-rhacm-hybrid-workload/kustomize/base/pipeline/resources/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/demo-rhacm-hybrid-workload/kustomize/base/pipeline/resources/clusterrolebinding.yaml -------------------------------------------------------------------------------- /scenarios/demo-rhacm-hybrid-workload/kustomize/base/pipeline/resources/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/demo-rhacm-hybrid-workload/kustomize/base/pipeline/resources/namespace.yaml -------------------------------------------------------------------------------- /scenarios/demo-rhacm-hybrid-workload/kustomize/base/pipeline/resources/pipeline-deploy-hybrid-workload.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/demo-rhacm-hybrid-workload/kustomize/base/pipeline/resources/pipeline-deploy-hybrid-workload.yaml -------------------------------------------------------------------------------- /scenarios/demo-rhacm-hybrid-workload/kustomize/base/pipeline/resources/task-git-clone-project.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/demo-rhacm-hybrid-workload/kustomize/base/pipeline/resources/task-git-clone-project.yaml -------------------------------------------------------------------------------- /scenarios/demo-rhacm-hybrid-workload/kustomize/base/pipeline/resources/task-ocp-cli.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/demo-rhacm-hybrid-workload/kustomize/base/pipeline/resources/task-ocp-cli.yaml -------------------------------------------------------------------------------- /scenarios/device-edge-101/demo-01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/device-edge-101/demo-01.md -------------------------------------------------------------------------------- /scenarios/device-edge-101/demo-02.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/device-edge-101/demo-02.md -------------------------------------------------------------------------------- /scenarios/device-edge-101/demo-03.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/device-edge-101/demo-03.md -------------------------------------------------------------------------------- /scenarios/device-edge-101/lab-01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/device-edge-101/lab-01.md -------------------------------------------------------------------------------- /scenarios/device-edge-101/lab-02.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/device-edge-101/lab-02.md -------------------------------------------------------------------------------- /scenarios/device-edge-101/lab-04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/device-edge-101/lab-04.md -------------------------------------------------------------------------------- /scenarios/device-edge-101/notes-01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/device-edge-101/notes-01.md -------------------------------------------------------------------------------- /scenarios/device-edge-101/notes-02.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/device-edge-101/notes-02.md -------------------------------------------------------------------------------- /scenarios/device-edge-101/notes-03.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/device-edge-101/notes-03.md -------------------------------------------------------------------------------- /scenarios/ocp-virt-demo/01-show-ocp-webconsole.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/ocp-virt-demo/01-show-ocp-webconsole.md -------------------------------------------------------------------------------- /scenarios/ocp-virt-demo/02-create-vm-manage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/ocp-virt-demo/02-create-vm-manage.md -------------------------------------------------------------------------------- /scenarios/ocp-virt-demo/03-create-vm-snapshot-clone-backup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/ocp-virt-demo/03-create-vm-snapshot-clone-backup.md -------------------------------------------------------------------------------- /scenarios/ocp-virt-demo/04-migrate-vm-vmware-ocp-virt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/ocp-virt-demo/04-migrate-vm-vmware-ocp-virt.md -------------------------------------------------------------------------------- /scenarios/ocp-virt-demo/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/ocp-virt-demo/notes.md -------------------------------------------------------------------------------- /scenarios/ocp-virt-demo/other.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/ocp-virt-demo/other.md -------------------------------------------------------------------------------- /scenarios/uc01-cluster-as-a-service/DEMO_NOTES.md: -------------------------------------------------------------------------------- 1 | # Demo notes 2 | 3 | ## Story line 4 | 5 | -------------------------------------------------------------------------------- /scenarios/uc01-cluster-as-a-service/DEMO_TECH_NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc01-cluster-as-a-service/DEMO_TECH_NOTES.md -------------------------------------------------------------------------------- /scenarios/uc01-cluster-as-a-service/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc01-cluster-as-a-service/README.md -------------------------------------------------------------------------------- /scenarios/uc01-cluster-as-a-service/argocd-applications/bootstrap/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc01-cluster-as-a-service/argocd-applications/bootstrap/kustomization.yaml -------------------------------------------------------------------------------- /scenarios/uc01-cluster-as-a-service/argocd-applications/bootstrap/resources/cluster-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc01-cluster-as-a-service/argocd-applications/bootstrap/resources/cluster-config.yaml -------------------------------------------------------------------------------- /scenarios/uc01-cluster-as-a-service/argocd-applications/bootstrap/resources/pipeline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc01-cluster-as-a-service/argocd-applications/bootstrap/resources/pipeline.yaml -------------------------------------------------------------------------------- /scenarios/uc01-cluster-as-a-service/bootstrap-demo-part-01.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc01-cluster-as-a-service/bootstrap-demo-part-01.sh -------------------------------------------------------------------------------- /scenarios/uc01-cluster-as-a-service/demo-initialize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc01-cluster-as-a-service/demo-initialize.sh -------------------------------------------------------------------------------- /scenarios/uc01-cluster-as-a-service/import-cluster-copy-command.sh: -------------------------------------------------------------------------------- 1 | # Insert import command from clipboard 2 | 3 | -------------------------------------------------------------------------------- /scenarios/uc01-cluster-as-a-service/kustomize/base/cluster-config/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc01-cluster-as-a-service/kustomize/base/cluster-config/kustomization.yaml -------------------------------------------------------------------------------- /scenarios/uc01-cluster-as-a-service/kustomize/base/cluster-config/resources/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc01-cluster-as-a-service/kustomize/base/cluster-config/resources/clusterrolebinding.yaml -------------------------------------------------------------------------------- /scenarios/uc01-cluster-as-a-service/kustomize/base/pipeline/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc01-cluster-as-a-service/kustomize/base/pipeline/kustomization.yaml -------------------------------------------------------------------------------- /scenarios/uc01-cluster-as-a-service/kustomize/base/pipeline/resources/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc01-cluster-as-a-service/kustomize/base/pipeline/resources/clusterrolebinding.yaml -------------------------------------------------------------------------------- /scenarios/uc01-cluster-as-a-service/kustomize/base/pipeline/resources/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc01-cluster-as-a-service/kustomize/base/pipeline/resources/namespace.yaml -------------------------------------------------------------------------------- /scenarios/uc01-cluster-as-a-service/kustomize/base/pipeline/resources/pipeline-deploy-acm-managed-aws-cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc01-cluster-as-a-service/kustomize/base/pipeline/resources/pipeline-deploy-acm-managed-aws-cluster.yaml -------------------------------------------------------------------------------- /scenarios/uc01-cluster-as-a-service/kustomize/base/pipeline/resources/task-deploy-acm-managed-aws-cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc01-cluster-as-a-service/kustomize/base/pipeline/resources/task-deploy-acm-managed-aws-cluster.yaml -------------------------------------------------------------------------------- /scenarios/uc01-cluster-as-a-service/kustomize/base/pipeline/resources/task-git-clone-project.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc01-cluster-as-a-service/kustomize/base/pipeline/resources/task-git-clone-project.yaml -------------------------------------------------------------------------------- /scenarios/uc01-cluster-as-a-service/kustomize/base/pipeline/resources/task-ocp-cli.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc01-cluster-as-a-service/kustomize/base/pipeline/resources/task-ocp-cli.yaml -------------------------------------------------------------------------------- /scenarios/uc02-vm-as-a-service/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc02-vm-as-a-service/README.md -------------------------------------------------------------------------------- /scenarios/uc02-vm-as-a-service/appset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc02-vm-as-a-service/appset.yaml -------------------------------------------------------------------------------- /scenarios/uc02-vm-as-a-service/bm-placement.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc02-vm-as-a-service/bm-placement.yaml -------------------------------------------------------------------------------- /scenarios/uc02-vm-as-a-service/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc02-vm-as-a-service/kustomization.yaml -------------------------------------------------------------------------------- /scenarios/uc02-vm-as-a-service/pipeline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc02-vm-as-a-service/pipeline.yaml -------------------------------------------------------------------------------- /scenarios/uc02-vm-as-a-service/rhel8.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc02-vm-as-a-service/rhel8.yaml -------------------------------------------------------------------------------- /scenarios/uc02-vm-as-a-service/rhel9.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc02-vm-as-a-service/rhel9.yaml -------------------------------------------------------------------------------- /scenarios/uc03-namespace-as-a-service/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc03-namespace-as-a-service/README.md -------------------------------------------------------------------------------- /scenarios/uc04-container-as-a-service/app/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc04-container-as-a-service/app/.dockerignore -------------------------------------------------------------------------------- /scenarios/uc04-container-as-a-service/app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc04-container-as-a-service/app/.gitignore -------------------------------------------------------------------------------- /scenarios/uc04-container-as-a-service/app/.mvn/wrapper/.gitignore: -------------------------------------------------------------------------------- 1 | maven-wrapper.jar 2 | -------------------------------------------------------------------------------- /scenarios/uc04-container-as-a-service/app/.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc04-container-as-a-service/app/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /scenarios/uc04-container-as-a-service/app/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc04-container-as-a-service/app/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /scenarios/uc04-container-as-a-service/app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc04-container-as-a-service/app/README.md -------------------------------------------------------------------------------- /scenarios/uc04-container-as-a-service/app/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc04-container-as-a-service/app/mvnw -------------------------------------------------------------------------------- /scenarios/uc04-container-as-a-service/app/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc04-container-as-a-service/app/mvnw.cmd -------------------------------------------------------------------------------- /scenarios/uc04-container-as-a-service/app/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc04-container-as-a-service/app/pom.xml -------------------------------------------------------------------------------- /scenarios/uc04-container-as-a-service/app/src/main/docker/Dockerfile.jvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc04-container-as-a-service/app/src/main/docker/Dockerfile.jvm -------------------------------------------------------------------------------- /scenarios/uc04-container-as-a-service/app/src/main/docker/Dockerfile.legacy-jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc04-container-as-a-service/app/src/main/docker/Dockerfile.legacy-jar -------------------------------------------------------------------------------- /scenarios/uc04-container-as-a-service/app/src/main/docker/Dockerfile.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc04-container-as-a-service/app/src/main/docker/Dockerfile.native -------------------------------------------------------------------------------- /scenarios/uc04-container-as-a-service/app/src/main/docker/Dockerfile.native-micro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc04-container-as-a-service/app/src/main/docker/Dockerfile.native-micro -------------------------------------------------------------------------------- /scenarios/uc04-container-as-a-service/app/src/main/java/org/acme/GreetingResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc04-container-as-a-service/app/src/main/java/org/acme/GreetingResource.java -------------------------------------------------------------------------------- /scenarios/uc04-container-as-a-service/app/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scenarios/uc04-container-as-a-service/app/src/test/java/org/acme/GreetingResourceIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc04-container-as-a-service/app/src/test/java/org/acme/GreetingResourceIT.java -------------------------------------------------------------------------------- /scenarios/uc04-container-as-a-service/app/src/test/java/org/acme/GreetingResourceTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc04-container-as-a-service/app/src/test/java/org/acme/GreetingResourceTest.java -------------------------------------------------------------------------------- /scenarios/uc04-container-as-a-service/build-from-binary/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc04-container-as-a-service/build-from-binary/build.yaml -------------------------------------------------------------------------------- /scenarios/uc04-container-as-a-service/build-from-binary/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc04-container-as-a-service/build-from-binary/deployment.yaml -------------------------------------------------------------------------------- /scenarios/uc04-container-as-a-service/build-from-binary/is.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc04-container-as-a-service/build-from-binary/is.yaml -------------------------------------------------------------------------------- /scenarios/uc04-container-as-a-service/build-from-binary/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc04-container-as-a-service/build-from-binary/kustomization.yaml -------------------------------------------------------------------------------- /scenarios/uc04-container-as-a-service/build-from-binary/route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc04-container-as-a-service/build-from-binary/route.yaml -------------------------------------------------------------------------------- /scenarios/uc04-container-as-a-service/build-from-binary/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc04-container-as-a-service/build-from-binary/service.yaml -------------------------------------------------------------------------------- /scenarios/uc04-container-as-a-service/build-from-dockerfile/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc04-container-as-a-service/build-from-dockerfile/build.yaml -------------------------------------------------------------------------------- /scenarios/uc04-container-as-a-service/build-from-dockerfile/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc04-container-as-a-service/build-from-dockerfile/deployment.yaml -------------------------------------------------------------------------------- /scenarios/uc04-container-as-a-service/build-from-dockerfile/is.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc04-container-as-a-service/build-from-dockerfile/is.yaml -------------------------------------------------------------------------------- /scenarios/uc04-container-as-a-service/build-from-dockerfile/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc04-container-as-a-service/build-from-dockerfile/kustomization.yaml -------------------------------------------------------------------------------- /scenarios/uc04-container-as-a-service/build-from-dockerfile/route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc04-container-as-a-service/build-from-dockerfile/route.yaml -------------------------------------------------------------------------------- /scenarios/uc04-container-as-a-service/build-from-dockerfile/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc04-container-as-a-service/build-from-dockerfile/service.yaml -------------------------------------------------------------------------------- /scenarios/uc04-container-as-a-service/build-from-source/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc04-container-as-a-service/build-from-source/build.yaml -------------------------------------------------------------------------------- /scenarios/uc04-container-as-a-service/build-from-source/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc04-container-as-a-service/build-from-source/deployment.yaml -------------------------------------------------------------------------------- /scenarios/uc04-container-as-a-service/build-from-source/is.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc04-container-as-a-service/build-from-source/is.yaml -------------------------------------------------------------------------------- /scenarios/uc04-container-as-a-service/build-from-source/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc04-container-as-a-service/build-from-source/kustomization.yaml -------------------------------------------------------------------------------- /scenarios/uc04-container-as-a-service/build-from-source/route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc04-container-as-a-service/build-from-source/route.yaml -------------------------------------------------------------------------------- /scenarios/uc04-container-as-a-service/build-from-source/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc04-container-as-a-service/build-from-source/service.yaml -------------------------------------------------------------------------------- /scenarios/uc04-container-as-a-service/jar/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc04-container-as-a-service/jar/.DS_Store -------------------------------------------------------------------------------- /scenarios/uc04-container-as-a-service/jar/app.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc04-container-as-a-service/jar/app.jar -------------------------------------------------------------------------------- /scenarios/uc04-container-as-a-service/list-images.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc04-container-as-a-service/list-images.sh -------------------------------------------------------------------------------- /scenarios/uc04-container-as-a-service/pipeline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc04-container-as-a-service/pipeline.yaml -------------------------------------------------------------------------------- /scenarios/uc05--cloud-native-as-a-service/aso-v1-sqlserver/01-azure-sql-server-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc05--cloud-native-as-a-service/aso-v1-sqlserver/01-azure-sql-server-secret.yaml -------------------------------------------------------------------------------- /scenarios/uc05--cloud-native-as-a-service/aso-v1-sqlserver/02-azure-sql-server.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc05--cloud-native-as-a-service/aso-v1-sqlserver/02-azure-sql-server.yaml -------------------------------------------------------------------------------- /scenarios/uc05--cloud-native-as-a-service/aso-v1-sqlserver/03-azure-sql-db.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc05--cloud-native-as-a-service/aso-v1-sqlserver/03-azure-sql-db.yaml -------------------------------------------------------------------------------- /scenarios/uc05--cloud-native-as-a-service/aso-v1-sqlserver/04-azure-sql-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc05--cloud-native-as-a-service/aso-v1-sqlserver/04-azure-sql-service.yaml -------------------------------------------------------------------------------- /scenarios/uc05--cloud-native-as-a-service/aso-v1-sqlserver/05-azure-sql-filrewall.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc05--cloud-native-as-a-service/aso-v1-sqlserver/05-azure-sql-filrewall.yaml -------------------------------------------------------------------------------- /scenarios/uc05--cloud-native-as-a-service/aso-v1-sqlserver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc05--cloud-native-as-a-service/aso-v1-sqlserver/README.md -------------------------------------------------------------------------------- /scenarios/uc05--cloud-native-as-a-service/aso-v1-sqlserver/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc05--cloud-native-as-a-service/aso-v1-sqlserver/kustomization.yaml -------------------------------------------------------------------------------- /scenarios/uc05--cloud-native-as-a-service/aso-v2-postgresql/01-rg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc05--cloud-native-as-a-service/aso-v2-postgresql/01-rg.yaml -------------------------------------------------------------------------------- /scenarios/uc05--cloud-native-as-a-service/aso-v2-postgresql/02-psql-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc05--cloud-native-as-a-service/aso-v2-postgresql/02-psql-secret.yaml -------------------------------------------------------------------------------- /scenarios/uc05--cloud-native-as-a-service/aso-v2-postgresql/03-psql-flexibleserver.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc05--cloud-native-as-a-service/aso-v2-postgresql/03-psql-flexibleserver.yaml -------------------------------------------------------------------------------- /scenarios/uc05--cloud-native-as-a-service/aso-v2-postgresql/04-psql-flexibledb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc05--cloud-native-as-a-service/aso-v2-postgresql/04-psql-flexibledb.yaml -------------------------------------------------------------------------------- /scenarios/uc05--cloud-native-as-a-service/aso-v2-postgresql/05-psql-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc05--cloud-native-as-a-service/aso-v2-postgresql/05-psql-service.yaml -------------------------------------------------------------------------------- /scenarios/uc05--cloud-native-as-a-service/aso-v2-postgresql/06-psql-firewall.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc05--cloud-native-as-a-service/aso-v2-postgresql/06-psql-firewall.yaml -------------------------------------------------------------------------------- /scenarios/uc07-mandatory-configuration/README.md: -------------------------------------------------------------------------------- 1 | # install Namespace Configuration Operator 2 | -------------------------------------------------------------------------------- /scenarios/uc07-mandatory-configuration/htpasswd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc07-mandatory-configuration/htpasswd -------------------------------------------------------------------------------- /scenarios/uc07-mandatory-configuration/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc07-mandatory-configuration/namespace.yaml -------------------------------------------------------------------------------- /scenarios/uc07-mandatory-configuration/namespaceconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc07-mandatory-configuration/namespaceconfig.yaml -------------------------------------------------------------------------------- /scenarios/uc07-mandatory-configuration/oauth.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc07-mandatory-configuration/oauth.yaml -------------------------------------------------------------------------------- /scenarios/uc07-mandatory-configuration/pipeline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc07-mandatory-configuration/pipeline.yaml -------------------------------------------------------------------------------- /scenarios/uc07-mandatory-configuration/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc07-mandatory-configuration/rbac.yaml -------------------------------------------------------------------------------- /scenarios/uc07-mandatory-configuration/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc07-mandatory-configuration/setup.sh -------------------------------------------------------------------------------- /scenarios/uc08-custom-policy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc08-custom-policy/README.md -------------------------------------------------------------------------------- /scenarios/uc08-custom-policy/k8srequiredlabels.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc08-custom-policy/k8srequiredlabels.yaml -------------------------------------------------------------------------------- /scenarios/uc08-custom-policy/must-have-type-label-policy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc08-custom-policy/must-have-type-label-policy.yaml -------------------------------------------------------------------------------- /scenarios/uc09-control-policy-scope/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc09-control-policy-scope/README.md -------------------------------------------------------------------------------- /scenarios/uc09-control-policy-scope/cicd-namespace-policy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc09-control-policy-scope/cicd-namespace-policy.yaml -------------------------------------------------------------------------------- /scenarios/uc09-control-policy-scope/placement.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc09-control-policy-scope/placement.yaml -------------------------------------------------------------------------------- /scenarios/uc09-control-policy-scope/prod-ha-policy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc09-control-policy-scope/prod-ha-policy.yaml -------------------------------------------------------------------------------- /scenarios/uc10-authentication-and-identity-providers/README.md: -------------------------------------------------------------------------------- 1 | # Add htpasswd and Github identity providers 2 | -------------------------------------------------------------------------------- /scenarios/uc10-authentication-and-identity-providers/github-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc10-authentication-and-identity-providers/github-secret.yaml -------------------------------------------------------------------------------- /scenarios/uc10-authentication-and-identity-providers/htpasswd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc10-authentication-and-identity-providers/htpasswd -------------------------------------------------------------------------------- /scenarios/uc10-authentication-and-identity-providers/oauth.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc10-authentication-and-identity-providers/oauth.yaml -------------------------------------------------------------------------------- /scenarios/uc10-authentication-and-identity-providers/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc10-authentication-and-identity-providers/setup.sh -------------------------------------------------------------------------------- /scenarios/uc11-authorization-and-rbac/graph.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc11-authorization-and-rbac/graph.sh -------------------------------------------------------------------------------- /scenarios/uc11-authorization-and-rbac/groups.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc11-authorization-and-rbac/groups.yaml -------------------------------------------------------------------------------- /scenarios/uc11-authorization-and-rbac/htpasswd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc11-authorization-and-rbac/htpasswd -------------------------------------------------------------------------------- /scenarios/uc11-authorization-and-rbac/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc11-authorization-and-rbac/kustomization.yaml -------------------------------------------------------------------------------- /scenarios/uc11-authorization-and-rbac/namespaces.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc11-authorization-and-rbac/namespaces.yaml -------------------------------------------------------------------------------- /scenarios/uc11-authorization-and-rbac/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc11-authorization-and-rbac/rbac.yaml -------------------------------------------------------------------------------- /scenarios/uc11-authorization-and-rbac/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc11-authorization-and-rbac/setup.sh -------------------------------------------------------------------------------- /scenarios/uc12-deny-all/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc12-deny-all/README.md -------------------------------------------------------------------------------- /scenarios/uc13-workload-network-policies/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc13-workload-network-policies/README.md -------------------------------------------------------------------------------- /scenarios/uc13-workload-network-policies/adminnetworkpolicy_allow_backend.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc13-workload-network-policies/adminnetworkpolicy_allow_backend.yaml -------------------------------------------------------------------------------- /scenarios/uc13-workload-network-policies/adminnetworkpolicy_allow_frontend.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc13-workload-network-policies/adminnetworkpolicy_allow_frontend.yaml -------------------------------------------------------------------------------- /scenarios/uc13-workload-network-policies/adminnetworkpolicy_deny_all_backend.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc13-workload-network-policies/adminnetworkpolicy_deny_all_backend.yaml -------------------------------------------------------------------------------- /scenarios/uc13-workload-network-policies/adminnetworkpolicy_deny_all_frontend.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc13-workload-network-policies/adminnetworkpolicy_deny_all_frontend.yaml -------------------------------------------------------------------------------- /scenarios/uc14-east-west-and-north-south-traffic/configure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc14-east-west-and-north-south-traffic/configure.sh -------------------------------------------------------------------------------- /scenarios/uc14-east-west-and-north-south-traffic/part1-service-interconnect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc14-east-west-and-north-south-traffic/part1-service-interconnect.md -------------------------------------------------------------------------------- /scenarios/uc14-east-west-and-north-south-traffic/part2-service-mesh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc14-east-west-and-north-south-traffic/part2-service-mesh.md -------------------------------------------------------------------------------- /scenarios/uc14-east-west-and-north-south-traffic/part3-connectivity-link.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc14-east-west-and-north-south-traffic/part3-connectivity-link.md -------------------------------------------------------------------------------- /scenarios/uc14-east-west-and-north-south-traffic/site.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: skupper.io/v2alpha1 2 | kind: Site 3 | metadata: 4 | name: dc-site -------------------------------------------------------------------------------- /scenarios/uc15-hybrid-workload/DEMO_NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc15-hybrid-workload/DEMO_NOTES.md -------------------------------------------------------------------------------- /scenarios/uc15-hybrid-workload/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc15-hybrid-workload/README.md -------------------------------------------------------------------------------- /scenarios/uc15-hybrid-workload/argocd-applications/hybrid-workload/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc15-hybrid-workload/argocd-applications/hybrid-workload/kustomization.yaml -------------------------------------------------------------------------------- /scenarios/uc15-hybrid-workload/argocd-applications/hybrid-workload/resources/hybrid-workload.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc15-hybrid-workload/argocd-applications/hybrid-workload/resources/hybrid-workload.yaml -------------------------------------------------------------------------------- /scenarios/uc15-hybrid-workload/bootstrap-virt-cluster.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc15-hybrid-workload/bootstrap-virt-cluster.sh -------------------------------------------------------------------------------- /scenarios/uc15-hybrid-workload/kustomize/hybrid-workload/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc15-hybrid-workload/kustomize/hybrid-workload/kustomization.yaml -------------------------------------------------------------------------------- /scenarios/uc15-hybrid-workload/kustomize/hybrid-workload/resources/buildconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc15-hybrid-workload/kustomize/hybrid-workload/resources/buildconfig.yaml -------------------------------------------------------------------------------- /scenarios/uc15-hybrid-workload/kustomize/hybrid-workload/resources/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc15-hybrid-workload/kustomize/hybrid-workload/resources/deployment.yaml -------------------------------------------------------------------------------- /scenarios/uc15-hybrid-workload/kustomize/hybrid-workload/resources/galera-vm-01.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc15-hybrid-workload/kustomize/hybrid-workload/resources/galera-vm-01.yaml -------------------------------------------------------------------------------- /scenarios/uc15-hybrid-workload/kustomize/hybrid-workload/resources/galera-vm-02.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc15-hybrid-workload/kustomize/hybrid-workload/resources/galera-vm-02.yaml -------------------------------------------------------------------------------- /scenarios/uc15-hybrid-workload/kustomize/hybrid-workload/resources/imagestream.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc15-hybrid-workload/kustomize/hybrid-workload/resources/imagestream.yaml -------------------------------------------------------------------------------- /scenarios/uc15-hybrid-workload/kustomize/hybrid-workload/resources/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc15-hybrid-workload/kustomize/hybrid-workload/resources/namespace.yaml -------------------------------------------------------------------------------- /scenarios/uc15-hybrid-workload/kustomize/hybrid-workload/resources/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc15-hybrid-workload/kustomize/hybrid-workload/resources/networkpolicy.yaml -------------------------------------------------------------------------------- /scenarios/uc15-hybrid-workload/kustomize/hybrid-workload/resources/route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc15-hybrid-workload/kustomize/hybrid-workload/resources/route.yaml -------------------------------------------------------------------------------- /scenarios/uc15-hybrid-workload/kustomize/hybrid-workload/resources/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc15-hybrid-workload/kustomize/hybrid-workload/resources/secret.yaml -------------------------------------------------------------------------------- /scenarios/uc15-hybrid-workload/kustomize/hybrid-workload/resources/service-knative.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc15-hybrid-workload/kustomize/hybrid-workload/resources/service-knative.yaml -------------------------------------------------------------------------------- /scenarios/uc15-hybrid-workload/kustomize/hybrid-workload/resources/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc15-hybrid-workload/kustomize/hybrid-workload/resources/service.yaml -------------------------------------------------------------------------------- /scenarios/uc15-hybrid-workload/single-pod-workload.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc15-hybrid-workload/single-pod-workload.yaml -------------------------------------------------------------------------------- /scenarios/uc16-workload-scalability/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc16-workload-scalability/README.md -------------------------------------------------------------------------------- /scenarios/uc16-workload-scalability/applicationset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc16-workload-scalability/applicationset.yaml -------------------------------------------------------------------------------- /scenarios/uc16-workload-scalability/keda/app/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc16-workload-scalability/keda/app/config.php -------------------------------------------------------------------------------- /scenarios/uc16-workload-scalability/keda/app/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc16-workload-scalability/keda/app/index.php -------------------------------------------------------------------------------- /scenarios/uc16-workload-scalability/keda/app/reset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc16-workload-scalability/keda/app/reset.php -------------------------------------------------------------------------------- /scenarios/uc16-workload-scalability/keda/resources/buildconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc16-workload-scalability/keda/resources/buildconfig.yaml -------------------------------------------------------------------------------- /scenarios/uc16-workload-scalability/keda/resources/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc16-workload-scalability/keda/resources/deployment.yaml -------------------------------------------------------------------------------- /scenarios/uc16-workload-scalability/keda/resources/imagestream.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc16-workload-scalability/keda/resources/imagestream.yaml -------------------------------------------------------------------------------- /scenarios/uc16-workload-scalability/keda/resources/keda.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc16-workload-scalability/keda/resources/keda.yaml -------------------------------------------------------------------------------- /scenarios/uc16-workload-scalability/keda/resources/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc16-workload-scalability/keda/resources/kustomization.yaml -------------------------------------------------------------------------------- /scenarios/uc16-workload-scalability/keda/resources/mysql.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc16-workload-scalability/keda/resources/mysql.yaml -------------------------------------------------------------------------------- /scenarios/uc16-workload-scalability/keda/resources/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc16-workload-scalability/keda/resources/namespace.yaml -------------------------------------------------------------------------------- /scenarios/uc16-workload-scalability/keda/resources/php-counter-scaler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc16-workload-scalability/keda/resources/php-counter-scaler.yaml -------------------------------------------------------------------------------- /scenarios/uc16-workload-scalability/keda/resources/route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc16-workload-scalability/keda/resources/route.yaml -------------------------------------------------------------------------------- /scenarios/uc16-workload-scalability/keda/resources/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc16-workload-scalability/keda/resources/service.yaml -------------------------------------------------------------------------------- /scenarios/uc16-workload-scalability/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc16-workload-scalability/kustomization.yaml -------------------------------------------------------------------------------- /scenarios/uc16-workload-scalability/resources/buildconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc16-workload-scalability/resources/buildconfig.yaml -------------------------------------------------------------------------------- /scenarios/uc16-workload-scalability/resources/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc16-workload-scalability/resources/deployment.yaml -------------------------------------------------------------------------------- /scenarios/uc16-workload-scalability/resources/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc16-workload-scalability/resources/hpa.yaml -------------------------------------------------------------------------------- /scenarios/uc16-workload-scalability/resources/imagestream.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc16-workload-scalability/resources/imagestream.yaml -------------------------------------------------------------------------------- /scenarios/uc16-workload-scalability/resources/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc16-workload-scalability/resources/namespace.yaml -------------------------------------------------------------------------------- /scenarios/uc16-workload-scalability/resources/route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc16-workload-scalability/resources/route.yaml -------------------------------------------------------------------------------- /scenarios/uc16-workload-scalability/resources/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc16-workload-scalability/resources/service.yaml -------------------------------------------------------------------------------- /scenarios/uc16-workload-scalability/stress.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc16-workload-scalability/stress.sh -------------------------------------------------------------------------------- /scenarios/uc17-cluster-autoscaler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc17-cluster-autoscaler/README.md -------------------------------------------------------------------------------- /scenarios/uc17-cluster-autoscaler/argocd-applications/bootstrap-spoke/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc17-cluster-autoscaler/argocd-applications/bootstrap-spoke/kustomization.yaml -------------------------------------------------------------------------------- /scenarios/uc17-cluster-autoscaler/argocd-applications/bootstrap-spoke/resources/applicationset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc17-cluster-autoscaler/argocd-applications/bootstrap-spoke/resources/applicationset.yaml -------------------------------------------------------------------------------- /scenarios/uc17-cluster-autoscaler/argocd-applications/bootstrap-spoke/resources/placement.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc17-cluster-autoscaler/argocd-applications/bootstrap-spoke/resources/placement.yaml -------------------------------------------------------------------------------- /scenarios/uc17-cluster-autoscaler/argocd-applications/demo-pipelines-hub/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc17-cluster-autoscaler/argocd-applications/demo-pipelines-hub/kustomization.yaml -------------------------------------------------------------------------------- /scenarios/uc17-cluster-autoscaler/argocd-applications/demo-pipelines-hub/resources/applicationset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc17-cluster-autoscaler/argocd-applications/demo-pipelines-hub/resources/applicationset.yaml -------------------------------------------------------------------------------- /scenarios/uc17-cluster-autoscaler/argocd-applications/demo-pipelines-hub/resources/placement.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc17-cluster-autoscaler/argocd-applications/demo-pipelines-hub/resources/placement.yaml -------------------------------------------------------------------------------- /scenarios/uc17-cluster-autoscaler/argocd-applications/demo-pipelines-spoke/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc17-cluster-autoscaler/argocd-applications/demo-pipelines-spoke/kustomization.yaml -------------------------------------------------------------------------------- /scenarios/uc17-cluster-autoscaler/argocd-applications/demo-pipelines-spoke/resources/applicationset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc17-cluster-autoscaler/argocd-applications/demo-pipelines-spoke/resources/applicationset.yaml -------------------------------------------------------------------------------- /scenarios/uc17-cluster-autoscaler/argocd-applications/demo-pipelines-spoke/resources/placement.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc17-cluster-autoscaler/argocd-applications/demo-pipelines-spoke/resources/placement.yaml -------------------------------------------------------------------------------- /scenarios/uc17-cluster-autoscaler/argocd-applications/stress-job/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc17-cluster-autoscaler/argocd-applications/stress-job/kustomization.yaml -------------------------------------------------------------------------------- /scenarios/uc17-cluster-autoscaler/argocd-applications/stress-job/resources/applicationset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc17-cluster-autoscaler/argocd-applications/stress-job/resources/applicationset.yaml -------------------------------------------------------------------------------- /scenarios/uc17-cluster-autoscaler/argocd-applications/stress-job/resources/placement.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc17-cluster-autoscaler/argocd-applications/stress-job/resources/placement.yaml -------------------------------------------------------------------------------- /scenarios/uc17-cluster-autoscaler/bootstrap-spoke-cluster.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc17-cluster-autoscaler/bootstrap-spoke-cluster.sh -------------------------------------------------------------------------------- /scenarios/uc17-cluster-autoscaler/demo-initialize-hub.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc17-cluster-autoscaler/demo-initialize-hub.sh -------------------------------------------------------------------------------- /scenarios/uc17-cluster-autoscaler/kustomize/base/cluster-config/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc17-cluster-autoscaler/kustomize/base/cluster-config/kustomization.yaml -------------------------------------------------------------------------------- /scenarios/uc17-cluster-autoscaler/kustomize/base/cluster-config/resources/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc17-cluster-autoscaler/kustomize/base/cluster-config/resources/clusterrolebinding.yaml -------------------------------------------------------------------------------- /scenarios/uc17-cluster-autoscaler/kustomize/base/demo-pipelines-hub/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc17-cluster-autoscaler/kustomize/base/demo-pipelines-hub/kustomization.yaml -------------------------------------------------------------------------------- /scenarios/uc17-cluster-autoscaler/kustomize/base/demo-pipelines-hub/resources/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc17-cluster-autoscaler/kustomize/base/demo-pipelines-hub/resources/clusterrolebinding.yaml -------------------------------------------------------------------------------- /scenarios/uc17-cluster-autoscaler/kustomize/base/demo-pipelines-hub/resources/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc17-cluster-autoscaler/kustomize/base/demo-pipelines-hub/resources/namespace.yaml -------------------------------------------------------------------------------- /scenarios/uc17-cluster-autoscaler/kustomize/base/demo-pipelines-hub/resources/pipeline-deploy-acm-managed-aws-cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc17-cluster-autoscaler/kustomize/base/demo-pipelines-hub/resources/pipeline-deploy-acm-managed-aws-cluster.yaml -------------------------------------------------------------------------------- /scenarios/uc17-cluster-autoscaler/kustomize/base/demo-pipelines-hub/resources/task-deploy-acm-managed-aws-cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc17-cluster-autoscaler/kustomize/base/demo-pipelines-hub/resources/task-deploy-acm-managed-aws-cluster.yaml -------------------------------------------------------------------------------- /scenarios/uc17-cluster-autoscaler/kustomize/base/demo-pipelines-hub/resources/task-git-clone-project.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc17-cluster-autoscaler/kustomize/base/demo-pipelines-hub/resources/task-git-clone-project.yaml -------------------------------------------------------------------------------- /scenarios/uc17-cluster-autoscaler/kustomize/base/demo-pipelines-hub/resources/task-ocp-cli.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc17-cluster-autoscaler/kustomize/base/demo-pipelines-hub/resources/task-ocp-cli.yaml -------------------------------------------------------------------------------- /scenarios/uc17-cluster-autoscaler/kustomize/base/demo-pipelines-spoke/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc17-cluster-autoscaler/kustomize/base/demo-pipelines-spoke/kustomization.yaml -------------------------------------------------------------------------------- /scenarios/uc17-cluster-autoscaler/kustomize/base/demo-pipelines-spoke/resources/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc17-cluster-autoscaler/kustomize/base/demo-pipelines-spoke/resources/clusterrolebinding.yaml -------------------------------------------------------------------------------- /scenarios/uc17-cluster-autoscaler/kustomize/base/demo-pipelines-spoke/resources/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc17-cluster-autoscaler/kustomize/base/demo-pipelines-spoke/resources/namespace.yaml -------------------------------------------------------------------------------- /scenarios/uc17-cluster-autoscaler/kustomize/base/demo-pipelines-spoke/resources/pipeline-run-stress-job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc17-cluster-autoscaler/kustomize/base/demo-pipelines-spoke/resources/pipeline-run-stress-job.yaml -------------------------------------------------------------------------------- /scenarios/uc17-cluster-autoscaler/kustomize/base/demo-pipelines-spoke/resources/task-git-clone-project.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc17-cluster-autoscaler/kustomize/base/demo-pipelines-spoke/resources/task-git-clone-project.yaml -------------------------------------------------------------------------------- /scenarios/uc17-cluster-autoscaler/kustomize/base/demo-pipelines-spoke/resources/task-ocp-cli.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc17-cluster-autoscaler/kustomize/base/demo-pipelines-spoke/resources/task-ocp-cli.yaml -------------------------------------------------------------------------------- /scenarios/uc17-cluster-autoscaler/stress-job/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc17-cluster-autoscaler/stress-job/Dockerfile -------------------------------------------------------------------------------- /scenarios/uc17-cluster-autoscaler/stress-job/app.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc17-cluster-autoscaler/stress-job/app.sh -------------------------------------------------------------------------------- /scenarios/uc17-cluster-autoscaler/stress-job/kustomize/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc17-cluster-autoscaler/stress-job/kustomize/kustomization.yaml -------------------------------------------------------------------------------- /scenarios/uc17-cluster-autoscaler/stress-job/kustomize/resources/buildconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc17-cluster-autoscaler/stress-job/kustomize/resources/buildconfig.yaml -------------------------------------------------------------------------------- /scenarios/uc17-cluster-autoscaler/stress-job/kustomize/resources/cronjob.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc17-cluster-autoscaler/stress-job/kustomize/resources/cronjob.yaml -------------------------------------------------------------------------------- /scenarios/uc17-cluster-autoscaler/stress-job/kustomize/resources/imagestream.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc17-cluster-autoscaler/stress-job/kustomize/resources/imagestream.yaml -------------------------------------------------------------------------------- /scenarios/uc17-cluster-autoscaler/stress-job/kustomize/resources/job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc17-cluster-autoscaler/stress-job/kustomize/resources/job.yaml -------------------------------------------------------------------------------- /scenarios/uc17-cluster-autoscaler/stress-job/kustomize/resources/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc17-cluster-autoscaler/stress-job/kustomize/resources/namespace.yaml -------------------------------------------------------------------------------- /scenarios/uc17-cluster-autoscaler/stress-job/requirements.txt: -------------------------------------------------------------------------------- 1 | # (Leave empty if not using Python, but file must exist for S2I) 2 | -------------------------------------------------------------------------------- /scenarios/uc18-metrics-and-logs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc18-metrics-and-logs/README.md -------------------------------------------------------------------------------- /scenarios/uc18-metrics-and-logs/argocd-applications/bootstrap-hub/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc18-metrics-and-logs/argocd-applications/bootstrap-hub/kustomization.yaml -------------------------------------------------------------------------------- /scenarios/uc18-metrics-and-logs/argocd-applications/bootstrap-hub/resources/applicationset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc18-metrics-and-logs/argocd-applications/bootstrap-hub/resources/applicationset.yaml -------------------------------------------------------------------------------- /scenarios/uc18-metrics-and-logs/argocd-applications/bootstrap-hub/resources/placement.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc18-metrics-and-logs/argocd-applications/bootstrap-hub/resources/placement.yaml -------------------------------------------------------------------------------- /scenarios/uc18-metrics-and-logs/argocd-applications/bootstrap-spoke/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc18-metrics-and-logs/argocd-applications/bootstrap-spoke/kustomization.yaml -------------------------------------------------------------------------------- /scenarios/uc18-metrics-and-logs/argocd-applications/bootstrap-spoke/resources/applicationset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc18-metrics-and-logs/argocd-applications/bootstrap-spoke/resources/applicationset.yaml -------------------------------------------------------------------------------- /scenarios/uc18-metrics-and-logs/argocd-applications/bootstrap-spoke/resources/placement.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc18-metrics-and-logs/argocd-applications/bootstrap-spoke/resources/placement.yaml -------------------------------------------------------------------------------- /scenarios/uc18-metrics-and-logs/bootstrap-hub-cluster.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc18-metrics-and-logs/bootstrap-hub-cluster.sh -------------------------------------------------------------------------------- /scenarios/uc18-metrics-and-logs/bootstrap-spoke-cluster.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc18-metrics-and-logs/bootstrap-spoke-cluster.sh -------------------------------------------------------------------------------- /scenarios/uc18-metrics-and-logs/kustomize/base/demo-pipelines-hub/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc18-metrics-and-logs/kustomize/base/demo-pipelines-hub/kustomization.yaml -------------------------------------------------------------------------------- /scenarios/uc18-metrics-and-logs/kustomize/base/demo-pipelines-hub/resources/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc18-metrics-and-logs/kustomize/base/demo-pipelines-hub/resources/clusterrolebinding.yaml -------------------------------------------------------------------------------- /scenarios/uc18-metrics-and-logs/kustomize/base/demo-pipelines-hub/resources/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc18-metrics-and-logs/kustomize/base/demo-pipelines-hub/resources/namespace.yaml -------------------------------------------------------------------------------- /scenarios/uc18-metrics-and-logs/kustomize/base/demo-pipelines-hub/resources/pipeline-deploy-acm-managed-aws-cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc18-metrics-and-logs/kustomize/base/demo-pipelines-hub/resources/pipeline-deploy-acm-managed-aws-cluster.yaml -------------------------------------------------------------------------------- /scenarios/uc18-metrics-and-logs/kustomize/base/demo-pipelines-hub/resources/task-deploy-acm-managed-aws-cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc18-metrics-and-logs/kustomize/base/demo-pipelines-hub/resources/task-deploy-acm-managed-aws-cluster.yaml -------------------------------------------------------------------------------- /scenarios/uc18-metrics-and-logs/kustomize/base/demo-pipelines-hub/resources/task-git-clone-project.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc18-metrics-and-logs/kustomize/base/demo-pipelines-hub/resources/task-git-clone-project.yaml -------------------------------------------------------------------------------- /scenarios/uc18-metrics-and-logs/kustomize/base/demo-pipelines-hub/resources/task-ocp-cli.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc18-metrics-and-logs/kustomize/base/demo-pipelines-hub/resources/task-ocp-cli.yaml -------------------------------------------------------------------------------- /scenarios/uc18-metrics-and-logs/kustomize/base/hub-config/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc18-metrics-and-logs/kustomize/base/hub-config/kustomization.yaml -------------------------------------------------------------------------------- /scenarios/uc18-metrics-and-logs/kustomize/base/hub-config/resources/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc18-metrics-and-logs/kustomize/base/hub-config/resources/clusterrolebinding.yaml -------------------------------------------------------------------------------- /scenarios/uc18-metrics-and-logs/kustomize/base/hub-config/resources/managedclusterbinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc18-metrics-and-logs/kustomize/base/hub-config/resources/managedclusterbinding.yaml -------------------------------------------------------------------------------- /scenarios/uc18-metrics-and-logs/kustomize/base/hub-config/resources/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc18-metrics-and-logs/kustomize/base/hub-config/resources/namespace.yaml -------------------------------------------------------------------------------- /scenarios/uc18-metrics-and-logs/kustomize/base/hub-config/resources/placement.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc18-metrics-and-logs/kustomize/base/hub-config/resources/placement.yaml -------------------------------------------------------------------------------- /scenarios/uc18-metrics-and-logs/kustomize/base/hub-config/resources/placementbinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc18-metrics-and-logs/kustomize/base/hub-config/resources/placementbinding.yaml -------------------------------------------------------------------------------- /scenarios/uc18-metrics-and-logs/kustomize/base/hub-config/resources/policy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc18-metrics-and-logs/kustomize/base/hub-config/resources/policy.yaml -------------------------------------------------------------------------------- /scenarios/uc18-metrics-and-logs/kustomize/base/spoke-config/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc18-metrics-and-logs/kustomize/base/spoke-config/kustomization.yaml -------------------------------------------------------------------------------- /scenarios/uc18-metrics-and-logs/kustomize/base/spoke-config/resources/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc18-metrics-and-logs/kustomize/base/spoke-config/resources/clusterrolebinding.yaml -------------------------------------------------------------------------------- /scenarios/uc18-metrics-and-logs/podinfo/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc18-metrics-and-logs/podinfo/app.py -------------------------------------------------------------------------------- /scenarios/uc18-metrics-and-logs/podinfo/kustomize/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc18-metrics-and-logs/podinfo/kustomize/kustomization.yaml -------------------------------------------------------------------------------- /scenarios/uc18-metrics-and-logs/podinfo/kustomize/resources/buildconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc18-metrics-and-logs/podinfo/kustomize/resources/buildconfig.yaml -------------------------------------------------------------------------------- /scenarios/uc18-metrics-and-logs/podinfo/kustomize/resources/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc18-metrics-and-logs/podinfo/kustomize/resources/deployment.yaml -------------------------------------------------------------------------------- /scenarios/uc18-metrics-and-logs/podinfo/kustomize/resources/imagestream.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc18-metrics-and-logs/podinfo/kustomize/resources/imagestream.yaml -------------------------------------------------------------------------------- /scenarios/uc18-metrics-and-logs/podinfo/kustomize/resources/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc18-metrics-and-logs/podinfo/kustomize/resources/namespace.yaml -------------------------------------------------------------------------------- /scenarios/uc18-metrics-and-logs/podinfo/kustomize/resources/prometheusrule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc18-metrics-and-logs/podinfo/kustomize/resources/prometheusrule.yaml -------------------------------------------------------------------------------- /scenarios/uc18-metrics-and-logs/podinfo/kustomize/resources/route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc18-metrics-and-logs/podinfo/kustomize/resources/route.yaml -------------------------------------------------------------------------------- /scenarios/uc18-metrics-and-logs/podinfo/kustomize/resources/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc18-metrics-and-logs/podinfo/kustomize/resources/service.yaml -------------------------------------------------------------------------------- /scenarios/uc18-metrics-and-logs/podinfo/kustomize/resources/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc18-metrics-and-logs/podinfo/kustomize/resources/servicemonitor.yaml -------------------------------------------------------------------------------- /scenarios/uc18-metrics-and-logs/podinfo/requirements.txt: -------------------------------------------------------------------------------- 1 | Flask==3.0.3 2 | psutil==5.9.8 3 | prometheus_client==0.20.0 4 | -------------------------------------------------------------------------------- /scenarios/uc19-network-graphs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc19-network-graphs/README.md -------------------------------------------------------------------------------- /scenarios/uc19-network-graphs/argocd-applications/bootstrap-hub/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc19-network-graphs/argocd-applications/bootstrap-hub/kustomization.yaml -------------------------------------------------------------------------------- /scenarios/uc19-network-graphs/argocd-applications/bootstrap-hub/resources/applicationset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc19-network-graphs/argocd-applications/bootstrap-hub/resources/applicationset.yaml -------------------------------------------------------------------------------- /scenarios/uc19-network-graphs/argocd-applications/bootstrap-hub/resources/placement.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc19-network-graphs/argocd-applications/bootstrap-hub/resources/placement.yaml -------------------------------------------------------------------------------- /scenarios/uc19-network-graphs/argocd-applications/bootstrap-spoke/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc19-network-graphs/argocd-applications/bootstrap-spoke/kustomization.yaml -------------------------------------------------------------------------------- /scenarios/uc19-network-graphs/argocd-applications/bootstrap-spoke/resources/applicationset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc19-network-graphs/argocd-applications/bootstrap-spoke/resources/applicationset.yaml -------------------------------------------------------------------------------- /scenarios/uc19-network-graphs/argocd-applications/bootstrap-spoke/resources/placement.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc19-network-graphs/argocd-applications/bootstrap-spoke/resources/placement.yaml -------------------------------------------------------------------------------- /scenarios/uc19-network-graphs/bootstrap-hub-cluster.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc19-network-graphs/bootstrap-hub-cluster.sh -------------------------------------------------------------------------------- /scenarios/uc19-network-graphs/bootstrap-spoke-cluster.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc19-network-graphs/bootstrap-spoke-cluster.sh -------------------------------------------------------------------------------- /scenarios/uc19-network-graphs/kustomize/base/demo-pipelines-hub/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc19-network-graphs/kustomize/base/demo-pipelines-hub/kustomization.yaml -------------------------------------------------------------------------------- /scenarios/uc19-network-graphs/kustomize/base/demo-pipelines-hub/resources/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc19-network-graphs/kustomize/base/demo-pipelines-hub/resources/clusterrolebinding.yaml -------------------------------------------------------------------------------- /scenarios/uc19-network-graphs/kustomize/base/demo-pipelines-hub/resources/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc19-network-graphs/kustomize/base/demo-pipelines-hub/resources/namespace.yaml -------------------------------------------------------------------------------- /scenarios/uc19-network-graphs/kustomize/base/demo-pipelines-hub/resources/pipeline-deploy-acm-managed-aws-cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc19-network-graphs/kustomize/base/demo-pipelines-hub/resources/pipeline-deploy-acm-managed-aws-cluster.yaml -------------------------------------------------------------------------------- /scenarios/uc19-network-graphs/kustomize/base/demo-pipelines-hub/resources/task-deploy-acm-managed-aws-cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc19-network-graphs/kustomize/base/demo-pipelines-hub/resources/task-deploy-acm-managed-aws-cluster.yaml -------------------------------------------------------------------------------- /scenarios/uc19-network-graphs/kustomize/base/demo-pipelines-hub/resources/task-git-clone-project.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc19-network-graphs/kustomize/base/demo-pipelines-hub/resources/task-git-clone-project.yaml -------------------------------------------------------------------------------- /scenarios/uc19-network-graphs/kustomize/base/demo-pipelines-hub/resources/task-ocp-cli.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc19-network-graphs/kustomize/base/demo-pipelines-hub/resources/task-ocp-cli.yaml -------------------------------------------------------------------------------- /scenarios/uc19-network-graphs/kustomize/base/hub-config/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc19-network-graphs/kustomize/base/hub-config/kustomization.yaml -------------------------------------------------------------------------------- /scenarios/uc19-network-graphs/kustomize/base/hub-config/resources/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc19-network-graphs/kustomize/base/hub-config/resources/clusterrolebinding.yaml -------------------------------------------------------------------------------- /scenarios/uc19-network-graphs/kustomize/base/hub-config/resources/managedclusterbinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc19-network-graphs/kustomize/base/hub-config/resources/managedclusterbinding.yaml -------------------------------------------------------------------------------- /scenarios/uc19-network-graphs/kustomize/base/hub-config/resources/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc19-network-graphs/kustomize/base/hub-config/resources/namespace.yaml -------------------------------------------------------------------------------- /scenarios/uc19-network-graphs/kustomize/base/hub-config/resources/placement.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc19-network-graphs/kustomize/base/hub-config/resources/placement.yaml -------------------------------------------------------------------------------- /scenarios/uc19-network-graphs/kustomize/base/hub-config/resources/placementbinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc19-network-graphs/kustomize/base/hub-config/resources/placementbinding.yaml -------------------------------------------------------------------------------- /scenarios/uc19-network-graphs/kustomize/base/hub-config/resources/policy-stackrox-hub-init-bundle.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc19-network-graphs/kustomize/base/hub-config/resources/policy-stackrox-hub-init-bundle.yaml -------------------------------------------------------------------------------- /scenarios/uc19-network-graphs/kustomize/base/hub-config/resources/policy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc19-network-graphs/kustomize/base/hub-config/resources/policy.yaml -------------------------------------------------------------------------------- /scenarios/uc19-network-graphs/kustomize/base/spoke-config/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc19-network-graphs/kustomize/base/spoke-config/kustomization.yaml -------------------------------------------------------------------------------- /scenarios/uc19-network-graphs/kustomize/base/spoke-config/resources/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc19-network-graphs/kustomize/base/spoke-config/resources/clusterrolebinding.yaml -------------------------------------------------------------------------------- /scenarios/uc19-network-graphs/mini-contacts/api/.s2i/bin/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc19-network-graphs/mini-contacts/api/.s2i/bin/run -------------------------------------------------------------------------------- /scenarios/uc19-network-graphs/mini-contacts/api/app/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc19-network-graphs/mini-contacts/api/app/db.py -------------------------------------------------------------------------------- /scenarios/uc19-network-graphs/mini-contacts/api/app/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc19-network-graphs/mini-contacts/api/app/main.py -------------------------------------------------------------------------------- /scenarios/uc19-network-graphs/mini-contacts/api/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc19-network-graphs/mini-contacts/api/requirements.txt -------------------------------------------------------------------------------- /scenarios/uc19-network-graphs/mini-contacts/frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc19-network-graphs/mini-contacts/frontend/package.json -------------------------------------------------------------------------------- /scenarios/uc19-network-graphs/mini-contacts/frontend/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc19-network-graphs/mini-contacts/frontend/public/index.html -------------------------------------------------------------------------------- /scenarios/uc19-network-graphs/mini-contacts/frontend/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc19-network-graphs/mini-contacts/frontend/server.js -------------------------------------------------------------------------------- /scenarios/uc19-network-graphs/mini-contacts/kustomize/backend/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc19-network-graphs/mini-contacts/kustomize/backend/kustomization.yaml -------------------------------------------------------------------------------- /scenarios/uc19-network-graphs/mini-contacts/kustomize/backend/resources/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc19-network-graphs/mini-contacts/kustomize/backend/resources/configmap.yaml -------------------------------------------------------------------------------- /scenarios/uc19-network-graphs/mini-contacts/kustomize/backend/resources/job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc19-network-graphs/mini-contacts/kustomize/backend/resources/job.yaml -------------------------------------------------------------------------------- /scenarios/uc19-network-graphs/mini-contacts/kustomize/backend/resources/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc19-network-graphs/mini-contacts/kustomize/backend/resources/namespace.yaml -------------------------------------------------------------------------------- /scenarios/uc19-network-graphs/mini-contacts/kustomize/backend/resources/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc19-network-graphs/mini-contacts/kustomize/backend/resources/networkpolicy.yaml -------------------------------------------------------------------------------- /scenarios/uc19-network-graphs/mini-contacts/kustomize/backend/resources/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc19-network-graphs/mini-contacts/kustomize/backend/resources/secret.yaml -------------------------------------------------------------------------------- /scenarios/uc19-network-graphs/mini-contacts/kustomize/backend/resources/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc19-network-graphs/mini-contacts/kustomize/backend/resources/service.yaml -------------------------------------------------------------------------------- /scenarios/uc19-network-graphs/mini-contacts/kustomize/backend/resources/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc19-network-graphs/mini-contacts/kustomize/backend/resources/statefulset.yaml -------------------------------------------------------------------------------- /scenarios/uc19-network-graphs/mini-contacts/kustomize/frontend/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc19-network-graphs/mini-contacts/kustomize/frontend/kustomization.yaml -------------------------------------------------------------------------------- /scenarios/uc19-network-graphs/mini-contacts/kustomize/frontend/resources/buildconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc19-network-graphs/mini-contacts/kustomize/frontend/resources/buildconfig.yaml -------------------------------------------------------------------------------- /scenarios/uc19-network-graphs/mini-contacts/kustomize/frontend/resources/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc19-network-graphs/mini-contacts/kustomize/frontend/resources/configmap.yaml -------------------------------------------------------------------------------- /scenarios/uc19-network-graphs/mini-contacts/kustomize/frontend/resources/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc19-network-graphs/mini-contacts/kustomize/frontend/resources/deployment.yaml -------------------------------------------------------------------------------- /scenarios/uc19-network-graphs/mini-contacts/kustomize/frontend/resources/imagestream.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc19-network-graphs/mini-contacts/kustomize/frontend/resources/imagestream.yaml -------------------------------------------------------------------------------- /scenarios/uc19-network-graphs/mini-contacts/kustomize/frontend/resources/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc19-network-graphs/mini-contacts/kustomize/frontend/resources/namespace.yaml -------------------------------------------------------------------------------- /scenarios/uc19-network-graphs/mini-contacts/kustomize/frontend/resources/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc19-network-graphs/mini-contacts/kustomize/frontend/resources/networkpolicy.yaml -------------------------------------------------------------------------------- /scenarios/uc19-network-graphs/mini-contacts/kustomize/frontend/resources/route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc19-network-graphs/mini-contacts/kustomize/frontend/resources/route.yaml -------------------------------------------------------------------------------- /scenarios/uc19-network-graphs/mini-contacts/kustomize/frontend/resources/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc19-network-graphs/mini-contacts/kustomize/frontend/resources/secret.yaml -------------------------------------------------------------------------------- /scenarios/uc19-network-graphs/mini-contacts/kustomize/frontend/resources/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc19-network-graphs/mini-contacts/kustomize/frontend/resources/service.yaml -------------------------------------------------------------------------------- /scenarios/uc19-network-graphs/mini-contacts/kustomize/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc19-network-graphs/mini-contacts/kustomize/kustomization.yaml -------------------------------------------------------------------------------- /scenarios/uc19-network-graphs/test-argo-app.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /scenarios/uc20-policy-dashboard/policy-check-cert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc20-policy-dashboard/policy-check-cert.yaml -------------------------------------------------------------------------------- /scenarios/uc20-policy-dashboard/policy-check-kubeadmin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc20-policy-dashboard/policy-check-kubeadmin.yaml -------------------------------------------------------------------------------- /scenarios/uc20-policy-dashboard/policy-check-namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc20-policy-dashboard/policy-check-namespace.yaml -------------------------------------------------------------------------------- /scenarios/uc20-policy-dashboard/policy-check-pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc20-policy-dashboard/policy-check-pod.yaml -------------------------------------------------------------------------------- /scenarios/uc22-cluster-upgrade/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc22-cluster-upgrade/README.md -------------------------------------------------------------------------------- /scenarios/uc22-cluster-upgrade/argocd-applications/bootstrap/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc22-cluster-upgrade/argocd-applications/bootstrap/kustomization.yaml -------------------------------------------------------------------------------- /scenarios/uc22-cluster-upgrade/argocd-applications/bootstrap/resources/applicationset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc22-cluster-upgrade/argocd-applications/bootstrap/resources/applicationset.yaml -------------------------------------------------------------------------------- /scenarios/uc22-cluster-upgrade/argocd-applications/bootstrap/resources/placement.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc22-cluster-upgrade/argocd-applications/bootstrap/resources/placement.yaml -------------------------------------------------------------------------------- /scenarios/uc22-cluster-upgrade/argocd-applications/podspot/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc22-cluster-upgrade/argocd-applications/podspot/kustomization.yaml -------------------------------------------------------------------------------- /scenarios/uc22-cluster-upgrade/argocd-applications/podspot/resources/applicationset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc22-cluster-upgrade/argocd-applications/podspot/resources/applicationset.yaml -------------------------------------------------------------------------------- /scenarios/uc22-cluster-upgrade/argocd-applications/podspot/resources/placement.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc22-cluster-upgrade/argocd-applications/podspot/resources/placement.yaml -------------------------------------------------------------------------------- /scenarios/uc22-cluster-upgrade/backend-pod-spot/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc22-cluster-upgrade/backend-pod-spot/app.py -------------------------------------------------------------------------------- /scenarios/uc22-cluster-upgrade/backend-pod-spot/kustomize/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc22-cluster-upgrade/backend-pod-spot/kustomize/kustomization.yaml -------------------------------------------------------------------------------- /scenarios/uc22-cluster-upgrade/backend-pod-spot/kustomize/resources/buildconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc22-cluster-upgrade/backend-pod-spot/kustomize/resources/buildconfig.yaml -------------------------------------------------------------------------------- /scenarios/uc22-cluster-upgrade/backend-pod-spot/kustomize/resources/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc22-cluster-upgrade/backend-pod-spot/kustomize/resources/deployment.yaml -------------------------------------------------------------------------------- /scenarios/uc22-cluster-upgrade/backend-pod-spot/kustomize/resources/imagestream.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc22-cluster-upgrade/backend-pod-spot/kustomize/resources/imagestream.yaml -------------------------------------------------------------------------------- /scenarios/uc22-cluster-upgrade/backend-pod-spot/kustomize/resources/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc22-cluster-upgrade/backend-pod-spot/kustomize/resources/namespace.yaml -------------------------------------------------------------------------------- /scenarios/uc22-cluster-upgrade/backend-pod-spot/kustomize/resources/route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc22-cluster-upgrade/backend-pod-spot/kustomize/resources/route.yaml -------------------------------------------------------------------------------- /scenarios/uc22-cluster-upgrade/backend-pod-spot/kustomize/resources/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc22-cluster-upgrade/backend-pod-spot/kustomize/resources/service.yaml -------------------------------------------------------------------------------- /scenarios/uc22-cluster-upgrade/backend-pod-spot/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc22-cluster-upgrade/backend-pod-spot/requirements.txt -------------------------------------------------------------------------------- /scenarios/uc22-cluster-upgrade/bootstrap-demo-part-01.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc22-cluster-upgrade/bootstrap-demo-part-01.sh -------------------------------------------------------------------------------- /scenarios/uc22-cluster-upgrade/demo-initialize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc22-cluster-upgrade/demo-initialize.sh -------------------------------------------------------------------------------- /scenarios/uc22-cluster-upgrade/frontend-pod-spot/kustomize/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc22-cluster-upgrade/frontend-pod-spot/kustomize/kustomization.yaml -------------------------------------------------------------------------------- /scenarios/uc22-cluster-upgrade/frontend-pod-spot/kustomize/resources/buildconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc22-cluster-upgrade/frontend-pod-spot/kustomize/resources/buildconfig.yaml -------------------------------------------------------------------------------- /scenarios/uc22-cluster-upgrade/frontend-pod-spot/kustomize/resources/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc22-cluster-upgrade/frontend-pod-spot/kustomize/resources/deployment.yaml -------------------------------------------------------------------------------- /scenarios/uc22-cluster-upgrade/frontend-pod-spot/kustomize/resources/imagestream.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc22-cluster-upgrade/frontend-pod-spot/kustomize/resources/imagestream.yaml -------------------------------------------------------------------------------- /scenarios/uc22-cluster-upgrade/frontend-pod-spot/kustomize/resources/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc22-cluster-upgrade/frontend-pod-spot/kustomize/resources/namespace.yaml -------------------------------------------------------------------------------- /scenarios/uc22-cluster-upgrade/frontend-pod-spot/kustomize/resources/route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc22-cluster-upgrade/frontend-pod-spot/kustomize/resources/route.yaml -------------------------------------------------------------------------------- /scenarios/uc22-cluster-upgrade/frontend-pod-spot/kustomize/resources/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc22-cluster-upgrade/frontend-pod-spot/kustomize/resources/service.yaml -------------------------------------------------------------------------------- /scenarios/uc22-cluster-upgrade/frontend-pod-spot/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc22-cluster-upgrade/frontend-pod-spot/package.json -------------------------------------------------------------------------------- /scenarios/uc22-cluster-upgrade/frontend-pod-spot/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc22-cluster-upgrade/frontend-pod-spot/public/index.html -------------------------------------------------------------------------------- /scenarios/uc22-cluster-upgrade/frontend-pod-spot/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc22-cluster-upgrade/frontend-pod-spot/server.js -------------------------------------------------------------------------------- /scenarios/uc22-cluster-upgrade/kustomize/base/cluster-config/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc22-cluster-upgrade/kustomize/base/cluster-config/kustomization.yaml -------------------------------------------------------------------------------- /scenarios/uc22-cluster-upgrade/kustomize/base/cluster-config/resources/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc22-cluster-upgrade/kustomize/base/cluster-config/resources/clusterrolebinding.yaml -------------------------------------------------------------------------------- /scenarios/uc25-node-resiliency/DEMO_NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc25-node-resiliency/DEMO_NOTES.md -------------------------------------------------------------------------------- /scenarios/uc25-node-resiliency/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc25-node-resiliency/README.md -------------------------------------------------------------------------------- /scenarios/uc25-node-resiliency/argocd-applications/hybrid-workload/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc25-node-resiliency/argocd-applications/hybrid-workload/kustomization.yaml -------------------------------------------------------------------------------- /scenarios/uc25-node-resiliency/argocd-applications/hybrid-workload/resources/hybrid-workload.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc25-node-resiliency/argocd-applications/hybrid-workload/resources/hybrid-workload.yaml -------------------------------------------------------------------------------- /scenarios/uc25-node-resiliency/bootstrap-virt-cluster.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc25-node-resiliency/bootstrap-virt-cluster.sh -------------------------------------------------------------------------------- /scenarios/uc25-node-resiliency/kustomize/hybrid-workload/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc25-node-resiliency/kustomize/hybrid-workload/kustomization.yaml -------------------------------------------------------------------------------- /scenarios/uc25-node-resiliency/kustomize/hybrid-workload/resources/buildconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc25-node-resiliency/kustomize/hybrid-workload/resources/buildconfig.yaml -------------------------------------------------------------------------------- /scenarios/uc25-node-resiliency/kustomize/hybrid-workload/resources/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc25-node-resiliency/kustomize/hybrid-workload/resources/deployment.yaml -------------------------------------------------------------------------------- /scenarios/uc25-node-resiliency/kustomize/hybrid-workload/resources/galera-vm-01.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc25-node-resiliency/kustomize/hybrid-workload/resources/galera-vm-01.yaml -------------------------------------------------------------------------------- /scenarios/uc25-node-resiliency/kustomize/hybrid-workload/resources/galera-vm-02.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc25-node-resiliency/kustomize/hybrid-workload/resources/galera-vm-02.yaml -------------------------------------------------------------------------------- /scenarios/uc25-node-resiliency/kustomize/hybrid-workload/resources/imagestream.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc25-node-resiliency/kustomize/hybrid-workload/resources/imagestream.yaml -------------------------------------------------------------------------------- /scenarios/uc25-node-resiliency/kustomize/hybrid-workload/resources/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc25-node-resiliency/kustomize/hybrid-workload/resources/namespace.yaml -------------------------------------------------------------------------------- /scenarios/uc25-node-resiliency/kustomize/hybrid-workload/resources/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc25-node-resiliency/kustomize/hybrid-workload/resources/networkpolicy.yaml -------------------------------------------------------------------------------- /scenarios/uc25-node-resiliency/kustomize/hybrid-workload/resources/route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc25-node-resiliency/kustomize/hybrid-workload/resources/route.yaml -------------------------------------------------------------------------------- /scenarios/uc25-node-resiliency/kustomize/hybrid-workload/resources/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc25-node-resiliency/kustomize/hybrid-workload/resources/secret.yaml -------------------------------------------------------------------------------- /scenarios/uc25-node-resiliency/kustomize/hybrid-workload/resources/service-knative.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc25-node-resiliency/kustomize/hybrid-workload/resources/service-knative.yaml -------------------------------------------------------------------------------- /scenarios/uc25-node-resiliency/kustomize/hybrid-workload/resources/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc25-node-resiliency/kustomize/hybrid-workload/resources/service.yaml -------------------------------------------------------------------------------- /scenarios/uc25-node-resiliency/single-pod-workload.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc25-node-resiliency/single-pod-workload.yaml -------------------------------------------------------------------------------- /scenarios/uc26-cluster-and-site-resiliency/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc26-cluster-and-site-resiliency/README.md -------------------------------------------------------------------------------- /scenarios/uc26-cluster-and-site-resiliency/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc26-cluster-and-site-resiliency/app.yaml -------------------------------------------------------------------------------- /scenarios/uc26-cluster-and-site-resiliency/applicationset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc26-cluster-and-site-resiliency/applicationset.yaml -------------------------------------------------------------------------------- /scenarios/uc26-cluster-and-site-resiliency/db.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc26-cluster-and-site-resiliency/db.yaml -------------------------------------------------------------------------------- /scenarios/uc26-cluster-and-site-resiliency/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc26-cluster-and-site-resiliency/kustomization.yaml -------------------------------------------------------------------------------- /scenarios/uc26-cluster-and-site-resiliency/resiliency.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caseraw/OpenShiftDemoTime/HEAD/scenarios/uc26-cluster-and-site-resiliency/resiliency.sh --------------------------------------------------------------------------------