Update README.md

This commit is contained in:
Santiago Lo Coco 2023-11-24 10:36:04 -03:00
parent 67206ee2e2
commit ecca63c187
2 changed files with 7 additions and 1 deletions

View File

@ -23,6 +23,8 @@ El script `run.sh` automatiza el proceso de implementación para un entorno de `
- **-s <Y|N>:** Habilitar o deshabilitar `SSL` (Y para sí, N para no) - **-s <Y|N>:** Habilitar o deshabilitar `SSL` (Y para sí, N para no)
- **-r <number>:** Especificar el número de réplicas para la API - **-r <number>:** Especificar el número de réplicas para la API
- **-f:** Habilitar `fluentd` para la agregación de registros - **-f:** Habilitar `fluentd` para la agregación de registros
- **-u:** Desinstalar el chart
- **-d:** Agrega datos básicos a la DB
## Funcionalidad del script ## Funcionalidad del script

6
run.sh
View File

@ -103,7 +103,11 @@ fi
if [ -n "$seed_db" ]; then if [ -n "$seed_db" ]; then
if [ "$seed_db" == true ] || [ "$seed_db" == "y" ] || [ "$seed_db" == "Y" ]; then if [ "$seed_db" == true ] || [ "$seed_db" == "y" ] || [ "$seed_db" == "Y" ]; then
API_POD=$(kubectl get pods -n exam --selector=app=api --template '{{range .items}}{{.metadata.name}}{{break}}{{end}}') API_POD=$(kubectl get pods -n exam --selector=app=api --template '{{range .items}}{{.metadata.name}}{{break}}{{end}}')
[ -z "$API_POD" ] && exit 1 if [ -z "$API_POD" ]; then
echo "No API pod found. Exiting..."
exit 1
fi
echo "Waiting for the API pod to start. Please be patient..." echo "Waiting for the API pod to start. Please be patient..."
kubectl -n exam wait pod/${API_POD} --for=condition=Ready --timeout=-1s kubectl -n exam wait pod/${API_POD} --for=condition=Ready --timeout=-1s
kubectl -n exam exec -it ${API_POD} -- python manage.py seed_db kubectl -n exam exec -it ${API_POD} -- python manage.py seed_db