Puppet Class: datadog_agent::suse_installer
- Inherits:
- datadog_agent::params
- Defined in:
- manifests/suse_installer.pp
Overview
Class: datadog_agent::suse_installer This class installs and configures the Datadog agent on RedHat-based systems.
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 |
# File 'manifests/suse_installer.pp', line 15
class datadog_agent::suse_installer (
String $api_key = 'your_API_key',
String $datadog_site = $datadog_agent::params::datadog_site,
Integer $agent_major_version = $datadog_agent::params::default_agent_major_version,
Optional[String] $agent_minor_version = undef,
Optional[String] $installer_repo_uri = undef,
Optional[Boolean] $rpm_repo_gpgcheck = undef,
Optional[Enum['host', 'docker', 'all']] $apm_instrumentation_enabled = undef,
Optional[String] $apm_instrumentation_libraries_str = undef,
Boolean $remote_updates = $datadog_agent::params::remote_updates,
Boolean $remote_policies = $datadog_agent::params::remote_policies,
) inherits datadog_agent::params {
# Generate installer trace ID as a random 64-bit integer (Puppet does not support 128-bit integers)
# Note: we cannot use fqdn_rand as the seed is dependent on the node, meaning the same trace ID would be generated on each run (for the same node)
# -An: no address, no leading 0s
# -N8: read 8 bytes
# -tu8: unsigned integer, 8 bytes (64 bits)
exec { 'Generate trace ID':
command => "echo $(od -An -N8 -tu8 < /dev/urandom | tr -d ' ') > /tmp/datadog_trace_id",
path => ['/usr/bin', '/bin'],
onlyif => '/bin/sh -c "command -v tr && command -v od && command -v echo"',
}
# Start timer (note: Puppet is not able to measure time directly as it's against its paradigm)
exec { 'Start timer':
command => 'date +%s%N > /tmp/puppet_start_time',
path => ['/usr/bin', '/bin'],
require => Exec['Generate trace ID'],
}
# Define the GPG keys to use for the repository
# We only use the latest key and previous key since the installer is signed with the latest key and the agent might be signed with the previous key.
$all_keys = [
'https://keys.datadoghq.com/DATADOG_RPM_KEY_CURRENT.public',
# Previous, EOL September 2024
'https://keys.datadoghq.com/DATADOG_RPM_KEY_FD4BF915.public',
# Current
'https://keys.datadoghq.com/DATADOG_RPM_KEY_B01082D3.public',
# Future, active from April 2028
'https://keys.datadoghq.com/DATADOG_RPM_KEY_4F09D16B.public',
]
if ($rpm_repo_gpgcheck != undef) {
$repo_gpgcheck = $rpm_repo_gpgcheck
} else {
if ($installer_repo_uri == undef) {
$repo_gpgcheck = true
} else {
$repo_gpgcheck = false
}
}
if ($installer_repo_uri != undef) {
$baseurl = $installer_repo_uri
} else {
# Unlike the Agent package, the installer is only within the stable repository, version 7
# Thus, no differentiation based on Agent major version.
$baseurl = "https://yum.datadoghq.com/suse/stable/7/${facts['os']['architecture']}/"
}
# We need to install GPG keys manually since zypper will autoreject new keys
# We download each key and import it using rpm --import
$all_keys.each |String $key_url| {
$key_name = split($key_url, '/')
$key_path = "/tmp/${key_name[-1]}"
file { $key_path:
owner => root,
group => root,
mode => '0600',
source => $key_url,
}
exec { "install-${key_name}":
command => "/bin/rpm --import ${key_path}",
}
}
zypprepo { 'datadog-installer':
baseurl => $baseurl,
enabled => 1,
autorefresh => 1,
name => 'datadog-installer',
gpgcheck => 1,
# zypper on SUSE < 15 only understands a single gpgkey value
gpgkey => (Float($facts['os']['release']['full']) >= 15.0) ? { true => join($all_keys, "\n "), default => 'https://keys.datadoghq.com/DATADOG_RPM_KEY_CURRENT.public' },
# TODO: when updating zypprepo to 4.0.0, uncomment the repo_gpgcheck line
# For now, we can leave this commented, as zypper by default does repodata
# signature checks if the repomd.xml.asc is present, so repodata checks
# are effective for most users anyway. We'll make this explicit when we
# update zypprepo version.
# repo_gpgcheck => $repo_gpgcheck,
keeppackages => 1,
require => Exec['Start timer'],
}
# Install `datadog-installer` package with latest versions
package { 'datadog-installer':
ensure => 'latest',
require => Zypprepo['datadog-installer'],
}
# Bootstrap the installer
exec { 'Bootstrap the installer':
# "Hack" to pass the trace ID at runtime instead of compile time
command => '/usr/bin/env DATADOG_TRACE_ID=$(cat /tmp/datadog_trace_id) DATADOG_PARENT_ID=$(cat /tmp/datadog_trace_id) /usr/bin/datadog-bootstrap bootstrap',
environment => [
"DD_SITE=${datadog_site}",
"DD_API_KEY=${api_key}",
"DD_AGENT_MAJOR_VERSION=${agent_major_version}",
"DD_AGENT_MINOR_VERSION=${agent_minor_version}",
"DD_REMOTE_UPDATES=${remote_updates}",
"DD_REMOTE_POLICIES=${remote_policies}",
"DD_APM_INSTRUMENTATION_ENABLED=${apm_instrumentation_enabled}",
"DD_APM_INSTRUMENTATION_LIBRARIES=${apm_instrumentation_libraries_str}",
],
require => Package['datadog-installer'],
}
# Check if installer owns the Datadog Agent package
exec {
'Check if installer owns the Datadog Agent package':
command => '/usr/bin/datadog-installer is-installed datadog-agent',
environment => [
"DD_SITE=${datadog_site}",
"DD_API_KEY=${api_key}",
],
# We allow 0, 10 (package not installed)
returns => [0, 10],
require => Exec['Bootstrap the installer'],
}
# Check if installer owns APM libraries
if $apm_instrumentation_libraries_str != '' {
$apm_instrumentation_libraries_str.split(',').each |$library| {
exec { "Check if installer owns APM library ${library}":
command => "/usr/bin/datadog-installer is-installed datadog-apm-library-${library}",
environment => [
"DD_SITE=${datadog_site}",
"DD_API_KEY=${api_key}",
],
# We allow 0, 10 (package not installed)
returns => [0, 10],
require => Exec['Bootstrap the installer'],
}
}
}
# Stop timer
exec { 'End timer':
command => 'date +%s%N > /tmp/puppet_stop_time',
path => ['/usr/bin', '/bin'],
require => Exec['Bootstrap the installer'],
}
if $remote_updates {
$packages_to_install = "datadog-agent,${apm_instrumentation_libraries_str}"
} else {
$packages_to_install = $apm_instrumentation_libraries_str
}
class { 'datadog_agent::installer_telemetry':
api_key => $api_key,
datadog_site => $datadog_site,
packages_to_install => $packages_to_install,
require => Exec['End timer'],
}
}
|