-
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.
feat(logs): Provision for amazon linux 2023 aarch64 arch (#1108)
* provision for amazon linux 2023 aarch64 arch * Update amazonlinux-2023.json * PR changes for al2023 amr64 * Changing ami size for al2023 arm64 * platform version changed for al2023 for super agent * changed ami size for al2023 arm64 --------- Co-authored-by: voorepreethi <pvoore.newrelic.com> Co-authored-by: Rajeev Kumar <[email protected]>
- Loading branch information
1 parent
89cab74
commit b3e8952
Showing
5 changed files
with
87 additions
and
1 deletion.
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": "t4g.nano", | ||
"ami_name": "al2023-ami-2023.*-arm64", | ||
"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/amazonlinux2023-aarch64-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": "t4g.nano", | ||
"ami_name": "al2023-ami-2023.*-arm64", | ||
"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 | ||
} | ||
} | ||
] | ||
} | ||
} | ||
|
File renamed without changes.