-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
provision for amazon linux 2023 aarch64 arch
- Loading branch information
voorepreethi
committed
Aug 19, 2024
1 parent
aaae88f
commit fda72fe
Showing
4 changed files
with
86 additions
and
0 deletions.
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
{ | ||
"global_tags": { | ||
"owning_team": "virtuoso", | ||
"Environment": "development", | ||
"Department": "product", | ||
"Product": "virtuoso" | ||
}, | ||
|
||
"resources": [ | ||
{ | ||
"id": "host1", | ||
"provider": "aws", | ||
"type": "ec2", | ||
"size": "t3.small", | ||
"ami_name": "al2023-ami-2023.*-aarch64", | ||
"user_name": "ec2-user" | ||
} | ||
], | ||
|
||
"instrumentations": { | ||
"resources": [ | ||
{ | ||
"id": "nr_logs_amazonlinux2023", | ||
"resource_ids": ["host1"], | ||
"provider": "newrelic", | ||
"source_repository": "https://github.com/newrelic/open-install-library", | ||
"deploy_script_path": "test/deploy/linux/newrelic-cli/install/roles", | ||
"params": { | ||
"newrelic_cli_option": "-n logs-integration", | ||
"validate_output": "Logs Integration\\s+\\(installed\\)", | ||
"local_recipes": true | ||
} | ||
} | ||
] | ||
} | ||
} | ||
|
39 changes: 39 additions & 0 deletions
39
test/definitions/super-agent/logs/amazonlinux-2023-super-agent.logs.json
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
{ | ||
"global_tags": { | ||
"owning_team": "virtuoso", | ||
"Environment": "development", | ||
"Department": "product", | ||
"Product": "virtuoso" | ||
}, | ||
|
||
"resources": [ | ||
{ | ||
"id": "host1", | ||
"provider": "aws", | ||
"type": "ec2", | ||
"size": "t3.small", | ||
"ami_name": "al2023-ami-2023.*-aarch64", | ||
"user_name": "ec2-user" | ||
} | ||
], | ||
|
||
"instrumentations": { | ||
"resources": [ | ||
{ | ||
"id": "nr_super_agent_logs", | ||
"resource_ids": ["host1"], | ||
"provider": "newrelic", | ||
"source_repository": "https://github.com/newrelic/open-install-library", | ||
"deploy_script_path": "test/deploy/linux/newrelic-cli/install/roles", | ||
"params": { | ||
"env_var": "NEW_RELIC_CLI_SKIP_CORE=1", | ||
"newrelic_cli_option": "-n super-agent,logs-integration-super-agent", | ||
"validate_output": "Logs Integration\\s+\\(installed\\)", | ||
"local_recipes": true, | ||
"use_organization_id": true | ||
} | ||
} | ||
] | ||
} | ||
} | ||
|