Skip to content

0.2.0

Compare
Choose a tag to compare
@github-actions github-actions released this 05 Oct 10:26
· 820 commits to main since this release
c227cc2

Configure agentless mode

If you are using cloud CI provider without access to the underlying worker nodes, such as GitHub Actions or CircleCI, configure the library to use the Agentless mode.

For this, set the following environment variables:

  • DD_CIVISIBILITY_AGENTLESS_ENABLED=true
  • DD_API_KEY=<your_api_key>

Additionally, configure which Datadog site you want to send your data to:

  • DD_SITE (default: datadoghq.com)

You can also enable agentless mode with Datadog.configure block:

Datadog.configure do |c|
  # … existing configuration …
  c.ci.agentless_mode_enabled = true
  # don't forget to set DD_API_KEY env variable!
end

Added

  • [CIAPP-2959] Agentless mode (#33)

Fixed

  • [CIAPP-4278] Fix an issue with emojis in commit message breaking LocalGit tags provider (#40)

Read the full changeset and the release milestone.