├── .DS_Store ├── .idea ├── .gitignore ├── Platform-Engineer-Kube.iml ├── modules.xml └── vcs.xml ├── 40171730216847_.pic.jpg ├── KubernetesPart2ndStep ├── .DS_Store ├── Crossplane │ ├── Azure.md │ └── setup.md ├── Devtron │ └── instructions.md ├── KubeVirt │ ├── .DS_Store │ ├── install.sh │ ├── prereqs.md │ ├── ubuntu │ │ ├── directions.md │ │ ├── iso_update.md │ │ ├── prereqs.md │ │ ├── pvc.yaml │ │ └── ubuntu.yaml │ └── windows_server_2022 │ │ ├── directions.md │ │ ├── iso_update.md │ │ ├── pvc.yaml │ │ └── win2022.yaml ├── Operators │ └── instructions.md ├── Rancher │ └── instructions.md └── cluster-api │ ├── .DS_Store │ ├── azure │ ├── apply.sh │ ├── cloud-provider.sh │ ├── cni-install.sh │ ├── connect-to-cluster.sh │ ├── install.sh │ ├── mgmtinit-azure.sh │ ├── rbac-creds.sh │ └── workloadcreation-azure.sh │ └── website.md ├── NoCodePreparation1stStep ├── CIS Azure Kubernetes Service (AKS) Benchmark v1.2.0 PDF.pdf ├── CIS_Kubernetes_Benchmark_v1.6.0 (1).pdf ├── authentication_and_authorization.md ├── creation.md ├── management.md ├── scanning.md ├── security.md └── what_is_needed.md ├── README.md └── UIAndMonitoringEtcStep3 ├── .DS_Store ├── homegrown └── instructions.md ├── opensource ├── .DS_Store ├── Backstage │ └── instructions.md └── CNOE │ ├── LICENSE │ ├── README.md │ ├── idpbuilder │ ├── idpbuilder-darwin-arm64.tar.gz │ └── instructions.md ├── paid ├── .DS_Store ├── massdriver │ └── instructions.md ├── opslevel │ └── instructions.md └── port │ └── instructions.md └── radius ├── instructions.md └── radapp ├── .rad └── rad.yaml ├── app.bicep └── test.bicep /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whyaustin/Platform-Engineering-Kubernetes/HEAD/.DS_Store -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whyaustin/Platform-Engineering-Kubernetes/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/Platform-Engineer-Kube.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whyaustin/Platform-Engineering-Kubernetes/HEAD/.idea/Platform-Engineer-Kube.iml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whyaustin/Platform-Engineering-Kubernetes/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whyaustin/Platform-Engineering-Kubernetes/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /40171730216847_.pic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whyaustin/Platform-Engineering-Kubernetes/HEAD/40171730216847_.pic.jpg -------------------------------------------------------------------------------- /KubernetesPart2ndStep/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whyaustin/Platform-Engineering-Kubernetes/HEAD/KubernetesPart2ndStep/.DS_Store -------------------------------------------------------------------------------- /KubernetesPart2ndStep/Crossplane/Azure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whyaustin/Platform-Engineering-Kubernetes/HEAD/KubernetesPart2ndStep/Crossplane/Azure.md -------------------------------------------------------------------------------- /KubernetesPart2ndStep/Crossplane/setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whyaustin/Platform-Engineering-Kubernetes/HEAD/KubernetesPart2ndStep/Crossplane/setup.md -------------------------------------------------------------------------------- /KubernetesPart2ndStep/Devtron/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whyaustin/Platform-Engineering-Kubernetes/HEAD/KubernetesPart2ndStep/Devtron/instructions.md -------------------------------------------------------------------------------- /KubernetesPart2ndStep/KubeVirt/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whyaustin/Platform-Engineering-Kubernetes/HEAD/KubernetesPart2ndStep/KubeVirt/.DS_Store -------------------------------------------------------------------------------- /KubernetesPart2ndStep/KubeVirt/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whyaustin/Platform-Engineering-Kubernetes/HEAD/KubernetesPart2ndStep/KubeVirt/install.sh -------------------------------------------------------------------------------- /KubernetesPart2ndStep/KubeVirt/prereqs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whyaustin/Platform-Engineering-Kubernetes/HEAD/KubernetesPart2ndStep/KubeVirt/prereqs.md -------------------------------------------------------------------------------- /KubernetesPart2ndStep/KubeVirt/ubuntu/directions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whyaustin/Platform-Engineering-Kubernetes/HEAD/KubernetesPart2ndStep/KubeVirt/ubuntu/directions.md -------------------------------------------------------------------------------- /KubernetesPart2ndStep/KubeVirt/ubuntu/iso_update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whyaustin/Platform-Engineering-Kubernetes/HEAD/KubernetesPart2ndStep/KubeVirt/ubuntu/iso_update.md -------------------------------------------------------------------------------- /KubernetesPart2ndStep/KubeVirt/ubuntu/prereqs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whyaustin/Platform-Engineering-Kubernetes/HEAD/KubernetesPart2ndStep/KubeVirt/ubuntu/prereqs.md -------------------------------------------------------------------------------- /KubernetesPart2ndStep/KubeVirt/ubuntu/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whyaustin/Platform-Engineering-Kubernetes/HEAD/KubernetesPart2ndStep/KubeVirt/ubuntu/pvc.yaml -------------------------------------------------------------------------------- /KubernetesPart2ndStep/KubeVirt/ubuntu/ubuntu.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whyaustin/Platform-Engineering-Kubernetes/HEAD/KubernetesPart2ndStep/KubeVirt/ubuntu/ubuntu.yaml -------------------------------------------------------------------------------- /KubernetesPart2ndStep/KubeVirt/windows_server_2022/directions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whyaustin/Platform-Engineering-Kubernetes/HEAD/KubernetesPart2ndStep/KubeVirt/windows_server_2022/directions.md -------------------------------------------------------------------------------- /KubernetesPart2ndStep/KubeVirt/windows_server_2022/iso_update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whyaustin/Platform-Engineering-Kubernetes/HEAD/KubernetesPart2ndStep/KubeVirt/windows_server_2022/iso_update.md -------------------------------------------------------------------------------- /KubernetesPart2ndStep/KubeVirt/windows_server_2022/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whyaustin/Platform-Engineering-Kubernetes/HEAD/KubernetesPart2ndStep/KubeVirt/windows_server_2022/pvc.yaml -------------------------------------------------------------------------------- /KubernetesPart2ndStep/KubeVirt/windows_server_2022/win2022.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whyaustin/Platform-Engineering-Kubernetes/HEAD/KubernetesPart2ndStep/KubeVirt/windows_server_2022/win2022.yaml -------------------------------------------------------------------------------- /KubernetesPart2ndStep/Operators/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whyaustin/Platform-Engineering-Kubernetes/HEAD/KubernetesPart2ndStep/Operators/instructions.md -------------------------------------------------------------------------------- /KubernetesPart2ndStep/Rancher/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whyaustin/Platform-Engineering-Kubernetes/HEAD/KubernetesPart2ndStep/Rancher/instructions.md -------------------------------------------------------------------------------- /KubernetesPart2ndStep/cluster-api/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whyaustin/Platform-Engineering-Kubernetes/HEAD/KubernetesPart2ndStep/cluster-api/.DS_Store -------------------------------------------------------------------------------- /KubernetesPart2ndStep/cluster-api/azure/apply.sh: -------------------------------------------------------------------------------- 1 | ``` 2 | kubectl apply -f capi-azurekubeadm.yaml 3 | ``` -------------------------------------------------------------------------------- /KubernetesPart2ndStep/cluster-api/azure/cloud-provider.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whyaustin/Platform-Engineering-Kubernetes/HEAD/KubernetesPart2ndStep/cluster-api/azure/cloud-provider.sh -------------------------------------------------------------------------------- /KubernetesPart2ndStep/cluster-api/azure/cni-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whyaustin/Platform-Engineering-Kubernetes/HEAD/KubernetesPart2ndStep/cluster-api/azure/cni-install.sh -------------------------------------------------------------------------------- /KubernetesPart2ndStep/cluster-api/azure/connect-to-cluster.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whyaustin/Platform-Engineering-Kubernetes/HEAD/KubernetesPart2ndStep/cluster-api/azure/connect-to-cluster.sh -------------------------------------------------------------------------------- /KubernetesPart2ndStep/cluster-api/azure/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whyaustin/Platform-Engineering-Kubernetes/HEAD/KubernetesPart2ndStep/cluster-api/azure/install.sh -------------------------------------------------------------------------------- /KubernetesPart2ndStep/cluster-api/azure/mgmtinit-azure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whyaustin/Platform-Engineering-Kubernetes/HEAD/KubernetesPart2ndStep/cluster-api/azure/mgmtinit-azure.sh -------------------------------------------------------------------------------- /KubernetesPart2ndStep/cluster-api/azure/rbac-creds.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whyaustin/Platform-Engineering-Kubernetes/HEAD/KubernetesPart2ndStep/cluster-api/azure/rbac-creds.sh -------------------------------------------------------------------------------- /KubernetesPart2ndStep/cluster-api/azure/workloadcreation-azure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whyaustin/Platform-Engineering-Kubernetes/HEAD/KubernetesPart2ndStep/cluster-api/azure/workloadcreation-azure.sh -------------------------------------------------------------------------------- /KubernetesPart2ndStep/cluster-api/website.md: -------------------------------------------------------------------------------- 1 | https://capz.sigs.k8s.io/topics/managedcluster.html -------------------------------------------------------------------------------- /NoCodePreparation1stStep/CIS Azure Kubernetes Service (AKS) Benchmark v1.2.0 PDF.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whyaustin/Platform-Engineering-Kubernetes/HEAD/NoCodePreparation1stStep/CIS Azure Kubernetes Service (AKS) Benchmark v1.2.0 PDF.pdf -------------------------------------------------------------------------------- /NoCodePreparation1stStep/CIS_Kubernetes_Benchmark_v1.6.0 (1).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whyaustin/Platform-Engineering-Kubernetes/HEAD/NoCodePreparation1stStep/CIS_Kubernetes_Benchmark_v1.6.0 (1).pdf -------------------------------------------------------------------------------- /NoCodePreparation1stStep/authentication_and_authorization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whyaustin/Platform-Engineering-Kubernetes/HEAD/NoCodePreparation1stStep/authentication_and_authorization.md -------------------------------------------------------------------------------- /NoCodePreparation1stStep/creation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whyaustin/Platform-Engineering-Kubernetes/HEAD/NoCodePreparation1stStep/creation.md -------------------------------------------------------------------------------- /NoCodePreparation1stStep/management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whyaustin/Platform-Engineering-Kubernetes/HEAD/NoCodePreparation1stStep/management.md -------------------------------------------------------------------------------- /NoCodePreparation1stStep/scanning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whyaustin/Platform-Engineering-Kubernetes/HEAD/NoCodePreparation1stStep/scanning.md -------------------------------------------------------------------------------- /NoCodePreparation1stStep/security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whyaustin/Platform-Engineering-Kubernetes/HEAD/NoCodePreparation1stStep/security.md -------------------------------------------------------------------------------- /NoCodePreparation1stStep/what_is_needed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whyaustin/Platform-Engineering-Kubernetes/HEAD/NoCodePreparation1stStep/what_is_needed.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whyaustin/Platform-Engineering-Kubernetes/HEAD/README.md -------------------------------------------------------------------------------- /UIAndMonitoringEtcStep3/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whyaustin/Platform-Engineering-Kubernetes/HEAD/UIAndMonitoringEtcStep3/.DS_Store -------------------------------------------------------------------------------- /UIAndMonitoringEtcStep3/homegrown/instructions.md: -------------------------------------------------------------------------------- 1 | https://github.com/AdminTurnedDevOps/CapabilityPE -------------------------------------------------------------------------------- /UIAndMonitoringEtcStep3/opensource/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whyaustin/Platform-Engineering-Kubernetes/HEAD/UIAndMonitoringEtcStep3/opensource/.DS_Store -------------------------------------------------------------------------------- /UIAndMonitoringEtcStep3/opensource/Backstage/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whyaustin/Platform-Engineering-Kubernetes/HEAD/UIAndMonitoringEtcStep3/opensource/Backstage/instructions.md -------------------------------------------------------------------------------- /UIAndMonitoringEtcStep3/opensource/CNOE/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whyaustin/Platform-Engineering-Kubernetes/HEAD/UIAndMonitoringEtcStep3/opensource/CNOE/LICENSE -------------------------------------------------------------------------------- /UIAndMonitoringEtcStep3/opensource/CNOE/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whyaustin/Platform-Engineering-Kubernetes/HEAD/UIAndMonitoringEtcStep3/opensource/CNOE/README.md -------------------------------------------------------------------------------- /UIAndMonitoringEtcStep3/opensource/CNOE/idpbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whyaustin/Platform-Engineering-Kubernetes/HEAD/UIAndMonitoringEtcStep3/opensource/CNOE/idpbuilder -------------------------------------------------------------------------------- /UIAndMonitoringEtcStep3/opensource/CNOE/idpbuilder-darwin-arm64.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whyaustin/Platform-Engineering-Kubernetes/HEAD/UIAndMonitoringEtcStep3/opensource/CNOE/idpbuilder-darwin-arm64.tar.gz -------------------------------------------------------------------------------- /UIAndMonitoringEtcStep3/opensource/CNOE/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whyaustin/Platform-Engineering-Kubernetes/HEAD/UIAndMonitoringEtcStep3/opensource/CNOE/instructions.md -------------------------------------------------------------------------------- /UIAndMonitoringEtcStep3/paid/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whyaustin/Platform-Engineering-Kubernetes/HEAD/UIAndMonitoringEtcStep3/paid/.DS_Store -------------------------------------------------------------------------------- /UIAndMonitoringEtcStep3/paid/massdriver/instructions.md: -------------------------------------------------------------------------------- 1 | https://app.massdriver.cloud/register -------------------------------------------------------------------------------- /UIAndMonitoringEtcStep3/paid/opslevel/instructions.md: -------------------------------------------------------------------------------- 1 | 1. Start for free here: https://www.opslevel.com/free-trial -------------------------------------------------------------------------------- /UIAndMonitoringEtcStep3/paid/port/instructions.md: -------------------------------------------------------------------------------- 1 | https://www.getport.io/try-now -------------------------------------------------------------------------------- /UIAndMonitoringEtcStep3/radius/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whyaustin/Platform-Engineering-Kubernetes/HEAD/UIAndMonitoringEtcStep3/radius/instructions.md -------------------------------------------------------------------------------- /UIAndMonitoringEtcStep3/radius/radapp/.rad/rad.yaml: -------------------------------------------------------------------------------- 1 | workspace: 2 | application: "radapp" 3 | -------------------------------------------------------------------------------- /UIAndMonitoringEtcStep3/radius/radapp/app.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whyaustin/Platform-Engineering-Kubernetes/HEAD/UIAndMonitoringEtcStep3/radius/radapp/app.bicep -------------------------------------------------------------------------------- /UIAndMonitoringEtcStep3/radius/radapp/test.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whyaustin/Platform-Engineering-Kubernetes/HEAD/UIAndMonitoringEtcStep3/radius/radapp/test.bicep --------------------------------------------------------------------------------