├── LICENSE ├── README.md └── docs ├── aws ├── 01-eks-permissions.md ├── 02-deploying-eks-cluster.md ├── 03-roles-service-accounts.md ├── 04-create-database.md ├── 05-deploy-with-helm.md ├── 06-intro-to-ingress.md ├── 07-configure-SSL.md ├── 08-adjust-values-upgrade-Helm.md ├── 09-connect-Flyte-ingress.md ├── 10-prepare-for-auth.md └── 11-upgrade-with-auth.md ├── images ├── flyte-auth-console.png ├── flyte-auth.png ├── flyte-deployment-1.png ├── flyte-eks-permissions.png ├── flyte-local-console-ingress.png ├── flyte-local-ui-valid-ssl.png ├── fthw-ingress.png ├── fthw-successful-execution.png ├── local-flyte-ui.png ├── microk8s-cpu-usage.png ├── microk8s-flyte-task-logs.png ├── microk8s-grafana-task-logs.png ├── microk8s-insecure-local-flyte-ui.png ├── microk8s-local-flyte-ui.png ├── microk8s-memory-usage.png ├── microk8s-secure-local-flyte-ui.png ├── raspi-imager-ubuntu-version.png └── subnets-v2.png └── on-premises ├── microk8s ├── 01-preparing-raspberry-pi.md ├── 02-install-configure-microk8s.md ├── 03-deploy-minio-and-postgres.md ├── 04-install-flyte.md ├── 05-add-ingress-and-tls.md ├── 06-submitting-workflows.md ├── 07-add-flyte-task-logs.md ├── demo.py └── manifests │ ├── edge-values.yaml │ ├── local-flyte-resources.yaml │ └── observability-values.yaml └── single-node ├── 001-configure-single-node-k8s.md ├── 002-single-node-onprem-install.md ├── 003-ingress-tls.md └── manifests ├── onprem-flyte-binary-values.yaml ├── onprem-flyte-core-values.yaml └── onprem-flyte-dependencies.yaml /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmirror-ops/flyte-the-hard-way/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmirror-ops/flyte-the-hard-way/HEAD/README.md -------------------------------------------------------------------------------- /docs/aws/01-eks-permissions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmirror-ops/flyte-the-hard-way/HEAD/docs/aws/01-eks-permissions.md -------------------------------------------------------------------------------- /docs/aws/02-deploying-eks-cluster.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmirror-ops/flyte-the-hard-way/HEAD/docs/aws/02-deploying-eks-cluster.md -------------------------------------------------------------------------------- /docs/aws/03-roles-service-accounts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmirror-ops/flyte-the-hard-way/HEAD/docs/aws/03-roles-service-accounts.md -------------------------------------------------------------------------------- /docs/aws/04-create-database.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmirror-ops/flyte-the-hard-way/HEAD/docs/aws/04-create-database.md -------------------------------------------------------------------------------- /docs/aws/05-deploy-with-helm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmirror-ops/flyte-the-hard-way/HEAD/docs/aws/05-deploy-with-helm.md -------------------------------------------------------------------------------- /docs/aws/06-intro-to-ingress.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmirror-ops/flyte-the-hard-way/HEAD/docs/aws/06-intro-to-ingress.md -------------------------------------------------------------------------------- /docs/aws/07-configure-SSL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmirror-ops/flyte-the-hard-way/HEAD/docs/aws/07-configure-SSL.md -------------------------------------------------------------------------------- /docs/aws/08-adjust-values-upgrade-Helm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmirror-ops/flyte-the-hard-way/HEAD/docs/aws/08-adjust-values-upgrade-Helm.md -------------------------------------------------------------------------------- /docs/aws/09-connect-Flyte-ingress.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmirror-ops/flyte-the-hard-way/HEAD/docs/aws/09-connect-Flyte-ingress.md -------------------------------------------------------------------------------- /docs/aws/10-prepare-for-auth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmirror-ops/flyte-the-hard-way/HEAD/docs/aws/10-prepare-for-auth.md -------------------------------------------------------------------------------- /docs/aws/11-upgrade-with-auth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmirror-ops/flyte-the-hard-way/HEAD/docs/aws/11-upgrade-with-auth.md -------------------------------------------------------------------------------- /docs/images/flyte-auth-console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmirror-ops/flyte-the-hard-way/HEAD/docs/images/flyte-auth-console.png -------------------------------------------------------------------------------- /docs/images/flyte-auth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmirror-ops/flyte-the-hard-way/HEAD/docs/images/flyte-auth.png -------------------------------------------------------------------------------- /docs/images/flyte-deployment-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmirror-ops/flyte-the-hard-way/HEAD/docs/images/flyte-deployment-1.png -------------------------------------------------------------------------------- /docs/images/flyte-eks-permissions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmirror-ops/flyte-the-hard-way/HEAD/docs/images/flyte-eks-permissions.png -------------------------------------------------------------------------------- /docs/images/flyte-local-console-ingress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmirror-ops/flyte-the-hard-way/HEAD/docs/images/flyte-local-console-ingress.png -------------------------------------------------------------------------------- /docs/images/flyte-local-ui-valid-ssl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmirror-ops/flyte-the-hard-way/HEAD/docs/images/flyte-local-ui-valid-ssl.png -------------------------------------------------------------------------------- /docs/images/fthw-ingress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmirror-ops/flyte-the-hard-way/HEAD/docs/images/fthw-ingress.png -------------------------------------------------------------------------------- /docs/images/fthw-successful-execution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmirror-ops/flyte-the-hard-way/HEAD/docs/images/fthw-successful-execution.png -------------------------------------------------------------------------------- /docs/images/local-flyte-ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmirror-ops/flyte-the-hard-way/HEAD/docs/images/local-flyte-ui.png -------------------------------------------------------------------------------- /docs/images/microk8s-cpu-usage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmirror-ops/flyte-the-hard-way/HEAD/docs/images/microk8s-cpu-usage.png -------------------------------------------------------------------------------- /docs/images/microk8s-flyte-task-logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmirror-ops/flyte-the-hard-way/HEAD/docs/images/microk8s-flyte-task-logs.png -------------------------------------------------------------------------------- /docs/images/microk8s-grafana-task-logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmirror-ops/flyte-the-hard-way/HEAD/docs/images/microk8s-grafana-task-logs.png -------------------------------------------------------------------------------- /docs/images/microk8s-insecure-local-flyte-ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmirror-ops/flyte-the-hard-way/HEAD/docs/images/microk8s-insecure-local-flyte-ui.png -------------------------------------------------------------------------------- /docs/images/microk8s-local-flyte-ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmirror-ops/flyte-the-hard-way/HEAD/docs/images/microk8s-local-flyte-ui.png -------------------------------------------------------------------------------- /docs/images/microk8s-memory-usage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmirror-ops/flyte-the-hard-way/HEAD/docs/images/microk8s-memory-usage.png -------------------------------------------------------------------------------- /docs/images/microk8s-secure-local-flyte-ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmirror-ops/flyte-the-hard-way/HEAD/docs/images/microk8s-secure-local-flyte-ui.png -------------------------------------------------------------------------------- /docs/images/raspi-imager-ubuntu-version.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmirror-ops/flyte-the-hard-way/HEAD/docs/images/raspi-imager-ubuntu-version.png -------------------------------------------------------------------------------- /docs/images/subnets-v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmirror-ops/flyte-the-hard-way/HEAD/docs/images/subnets-v2.png -------------------------------------------------------------------------------- /docs/on-premises/microk8s/01-preparing-raspberry-pi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmirror-ops/flyte-the-hard-way/HEAD/docs/on-premises/microk8s/01-preparing-raspberry-pi.md -------------------------------------------------------------------------------- /docs/on-premises/microk8s/02-install-configure-microk8s.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmirror-ops/flyte-the-hard-way/HEAD/docs/on-premises/microk8s/02-install-configure-microk8s.md -------------------------------------------------------------------------------- /docs/on-premises/microk8s/03-deploy-minio-and-postgres.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmirror-ops/flyte-the-hard-way/HEAD/docs/on-premises/microk8s/03-deploy-minio-and-postgres.md -------------------------------------------------------------------------------- /docs/on-premises/microk8s/04-install-flyte.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmirror-ops/flyte-the-hard-way/HEAD/docs/on-premises/microk8s/04-install-flyte.md -------------------------------------------------------------------------------- /docs/on-premises/microk8s/05-add-ingress-and-tls.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmirror-ops/flyte-the-hard-way/HEAD/docs/on-premises/microk8s/05-add-ingress-and-tls.md -------------------------------------------------------------------------------- /docs/on-premises/microk8s/06-submitting-workflows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmirror-ops/flyte-the-hard-way/HEAD/docs/on-premises/microk8s/06-submitting-workflows.md -------------------------------------------------------------------------------- /docs/on-premises/microk8s/07-add-flyte-task-logs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmirror-ops/flyte-the-hard-way/HEAD/docs/on-premises/microk8s/07-add-flyte-task-logs.md -------------------------------------------------------------------------------- /docs/on-premises/microk8s/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmirror-ops/flyte-the-hard-way/HEAD/docs/on-premises/microk8s/demo.py -------------------------------------------------------------------------------- /docs/on-premises/microk8s/manifests/edge-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmirror-ops/flyte-the-hard-way/HEAD/docs/on-premises/microk8s/manifests/edge-values.yaml -------------------------------------------------------------------------------- /docs/on-premises/microk8s/manifests/local-flyte-resources.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmirror-ops/flyte-the-hard-way/HEAD/docs/on-premises/microk8s/manifests/local-flyte-resources.yaml -------------------------------------------------------------------------------- /docs/on-premises/microk8s/manifests/observability-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmirror-ops/flyte-the-hard-way/HEAD/docs/on-premises/microk8s/manifests/observability-values.yaml -------------------------------------------------------------------------------- /docs/on-premises/single-node/001-configure-single-node-k8s.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmirror-ops/flyte-the-hard-way/HEAD/docs/on-premises/single-node/001-configure-single-node-k8s.md -------------------------------------------------------------------------------- /docs/on-premises/single-node/002-single-node-onprem-install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmirror-ops/flyte-the-hard-way/HEAD/docs/on-premises/single-node/002-single-node-onprem-install.md -------------------------------------------------------------------------------- /docs/on-premises/single-node/003-ingress-tls.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmirror-ops/flyte-the-hard-way/HEAD/docs/on-premises/single-node/003-ingress-tls.md -------------------------------------------------------------------------------- /docs/on-premises/single-node/manifests/onprem-flyte-binary-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmirror-ops/flyte-the-hard-way/HEAD/docs/on-premises/single-node/manifests/onprem-flyte-binary-values.yaml -------------------------------------------------------------------------------- /docs/on-premises/single-node/manifests/onprem-flyte-core-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmirror-ops/flyte-the-hard-way/HEAD/docs/on-premises/single-node/manifests/onprem-flyte-core-values.yaml -------------------------------------------------------------------------------- /docs/on-premises/single-node/manifests/onprem-flyte-dependencies.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmirror-ops/flyte-the-hard-way/HEAD/docs/on-premises/single-node/manifests/onprem-flyte-dependencies.yaml --------------------------------------------------------------------------------