debian-mirror-gitlab/lib/gitlab/ci/templates/Jobs/DAST-Default-Branch-Deploy.gitlab-ci.yml

55 lines
1.6 KiB
YAML
Raw Normal View History

2019-12-26 22:10:19 +05:30
.dast-auto-deploy:
2020-07-28 23:09:34 +05:30
image: "registry.gitlab.com/gitlab-org/cluster-integration/auto-deploy-image:v0.17.2"
2019-12-21 20:55:43 +05:30
dast_environment_deploy:
2019-12-26 22:10:19 +05:30
extends: .dast-auto-deploy
2019-12-21 20:55:43 +05:30
stage: review
script:
- auto-deploy check_kube_domain
- auto-deploy download_chart
- auto-deploy ensure_namespace
- auto-deploy initialize_tiller
- auto-deploy create_secret
- auto-deploy deploy
- auto-deploy persist_environment_url
environment:
name: dast-default
url: http://dast-$CI_PROJECT_ID-$CI_ENVIRONMENT_SLUG.$KUBE_INGRESS_BASE_DOMAIN
on_stop: stop_dast_environment
artifacts:
paths: [environment_url.txt]
2020-05-24 23:13:21 +05:30
rules:
- if: $CI_DEFAULT_BRANCH != $CI_COMMIT_REF_NAME
when: never
- if: $DAST_DISABLED || $DAST_DISABLED_FOR_DEFAULT_BRANCH
when: never
- if: $DAST_WEBSITE # we don't need to create a review app if a URL is already given
when: never
- if: $CI_COMMIT_BRANCH &&
$CI_KUBERNETES_ACTIVE &&
$GITLAB_FEATURES =~ /\bdast\b/
2019-12-21 20:55:43 +05:30
stop_dast_environment:
2019-12-26 22:10:19 +05:30
extends: .dast-auto-deploy
2019-12-21 20:55:43 +05:30
stage: cleanup
variables:
GIT_STRATEGY: none
script:
- auto-deploy initialize_tiller
- auto-deploy delete
environment:
name: dast-default
action: stop
needs: ["dast"]
2020-05-24 23:13:21 +05:30
rules:
- if: $CI_DEFAULT_BRANCH != $CI_COMMIT_REF_NAME
when: never
- if: $DAST_DISABLED || $DAST_DISABLED_FOR_DEFAULT_BRANCH
when: never
- if: $DAST_WEBSITE # we don't need to create a review app if a URL is already given
when: never
- if: $CI_COMMIT_BRANCH &&
$CI_KUBERNETES_ACTIVE &&
$GITLAB_FEATURES =~ /\bdast\b/
2020-07-28 23:09:34 +05:30
when: always