Skip to content

Commit 2ca4241

Browse files
docs
1 parent a6d2353 commit 2ca4241

File tree

2 files changed

+40
-3
lines changed

2 files changed

+40
-3
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Install AC Recipe Role
2+
3+
This Ansible role handles the installation of Agent Control (AC) using a recipe-based approach.
4+
5+
## Features
6+
7+
- Installs AC using the designated recipe
8+
- Supports targeting specific recipe repository branches
9+
- Utilizes local package repository for installation
10+
- Installs from locally built .deb packages corresponding to the current branch
11+
12+
## Usage
13+
14+
This role creates a local repository on the target host and installs the AC package from the built .deb file, ensuring consistency with the current development branch.
15+
16+
## Requirements
17+
18+
- Target host must support .deb package installation
19+
- Local .deb package must be available from the current branch build
Lines changed: 21 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,36 @@
11
---
2+
# List of recipes to be installed
23
recipe_list: "agent-control"
4+
5+
# Source of monitoring configuration ("infra-agent", "otel")
36
monitoring_source: "none"
7+
8+
# Unique identifier for the fleet this agent belongs to
49
fleet_id: ""
10+
11+
# Flag to enable or disable fleet management functionality
512
fleet_enabled: "true"
6-
migrate_infra_config: "true"
713

14+
# Flag to migrate existing infrastructure agent configuration
15+
migrate_infra_config: "true"
16+
17+
# Local file system path where local packages (.deb) exists.
818
local_package_path: ""
19+
20+
# Git branch name to use when fetching recipes from the repository
921
recipe_repo_branch: "main"
1022

23+
# Specific version of the agent control software to install
1124
agent_control_version: ""
1225

26+
# New Relic license key for agent authentication
1327
nr_license_key: ""
28+
29+
# New Relic API key for programmatic access to New Relic services
1430
nr_api_key: ""
31+
32+
# New Relic account identifier for associating the agent
1533
nr_account_id: ""
16-
nr_region: ""
17-
...
1834

35+
# New Relic region endpoint (e.g., "US", "EU") for data reporting
36+
nr_region: ""

0 commit comments

Comments
 (0)