-
I’m listing all the resources needed by Flyte to be deployed:
Is there anything that I’m missing? I checked the doc (which is really nice now btw ✨) and I didn’t see anything else but I just want to make sure that I’m not missing anything. Stephan. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
The minimum requirements are - rds, s3 and kubernetes. Also either a cluster wide role or if you prefer to use Iam roles then Iam for service accounts or Kiam.
We have a helm template now to deploy. We also have kustomize. Also you should have ability to pull containers from GitHub registry, and SES if you want to send notification emails. |
Beta Was this translation helpful? Give feedback.
The minimum requirements are - rds, s3 and kubernetes. Also either a cluster wide role or if you prefer to use Iam roles then Iam for service accounts or Kiam.
Then you need a way to talk to FlyteAdmin and data catalog. This can use multiple options on AWS:
And then once you venture in the deeper end you need: SQS, SNS, and cloudwatch cron scheduler.
We have a helm template now to deploy. We also have kustomize.
It is recommended to deploy Flyte to an entire cluster instead of shared (but sharing is ok) this is easy to get started.
Also you should have ability to pull containers from GitHub registry, and SES if you want to send notification emails.
@kumare3
@…