Your environment has been created successfully.
Namespace: {{ namespace }}
To connect to the MySQL database:
Host: mysql-service.{{ namespace }}
User: your_mysql_user
Password: your_mysql_password
Database: your_database_name
To modify and deploy your API code:
1. Clone the repository:
git clone
cd kubernetes-python-api
2. Modify your API code in the `src/api` directory.
3. Build the Docker image:
docker build -t python-api .
4. Deploy the updated API:
kubectl apply -f k8s/deployments/api-deployment.yaml -n {{ namespace }}