Skip to content

Instantly share code, notes, and snippets.

@jhmartin
Created May 25, 2020 22:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jhmartin/0e30486bded97d11dbe1aad729cbcce7 to your computer and use it in GitHub Desktop.
Save jhmartin/0e30486bded97d11dbe1aad729cbcce7 to your computer and use it in GitHub Desktop.
DigitalOcean monitoring installation w/chef
# Digital Ocean monitoring tool
yum_repository 'digitalocean-agent' do
description 'DigitalOcean Agent'
baseurl 'https://repos.insights.digitalocean.com/yum/do-agent/$basearch'
repo_gpgcheck false
enabled true
gpgkey 'https://repos.insights.digitalocean.com/sonar-agent.asc'
sslverify true
sslcacert '/etc/pki/tls/certs/ca-bundle.crt'
action :create
end
package 'do-agent'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment