gitlab-org--gitlab-foss/vendor/gitlab-ci-yml/autodeploy/Kubernetes.gitlab-ci.yml

75 lines
1.3 KiB
YAML
Raw Normal View History

2017-09-08 09:28:40 +00:00
# This template has been DEPRECATED. Consider using Auto DevOps instead:
# https://docs.gitlab.com/ee/topics/autodevops
2017-02-07 05:03:05 +00:00
# Explanation on the scripts:
2017-01-22 11:22:31 +00:00
# https://gitlab.com/gitlab-examples/kubernetes-deploy/blob/master/README.md
image: registry.gitlab.com/gitlab-examples/kubernetes-deploy
variables:
# Application deployment domain
KUBE_DOMAIN: domain.example.com
stages:
- build
- test
- review
- staging
- production
- cleanup
2017-01-22 11:22:31 +00:00
build:
stage: build
script:
- command build
only:
- branches
production:
stage: production
script:
- command deploy
environment:
name: production
2017-07-11 12:39:38 +00:00
url: http://$CI_PROJECT_PATH_SLUG.$KUBE_DOMAIN
2017-01-22 11:22:31 +00:00
when: manual
only:
- master
staging:
stage: staging
script:
- command deploy
environment:
name: staging
2017-07-11 12:39:38 +00:00
url: http://$CI_PROJECT_PATH_SLUG-staging.$KUBE_DOMAIN
2017-01-22 11:22:31 +00:00
only:
- master
review:
stage: review
script:
- command deploy
environment:
2017-03-10 10:41:37 +00:00
name: review/$CI_COMMIT_REF_NAME
2017-07-11 12:39:38 +00:00
url: http://$CI_PROJECT_PATH_SLUG-$CI_ENVIRONMENT_SLUG.$KUBE_DOMAIN
2017-01-22 11:22:31 +00:00
on_stop: stop_review
only:
- branches
except:
- master
stop_review:
stage: cleanup
2017-01-22 11:22:31 +00:00
variables:
GIT_STRATEGY: none
script:
- command destroy
environment:
2017-03-10 10:41:37 +00:00
name: review/$CI_COMMIT_REF_NAME
2017-01-22 11:22:31 +00:00
action: stop
when: manual
only:
- branches
except:
- master