27 Nov 20242 min read
Adding an Application to ArgoCD Apps or Apps
Adding a simple FastAPI Python app as part of an App of Apps setup in ArgoCD involves several steps. Here’s a step-by-step guide to achieve this: 1. Create Your FastAPI Application * Ensure your FastAPI app is structured with a Dockerfile for containerization and a Kubernetes manifest for deployment. Directory structure for the FastAPI app: fastapi-app/ ├── app/ │ ├── main.py # Entry point for FastAPI │ ├── ... ├── Dockerfile # For building the FastAPI app container ├──


