Commit 04ccdffc authored by Suzanne Selhorn's avatar Suzanne Selhorn

Merge branch 'docs-cicd-guidelines-update' into 'master'

Update CI/CD documentation guidelines

See merge request gitlab-org/gitlab!75715
parents c063bcad 09eb0a56
...@@ -9,14 +9,14 @@ info: To determine the technical writer assigned to the Stage/Group associated w ...@@ -9,14 +9,14 @@ info: To determine the technical writer assigned to the Stage/Group associated w
The CI/CD YAML reference uses a standard style to make it easier to use and update. The CI/CD YAML reference uses a standard style to make it easier to use and update.
The reference information should be kept as simple as possible, and expanded details The reference information should be kept as simple as possible, and expanded details
and examples documented in a separate page. and examples should be documented on other pages.
## YAML reference structure ## YAML reference structure
Every YAML keyword must have its own section in the reference. The sections should Every YAML keyword must have its own section in the reference. The sections should
be nested so that the keywords follow a logical tree structure. For example: be nested so that the keywords follow a logical tree structure. For example:
```plaintext ```markdown
### `artifacts` ### `artifacts`
#### `artifacts:name` #### `artifacts:name`
#### `artifacts:paths` #### `artifacts:paths`
...@@ -27,128 +27,127 @@ be nested so that the keywords follow a logical tree structure. For example: ...@@ -27,128 +27,127 @@ be nested so that the keywords follow a logical tree structure. For example:
## YAML reference style ## YAML reference style
Each keyword entry in the reference should use the following style: Each keyword entry in the reference:
````markdown - Must have a simple introductory section. The introduction should give the fundamental
### `keyword-name` information needed to use the keyword. Advanced details and tasks should be in
feature pages, not the reference page.
> Version information
Keyword description and main details.
**Keyword type**:
**Possible inputs**:
**Example of `keyword-name`**: - Must use the keyword name as the title, for example:
(optional) In this example... ```markdown
### `artifacts`
```
(optional) **Additional details**: - Should include the following sections:
- [Keyword type](#keyword-type)
- [Possible inputs](#possible-inputs)
- [Example of `keyword-name`](#example-of-keyword-name)
- (Optional) Can also include the following sections when needed:
- [Additional details](#additional-details)
- [Related topics](#related-topics)
- List of extra details. The keyword name must always be in backticks without a final `:`, like `artifacts`, not `artifacts:`.
If it is a subkey of another keyword, write out all the subkeys to the "parent" key the first time it
is used, like `artifacts:reports:dast`. Afterwards, you can use just the subkey alone, like `dast`.
(optional) **Related topics**: ## Keyword type
- List of links to topics related to the keyword. The keyword can be either a job or global keyword. If it can be used in a `default`
```` section, make not of that as well, for example:
- ``### `keyword-name` ``: The keyword name must always be in backticks.
If it is a subkey of another keyword, write out all the keywords, with each separated
by `:`, for example: `artifacts:reports:dast`.
- ``> Version information``: The [version history details](../documentation/styleguide/index.md#version-text-in-the-version-history).
If the keyword is feature flagged, see the [feature flag documentation guide](../documentation/feature_flags.md)
as well.
- `Keyword description and main details.`: A simple description of the keyword, and - `**Keyword type**: Global keyword.`
how to use it. Additional use cases and benefits should be added to a page outside - `**Keyword type**: Job keyword. You can use it only as part of a job.`
the reference document. Link to that document in this section. - ``**Keyword type**: Job keyword. You can use it only as part of a job or in the [`default:` section](#default).``
- `**Keyword type**:`: Most keywords are defined at the job level, like `script`, ### Possible inputs
or at the pipeline level, like `stages`. Add the appropriate line:
- `**Keyword type**: Job keyword. You can use it only as part of a job.` List all the possible inputs, and any extra details about the inputs, such as defaults
- `**Keyword type**: Pipeline keyword. You cannot use it as part of a job.` or changes due to different GitLab versions, for example:
If a keyword can be used at both the job and pipeline level, like `variables`, ```markdown
explain it in detail instead of using the pre-written lines above. **Possible inputs**:
- `**Possible inputs**:`: Explain in detail which inputs the keyword can accept. - `true` (default if not defined) or `false`.
You can add the details in a sentence, paragraph, or list. ```
- ``**Example of `keyword-name`**:``: An example configuration that uses the keyword. ```markdown
Do not add extra keywords that are not required to understand the behavior. **Possible inputs**:
- (optional) `In this example...`: If the example needs extra details, - A single exit code.
add the clarification text below the example. - An array of exit codes.
```
- (optional) `**Additional details**:` If there are any caveats or extra details you ```markdown
want to document along with the keyword, add each one as a list item here. **Possible inputs**:
- (optional) `**Related topics**:` If there are any other keywords or pages that - A string with the long description.
relate to this keyword, add these links as list items here. - The path to a file that contains the description. Introduced in [GitLab 13.7](https://gitlab.com/gitlab-org/release-cli/-/merge_requests/67).
- The file location must be relative to the project directory (`$CI_PROJECT_DIR`).
- If the file is a symbolic link, it must be in the `$CI_PROJECT_DIR`.
- The `./path/to/file` and filename can't contain spaces.
```
### YAML reference style example ### Example of `keyword-name`
See the [`only:changes` / `except:changes`](../../ci/yaml/index.md#onlychanges--exceptchanges) An example of the keyword. Use the minimum number of other keywords necessary
documentation for an example of the YAML reference style. The following example is a to make the example valid. If the example needs explanation, add it after the example,
shortened version of that documentation's Markdown: for example:
````markdown ````markdown
#### `only:changes` / `except:changes` **Example of `dast`**:
> [Introduced](https://gitlab.com/gitlab-org/gitlab-foss/-/issues/19232) in GitLab 11.4. ```yaml
stages:
Use the `changes` keyword with `only` to run a job, or with `except` to skip a job, - build
when a Git push event modifies a file. - dast
Use `changes` in pipelines with the following refs: include:
- template: DAST.gitlab-ci.yml
- `branches` dast:
- `external_pull_requests` dast_configuration:
- `merge_requests` (see additional details about [using `only:changes` with pipelines for merge requests](../jobs/job_control.md#use-onlychanges-with-pipelines-for-merge-requests)) site_profile: "Example Co"
scanner_profile: "Quick Passive Test"
```
**Keyword type**: Job keyword. You can use it only as part of a job. In this example, the `dast` job extends the `dast` configuration added with the `include:` keyword
to select a specific site profile and scanner profile.
````
**Possible inputs**: An array including any number of: ### Additional details
- Paths to files. The additional details should be an unordered list of extra information that is
- Wildcard paths for single directories, for example `path/to/directory/*`, or a directory useful to know, but not important enough to put in the introduction. This information
and all its subdirectories, for example `path/to/directory/**/*`. can include changes introduced in different GitLab versions. For example:
**Example of `only:changes`**: ```markdown
**Additional details**:
```yaml - The expiration time period begins when the artifact is uploaded and stored on GitLab.
docker build: If the expiry time is not defined, it defaults to the [instance wide setting](../../user/admin_area/settings/continuous_integration.md#default-artifacts-expiration).
script: docker build -t my-image:$CI_COMMIT_REF_SLUG . - To override the expiration date and protect artifacts from being automatically deleted:
only: - Select **Keep** on the job page.
refs: - [In GitLab 13.3 and later](https://gitlab.com/gitlab-org/gitlab/-/issues/22761), set the value of
- branches `expire_in` to `never`.
changes:
- Dockerfile
- docker/scripts/*
- dockerfiles/**/*
``` ```
In this example, `docker build` only runs in branch pipelines, and only if at least one of ### Related topics
these files changed:
- `Dockerfile`. The related topics should be an unordered list of crosslinks to related pages, including:
- Any file in `docker/scripts`
- Any file in `dockerfiles/` or any of its subdirectories.
**Additional details**: - Specific tasks that you can accomplish with the keyword.
- Advanced examples of the keyword.
- Other related keywords that can be used together with this keyword.
- If you use refs other than `branches`, `external_pull_requests`, or `merge_requests`, For example:
`changes` can't determine if a given file is new or old and always returns `true`.
- If you use `only: changes` with other refs, jobs ignore the changes and always run.
- If you use `except: changes` with other refs, jobs ignore the changes and never run.
```markdown
**Related topics**: **Related topics**:
- [`only: changes` and `except: changes` examples](../jobs/job_control.md#onlychanges--exceptchanges-examples). - You can specify a [fallback cache key](../caching/index.md#use-a-fallback-cache-key)
- If you use `changes` with [only allow merge requests to be merged if the pipeline succeeds](../../user/project/merge_requests/merge_when_pipeline_succeeds.md#only-allow-merge-requests-to-be-merged-if-the-pipeline-succeeds), to use if the specified `cache:key` is not found.
you should [also use `only:merge_requests`](../jobs/job_control.md#use-onlychanges-with-pipelines-for-merge-requests). - You can [use multiple cache keys](../caching/index.md#use-multiple-caches) in a single job.
- Use `changes` with [scheduled pipelines](../jobs/job_control.md#use-onlychanges-with-scheduled-pipelines). - See the [common `cache` use cases](../caching/index.md#common-use-cases-for-caches) for more
```` `cache:key` examples.
```
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment