teresa
teresa copied to clipboard
Open source tool to deploy apps to Kubernetes clusters
If applied, this PR expands the liveness, readiness and lifecycle to sidecars, such as the NGINX sidecar or the CloudSQL Proxy sidecar. However, it can be harmful for deployments using...
Hi everyone, two cents from a former contributor. Keeping up with the kubernetes API (new features, breaking changes, etc) is unfeasible. We also end up duplicating a lot of kubectl...
On teresa, when we create a new super-user, we have to send the password by a flag `--password`. This way, passwords might be saved as plain-text on bash history. Teresa...
Sometimes, during the release stage of a deployment, Teresa returns an error such as "... returned a non zero value". Teresa handles this error generically, and that's okay, but is...
Currently, there is no way to know the last deploys of cron jobs: ```bash $ teresa deploy list --app my-cron-app App doesn't have any deploys ``` It would help in...
After installing (thanks @drgarcia1986) I have these pods running: ``` $ kubectl get pods --namespace teresa NAME READY STATUS RESTARTS AGE baphomet-minio-f4f845f74-ztnqn 1/1 Running 0 1m baphomet-teresa-64f5756fcc-4bkmc 1/1 Running 0...
Today, many of my application have more than one entry on Procfile, like this: ```Procfile web: gunicorn myapp:app --bind 0.0.0.0:$PORT --workers=$GUNICORN_WORKERS --worker-class aiohttp.GunicornUVLoopWebWorker -e SIMPLE_SETTINGS=$SIMPLE_SETTINGS -e DJANGO_SETTINGS_MODULE=$SIMPLE_SETTINGS worker: celery --workdir=src...