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.
36 lines
998 B
36 lines
998 B
kind: pipeline
|
|
type: docker
|
|
name: DB_PIPELINE
|
|
|
|
|
|
steps:
|
|
- name: deploy-container-pgsql
|
|
image: hub.codefirst.iut.uca.fr/thomas.bellembois/codefirst-dockerproxy-clientdrone:latest
|
|
environment:
|
|
IMAGENAME: postgres:latest
|
|
CONTAINERNAME: bigbrotherdb
|
|
COMMAND: create
|
|
# OVERWRITE: false
|
|
PRIVATE: true
|
|
CODEFIRST_CLIENTDRONE_ENV_POSTGRES_ROOT_PASSWORD:
|
|
from_secret: db_root_password
|
|
CODEFIRST_CLIENTDRONE_ENV_POSTGRES_DATABASE:
|
|
from_secret: db_database
|
|
CODEFIRST_CLIENTDRONE_ENV_POSTGRES_USER:
|
|
from_secret: db_user
|
|
CODEFIRST_CLIENTDRONE_ENV_POSTGRES_PASSWORD:
|
|
from_secret: db_password
|
|
|
|
- name: create-bigbrother-database
|
|
image: python:latest
|
|
commands:
|
|
- cd database/
|
|
- pip install psycopg2
|
|
- python3 db-creation.py
|
|
environment:
|
|
POSTGRES_USER:
|
|
from_secret: db_user
|
|
POSTGRES_PASSWORD:
|
|
from_secret: db_password
|
|
depends_on: [ deploy-container-pgsql ]
|