Add latest changes from gitlab-org/gitlab@master
This commit is contained in:
parent
b1e7ea9111
commit
92bd840b61
7 changed files with 39 additions and 13 deletions
|
@ -392,6 +392,20 @@ rspec:deprecations:
|
|||
- .rails:rules:deprecations
|
||||
stage: post-test
|
||||
allow_failure: true
|
||||
# We cannot use needs since it would mean needing 84 jobs (since most are parallelized)
|
||||
# so we use `dependencies` here.
|
||||
dependencies:
|
||||
- rspec migration pg11
|
||||
- rspec unit pg11
|
||||
- rspec integration pg11
|
||||
- rspec system pg11
|
||||
- rspec-ee migration pg11
|
||||
- rspec-ee unit pg11
|
||||
- rspec-ee integration pg11
|
||||
- rspec-ee system pg11
|
||||
- rspec-ee unit pg11 geo
|
||||
- rspec-ee integration pg11 geo
|
||||
- rspec-ee system pg11 geo
|
||||
variables:
|
||||
SETUP_DB: "false"
|
||||
script:
|
||||
|
|
|
@ -835,8 +835,6 @@
|
|||
rules:
|
||||
- <<: *if-not-ee
|
||||
when: never
|
||||
- <<: *if-merge-request
|
||||
changes: *code-backstage-patterns
|
||||
- <<: *if-master-schedule-nightly
|
||||
- <<: *if-merge-request-title-run-all-rspec
|
||||
|
||||
|
|
|
@ -20,11 +20,8 @@ These locations can be configured using the options described below.
|
|||
|
||||
## Using local storage
|
||||
|
||||
NOTE:
|
||||
This is the default configuration
|
||||
|
||||
To change the location where Terraform state files are stored locally, follow the steps
|
||||
below.
|
||||
The default configuration uses local storage. To change the location where
|
||||
Terraform state files are stored locally, follow the steps below.
|
||||
|
||||
**In Omnibus installations:**
|
||||
|
||||
|
|
|
@ -3547,9 +3547,6 @@ There can be from 2 to 50 jobs.
|
|||
Jobs can only run in parallel if there are multiple runners, or a single runner is
|
||||
[configured to run multiple jobs concurrently](#using-your-own-runners).
|
||||
|
||||
[In GitLab 13.5](https://gitlab.com/gitlab-org/gitlab/-/issues/26362) and later,
|
||||
you can have one-dimensional matrices with a single job.
|
||||
|
||||
Every job gets the same `CI_NODE_TOTAL` [environment variable](../variables/README.md#predefined-environment-variables) value, and a unique `CI_NODE_INDEX` value.
|
||||
|
||||
```yaml
|
||||
|
@ -3588,6 +3585,22 @@ deploystacks: [vultr, processing]
|
|||
|
||||
The job naming style was [improved in GitLab 13.4](https://gitlab.com/gitlab-org/gitlab/-/issues/230452).
|
||||
|
||||
##### One-dimensional `matrix` jobs
|
||||
|
||||
> [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/26362) in GitLab 13.5.
|
||||
|
||||
You can also have one-dimensional matrices with a single job:
|
||||
|
||||
```yaml
|
||||
deploystacks:
|
||||
stage: deploy
|
||||
script:
|
||||
- bin/deploy
|
||||
parallel:
|
||||
matrix:
|
||||
- PROVIDER: [aws, ovh, gcp, vultr]
|
||||
```
|
||||
|
||||
### `trigger`
|
||||
|
||||
> - [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/8997) in [GitLab Premium](https://about.gitlab.com/pricing/) 11.8.
|
||||
|
|
|
@ -30,9 +30,12 @@ configuration. Automation enables consistency across your projects, seamless
|
|||
management of processes, and faster creation of new projects: push your code,
|
||||
and GitLab does the rest, improving your productivity and efficiency.
|
||||
|
||||
<i class="fa fa-youtube-play youtube" aria-hidden="true"></i>
|
||||
For an introduction to Auto DevOps, watch [AutoDevOps in GitLab 11.0](https://youtu.be/0Tc0YYBxqi4).
|
||||
|
||||
For requirements, see [Requirements for Auto DevOps](requirements.md) for more information.
|
||||
For requirements, read [Requirements for Auto DevOps](requirements.md) for more information.
|
||||
|
||||
For a developer's guide, read [Auto DevOps development guide](../../development/auto_devops.md).
|
||||
|
||||
## Enabled by default
|
||||
|
||||
|
|
|
@ -22,7 +22,8 @@ tasks in a secure and cloud-native way. It enables:
|
|||
[GitOps Engine](https://github.com/argoproj/gitops-engine).
|
||||
- Real-time access to API endpoints in a cluster.
|
||||
|
||||
Many more features are planned. Please [review our roadmap](https://gitlab.com/groups/gitlab-org/-/epics/3329).
|
||||
Many more features are planned. Please review [our roadmap](https://gitlab.com/groups/gitlab-org/-/epics/3329)
|
||||
and [our development documentation](../../../development/agent/index.md).
|
||||
|
||||
## GitLab Agent GitOps workflow
|
||||
|
||||
|
|
|
@ -1362,7 +1362,7 @@ X-Gitlab-Event: Deployment Hook
|
|||
|
||||
Note that `deployable_id` is the ID of the CI job.
|
||||
|
||||
### Member events
|
||||
### Member events **(PREMIUM)**
|
||||
|
||||
> [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/260347) in GitLab 13.7.
|
||||
|
||||
|
|
Loading…
Reference in a new issue