18 lines
284 B
YAML
18 lines
284 B
YAML
include: 'microservice.yaml'
|
|
|
|
stages:
|
|
- build
|
|
- deploy
|
|
- migration
|
|
|
|
migration-dev:
|
|
stage: migration
|
|
image: dtzar/helm-kubectl:latest
|
|
tags:
|
|
- docker
|
|
only:
|
|
- master
|
|
script:
|
|
- sleep 30
|
|
- kubectl exec deploy/$CI_PROJECT_TITLE alembic upgrade head
|