Commit 3233d6f9 authored by Russell Dickenson's avatar Russell Dickenson

Merge branch 'add_dast_dependancies_optimization_to_docs_10413' into 'master'

Add DAST optimization section to DAST docs

See merge request gitlab-org/gitlab!29750
parents bc2294e5 f17711a3
...@@ -608,6 +608,17 @@ Each scenario can be a third-level heading, e.g. `### Getting error message X`. ...@@ -608,6 +608,17 @@ Each scenario can be a third-level heading, e.g. `### Getting error message X`.
If you have none to add when creating a doc, leave this section in place If you have none to add when creating a doc, leave this section in place
but commented out to help encourage others to add to it in the future. --> but commented out to help encourage others to add to it in the future. -->
## Optimizing DAST
By default, DAST will download all artifacts defined by previous jobs in the pipeline. If
your DAST job does not rely on `environment_url.txt` to define the URL under test or any other files created
in previous jobs, we recommend you don't download artifacts. To avoid downloading artifacts, add the following to your `gitlab-ci.yml` file:
```json
dast:
dependencies: []
```
## Troubleshooting ## Troubleshooting
### Running out of memory ### Running out of memory
......
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