DigitalOcean monitoring installation w/chef
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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