-
|
Hello folks! I'm trying to deploy Airflow to our AWS EKS Environments (Dev/UAT/Prod) and am having trouble setting it up properly, specifically the Airflow instance I am trying to install it from the Python Package and get it up and running. Currently we have some EKS stuff that we deploy so I have followed the same template and got it to at least deploy. However my issue is that the system says not to run Currently I have a My Dockerfile simply copies these things over, installs So my question is how do I properly deploy app properly so:
Please don't suggest stuff like Amazon's Managed Airflow (It's very expensive!) or to use |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
|
You just need to manage your components in some way - systemd or the like, or even have containers or vms per container. Or you can use Docker Compose or Helm Chart / Kubernetes - but it's generally up to you to configure and deploy Airflow. All possible options are nicely described in https://airflow.apache.org/docs/apache-airflow/stable/installation/index.html - you have all the known installation methods, describing their pros/cons - why you might want to use one, and what are your responsibilities as Deployment Manager. Maybe you will not get detailed instructions step-by-step to do precisely what you want (deployment definition and building is Deployment Manager's responsibility) - you will find enough leads examples, quick-starts, and the Helm Chart of Airflow is used by people in production quite heavily - and it's highly customizable (too highly one might say). |
Beta Was this translation helpful? Give feedback.
-
|
|
Beta Was this translation helpful? Give feedback.
You just need to manage your components in some way - systemd or the like, or even have containers or vms per container. Or you can use Docker Compose or Helm Chart / Kubernetes - but it's generally up to you to configure and deploy Airflow. All possible options are nicely described in https://airflow.apache.org/docs/apache-airflow/stable/installation/index.html - you have all the known installation methods, describing their pros/cons - why you might want to use one, and what are your responsibilities as Deployment Manager.
Maybe you will not get detailed instructions step-by-step to do precisely what you want (deployment definition and building is Deployment Manager's responsibility) - y…