You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
759 B

4 months ago
kind: pipeline
type: docker
3 weeks ago
name: deploy-postgres
4 months ago
3 weeks ago
services:
- name: postgres
image: postgres:15
4 months ago
environment:
3 weeks ago
POSTGRES_DB:
from_secret: POSTGRES_DB
POSTGRES_USER:
from_secret: POSTGRES_USER
POSTGRES_PASSWORD:
from_secret: POSTGRES_PASSWORD
ports:
- 5432
3 months ago
3 weeks ago
steps:
- name: verify-postgres
image: postgres:15
2 months ago
environment:
3 weeks ago
POSTGRES_DB:
from_secret: POSTGRES_DB
POSTGRES_USER:
from_secret: POSTGRES_USER
POSTGRES_PASSWORD:
from_secret: POSTGRES_PASSWORD
2 months ago
commands:
3 weeks ago
- echo "Vérification de la connexion à PostgreSQL"
- pg_isready -h postgres -p 5432 -U $POSTGRES_USER
- psql -h postgres -U $POSTGRES_USER -d $POSTGRES_DB -c '\l