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
ae96126e
Commit
ae96126e
authored
May 18, 2017
by
Achilleas Pipinellis
Committed by
Sean Packham (GitLab)
May 18, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Refactor pipeline schedules docs
parent
d08f6bdc
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
81 additions
and
4 deletions
+81
-4
doc/ci/README.md
doc/ci/README.md
+2
-1
doc/ci/img/pipeline_schedules_list.png
doc/ci/img/pipeline_schedules_list.png
+0
-0
doc/ci/triggers/README.md
doc/ci/triggers/README.md
+17
-3
doc/user/project/pipelines/img/pipeline_schedules_list.png
doc/user/project/pipelines/img/pipeline_schedules_list.png
+0
-0
doc/user/project/pipelines/img/pipeline_schedules_new_form.png
...ser/project/pipelines/img/pipeline_schedules_new_form.png
+0
-0
doc/user/project/pipelines/img/pipeline_schedules_ownership.png
...er/project/pipelines/img/pipeline_schedules_ownership.png
+0
-0
doc/user/project/pipelines/schedules.md
doc/user/project/pipelines/schedules.md
+62
-0
No files found.
doc/ci/README.md
View file @
ae96126e
...
@@ -66,7 +66,8 @@ learn how to leverage its potential even more.
...
@@ -66,7 +66,8 @@ learn how to leverage its potential even more.
submodules are involved
submodules are involved
-
[
Auto deploy
](
autodeploy/index.md
)
-
[
Auto deploy
](
autodeploy/index.md
)
-
[
Use SSH keys in your build environment
](
ssh_keys/README.md
)
-
[
Use SSH keys in your build environment
](
ssh_keys/README.md
)
-
[
Trigger jobs through the GitLab API
](
triggers/README.md
)
-
[
Trigger pipelines through the GitLab API
](
triggers/README.md
)
-
[
Trigger pipelines on a schedule
](
../user/project/pipelines/schedules.md
)
## Review Apps
## Review Apps
...
...
doc/ci/img/pipeline_schedules_list.png
deleted
100644 → 0
View file @
d08f6bdc
66 KB
doc/ci/triggers/README.md
View file @
ae96126e
# Triggering
job
s through the API
# Triggering
pipeline
s through the API
> **Note**:
> **Note
s
**:
-
[
Introduced
][
ci-229
]
in GitLab CE 7.14.
-
[
Introduced
][
ci-229
]
in GitLab CE 7.14.
-
GitLab 8.12 has a completely redesigned job permissions system. Read all
-
GitLab 8.12 has a completely redesigned job permissions system. Read all
about the
[
new model and its implications
](
../../user/project/new_ci_build_permissions_model.md#job-triggers
)
.
about the
[
new model and its implications
](
../../user/project/new_ci_build_permissions_model.md#job-triggers
)
.
...
@@ -208,7 +208,7 @@ curl --request POST \
...
@@ -208,7 +208,7 @@ curl --request POST \
https://gitlab.example.com/api/v4/projects/9/trigger/pipeline
https://gitlab.example.com/api/v4/projects/9/trigger/pipeline
```
```
### Using
webhook to trigger job
### Using
a webhook to trigger a pipeline
You can add the following webhook to another project in order to trigger a job:
You can add the following webhook to another project in order to trigger a job:
...
@@ -216,4 +216,18 @@ You can add the following webhook to another project in order to trigger a job:
...
@@ -216,4 +216,18 @@ You can add the following webhook to another project in order to trigger a job:
https://gitlab.example.com/api/v4/projects/9/ref/master/trigger/pipeline?token=TOKEN&variables[UPLOAD_TO_S3]=true
https://gitlab.example.com/api/v4/projects/9/ref/master/trigger/pipeline?token=TOKEN&variables[UPLOAD_TO_S3]=true
```
```
### Using cron to trigger nightly pipelines
>**Note:**
The following behavior can also be achieved through GitLab's UI with
[
pipeline schedules
](
../../user/project/pipelines/schedules.md
)
.
Whether you craft a script or just run cURL directly, you can trigger jobs
in conjunction with cron. The example below triggers a job on the
`master`
branch of project with ID
`9`
every night at
`00:30`
:
```
bash
30 0
*
*
*
curl
--request
POST
--form
token
=
TOKEN
--form
ref
=
master https://gitlab.example.com/api/v4/projects/9/trigger/pipeline
```
[
ci-229
]:
https://gitlab.com/gitlab-org/gitlab-ci/merge_requests/229
[
ci-229
]:
https://gitlab.com/gitlab-org/gitlab-ci/merge_requests/229
doc/user/project/pipelines/img/pipeline_schedules_list.png
0 → 100644
View file @
ae96126e
14.3 KB
doc/
ci
/img/pipeline_schedules_new_form.png
→
doc/
user/project/pipelines
/img/pipeline_schedules_new_form.png
View file @
ae96126e
File moved
doc/user/project/pipelines/img/pipeline_schedules_ownership.png
0 → 100644
View file @
ae96126e
11.8 KB
doc/
ci/pipeline_
schedules.md
→
doc/
user/project/pipelines/
schedules.md
View file @
ae96126e
# Pipeline Schedules
# Pipeline Schedules
> **Note**:
> **Notes**:
-
This feature was introduced in 9.1 as
[
Trigger Schedule
][
ce-105533
]
-
This feature was introduced in 9.1 as
[
Trigger Schedule
][
ce-10533
]
.
-
In 9.2, the feature was
[
renamed to Pipeline Schedule
][
ce-10853
]
-
In 9.2, the feature was
[
renamed to Pipeline Schedule
][
ce-10853
]
.
-
Cron notation is parsed by
[
Rufus-Scheduler
](
https://github.com/jmettraux/rufus-scheduler
)
.
Pipeline schedules can be used to run pipelines only once, or for example every
Pipeline schedules can be used to run pipelines only once, or for example every
month on the 22nd for a certain branch.
month on the 22nd for a certain branch.
## Using Pipeline Schedules
## Using Pipeline schedules
In order to schedule a pipeline:
In order to schedule pipelines, navigate to your their pages
**Pipelines ➔ Schedules**
1.
Navigate to your project's
**Pipelines ➔ Schedules**
and click the
and click the
**New Schedule**
button.
**New Schedule**
button.
1.
Fill in the form
1.
Hit
**Save pipeline schedule**
for the changes to take effect.
![
New Schedule Form
](
img/pipeline_schedules_new_form.png
)
![
New Schedule Form
](
img/pipeline_schedules_new_form.png
)
After entering the form, hit
**Save Schedule**
for the changes to have effect.
>**Attention:**
You can check a next execution date of the scheduled trigger, which is automatically calculated by a server.
The pipelines won't be executed precisely, because schedules are handled by
Sidekiq, which runs according to its interval.
See
[
advanced admin configuration
](
#advanced-admin-configuration
)
for more
information.
## Taking ownership
In the
**Schedules**
index page you can see a list of the pipelines that are
scheduled to run. The next run is automatically calculated by the server GitLab
is installed on.
![
Schedules list
](
img/pipeline_schedules_list.png
)
![
Schedules list
](
img/pipeline_schedules_list.png
)
Pipelines are executed as a user, which owns a schedule. This influences what
## Taking ownership
Pipelines are executed as a user, who owns a schedule. This influences what
projects and other resources the pipeline has access to. If a user does not own
projects and other resources the pipeline has access to. If a user does not own
a pipeline, you can take ownership by clicking the
**Take ownership**
button.
a pipeline, you can take ownership by clicking the
**Take ownership**
button.
The next time a pipeline is scheduled, your credentials will be used.
The next time a pipeline is scheduled, your credentials will be used.
> **Notes**:
![
Schedules list
](
img/pipeline_schedules_ownership.png
)
-
Those pipelines won't be executed precicely. Because schedules are handled by
Sidekiq, which runs according to its interval. For exmaple, if you set a schedule to
>**Note:**
create a pipeline every minute (
`* * * * *`
) and the Sidekiq worker performs 00:00
When the owner of the schedule doesn't have the ability to create pipelines
and 12:00 o'clock every day (
`0 */12 * * *`
), only 2 pipelines will be created per day.
anymore, due to e.g., being blocked or removed from the project, the schedule
To change the Sidekiq worker's frequency, you have to edit the
`trigger_schedule_worker_cron`
is deactivated. Another user can take ownership and activate it, so the
value in your
`gitlab.rb`
and restart GitLab. The Sidekiq worker's configuration
schedule can be run again.
on GiLab.com is able to be looked up at
[
here
](
https://gitlab.com/gitlab-org/gitlab-ce/blob/master/config/gitlab.yml.example#L185
)
.
-
Cron notation is parsed by
[
Rufus-Scheduler
](
https://github.com/jmettraux/rufus-scheduler
)
.
## Advanced admin configuration
-
When the owner of the schedule does not have the ability to create pipelines
anymore, due to e.g. being blocked or removed from the project, the schedule is
The pipelines won't be executed precisely, because schedules are handled by
deactivated. Another user can take ownership and activate it, so the schedule is
Sidekiq, which runs according to its interval. For example, if you set a
run again.
schedule to create a pipeline every minute (
`* * * * *`
) and the Sidekiq worker
runs on 00:00 and 12:00 every day (
`0 */12 * * *`
), only 2 pipelines will be
created per day. To change the Sidekiq worker's frequency, you have to edit the
`trigger_schedule_worker_cron`
value in your
`gitlab.rb`
and restart GitLab.
For GitLab.com, you can check the
[
dedicated settings page
][
settings
]
. If you
don't have admin access to the server, ask your administrator.
[
ce-10533
]:
https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/10533
[
ce-10533
]:
https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/10533
[
ce-10853
]:
https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/10853
[
ce-10853
]:
https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/10853
[
settings
]:
https://about.gitlab.com/gitlab-com/settings/#cron-jobs
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