Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions src/data/markdown/docs/01 guides/02 Using k6/05 Options.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Options allow you to configure how k6 will behave during test execution.
| [Hosts](#hosts) | An object with overrides to DNS resolution |
| [HTTP Debug](#http-debug) | Log all HTTP requests and responses |
| [Include System Env Vars](#include-system-env-vars) | Pass the real system environment variables to the runtime |
| [Insecure Skip TLS Verify](#insecure-skip-tls-verify) | A boolean specifying whether should ignore TLS verifications |
| [Insecure Skip TLS Verify](#insecure-skip-tls-verify) | A boolean specifying whether should ignore TLS verifications for VU connections |
| [Iterations](#iterations) | A number specifying a fixed number of iterations to execute of the script |
| [Linger](#linger) | A boolean specifying whether k6 should linger around after test run completion |
| [Log Output](#log-output) | Configuration about where logs from k6 should be send |
Expand Down Expand Up @@ -408,7 +408,8 @@ $ k6 run --include-system-env-vars ~/script.js
### Insecure Skip TLS Verify

A boolean, true or false. When this option is enabled (set to true), all of the verifications that
would otherwise be done to establish trust in a server provided TLS certificate will be ignored.
would otherwise be done to establish trust in a server provided TLS certificate will be ignored.
This only applies to connections created by VU code, such as http requests.
Available in `k6 run` and `k6 cloud` commands

| Env | CLI | Code / Config file | Default |
Expand Down