diff options
author | Kamil Trzcinski <ayufan@ayufan.eu> | 2016-09-15 21:59:01 +0200 |
---|---|---|
committer | Kamil Trzcinski <ayufan@ayufan.eu> | 2016-09-19 10:07:14 +0200 |
commit | abfceb1e565490bb75e9a4fba0571cb2390fa5d8 (patch) | |
tree | 050041d279e30ccf96c5f6f7b4ea600281d2486e /doc | |
parent | 4a5c21728ee4e6c3ef8e1c410ee0f0c9a47634cc (diff) | |
download | gitlab-ce-abfceb1e565490bb75e9a4fba0571cb2390fa5d8.tar.gz |
Cleanup changes
Diffstat (limited to 'doc')
-rw-r--r-- | doc/ci/yaml/README.md | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/doc/ci/yaml/README.md b/doc/ci/yaml/README.md index 4772565fac9..a4cf0ec468a 100644 --- a/doc/ci/yaml/README.md +++ b/doc/ci/yaml/README.md @@ -577,9 +577,9 @@ The `deploy to production` job will be marked as doing deployment to Introduced in GitLab 8.12. `environment` can also represent a configuration hash with `name` and `url`. -These parameters can use any of defined CI variables (including predefined, secure variables and .gitlab-ci.yml variables). +These parameters can use any of the defined CI variables (including predefined, secure variables and `.gitlab-ci.yml` variables). -The common use case is to create a dynamic environments for branches and use them as review apps. +The common use case is to create dynamic environments for branches and use them as review apps. --- @@ -594,9 +594,10 @@ deploy as review app: url: https://$CI_BUILD_REF_NAME.review.example.com/ ``` -The `deploy to production` job will be marked as doing deployment to -`production` environment. +The `deploy as review app` job will be marked as deployment to +dynamically created `review-apps/branch-name` environment. +This environment should be accessible under `https://branch-name.review.example.com/`. ### artifacts |