Add quay-kubernetes package / Add quay CD to k8s

This commit is contained in:
Antoine Legrand 2017-07-17 01:24:31 +02:00
parent 2f750bfc87
commit 1d0313229e
45 changed files with 1129 additions and 10 deletions

View file

@ -6,8 +6,10 @@ local baseJob = (import '.gitlab-ci/base_jobs.libsonnet')(vars);
local stages_list = [
// gitlab-ci stages
'docker_base',
'deploy',
'docker_build',
'docker_base',
'unit_tests',
'integration',
'docker_release',
@ -91,6 +93,13 @@ local jobs = {
env={ [key]: dbname for key in ['MYSQL_ROOT_PASSWORD', 'MYSQL_DATABASE',
'MYSQL_USER', 'MYSQL_PASSWORD'] }),
"deploy-preview": baseJob.QuayDeploy {
environment+: {on_stop: "stop-preview"},
} + onlyBranch,
"stop-preview": baseJob.QuayDeployStop {
} + onlyBranch,
};
{