Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boxiang Sun
gitlab-ce
Commits
84827c13
Commit
84827c13
authored
Sep 01, 2017
by
Grzegorz Bizon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add some basic docs about kubernetes: active feature
parent
6f658392
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
31 additions
and
4 deletions
+31
-4
doc/ci/yaml/README.md
doc/ci/yaml/README.md
+31
-4
No files found.
doc/ci/yaml/README.md
View file @
84827c13
...
...
@@ -427,16 +427,16 @@ a "key: value" pair. Be careful when using special characters:
are executed in
`parallel`
. For more info about the use of
`stage`
please check
[
stages
](
#stages
)
.
### only and except
### only and except
(simplified)
`only`
and
`except`
are two parameters that set a
refs
policy to limit when
jobs are
built
:
`only`
and
`except`
are two parameters that set a
job
policy to limit when
jobs are
created
:
1.
`only`
defines the names of branches and tags for which the job will run.
2.
`except`
defines the names of branches and tags for which the job will
**not**
run.
There are a few rules that apply to the usage of
refs
policy:
There are a few rules that apply to the usage of
job
policy:
*
`only`
and
`except`
are inclusive. If both
`only`
and
`except`
are defined
in a job specification, the ref is filtered by
`only`
and
`except`
.
...
...
@@ -497,6 +497,33 @@ job:
The above example will run
`job`
for all branches on
`gitlab-org/gitlab-ce`
,
except master.
### only and except (complex)
> Introduced in GitLab 10.0
Since GitLab 10.0 it is possible to define a complex only/except job policy
configuration.
GitLab now supports both, simple and complex strategies, so it is possible to
use array and hash scheme configuration.
Two keys are now available:
`refs`
and
`kubernetes`
. Refs strategy equals to
simplified only/except configuration, whereas kubernetes strategy accepts only
`active`
keyword.
See the example below. Job is going to be created only when pipeline has been
scheduled or runs for a
`master`
branch, and only if kubernetes service is
active in the project.
```
yaml
job
:
only
:
refs
:
-
master
-
schedules
kubernetes
:
active
```
### Job variables
It is possible to define job variables using a
`variables`
keyword on a job
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment