-
Notifications
You must be signed in to change notification settings - Fork 397
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Copy ignore-2.13.txt to ignore-2.14.txt #1028
Copy ignore-2.13.txt to ignore-2.14.txt #1028
Conversation
Signed-off-by: Alina Buzachis <[email protected]>
@alinabuzachis this PR contains the following merge commits: Please rebase your branch to remove these commits. |
Build succeeded.
|
Build succeeded (gate pipeline).
|
Backport to stable-1.5: 💚 backport PR created✅ Backport PR branch: Backported as #1030 🤖 @patchback |
Copy ignore-2.13.txt to ignore-2.14.txt SUMMARY Relates to ansible-collections/news-for-maintainers#13 ISSUE TYPE Feature Pull Request COMPONENT NAME ADDITIONAL INFORMATION Reviewed-by: Mark Chappell <None> Reviewed-by: Markus Bergholz <[email protected]> (cherry picked from commit fd92206)
Backport to stable-2: 💚 backport PR created✅ Backport PR branch: Backported as #1031 🤖 @patchback |
Copy ignore-2.13.txt to ignore-2.14.txt SUMMARY Relates to ansible-collections/news-for-maintainers#13 ISSUE TYPE Feature Pull Request COMPONENT NAME ADDITIONAL INFORMATION Reviewed-by: Mark Chappell <None> Reviewed-by: Markus Bergholz <[email protected]> (cherry picked from commit fd92206)
Backport to stable-3: 💚 backport PR created✅ Backport PR branch: Backported as #1032 🤖 @patchback |
Copy ignore-2.13.txt to ignore-2.14.txt SUMMARY Relates to ansible-collections/news-for-maintainers#13 ISSUE TYPE Feature Pull Request COMPONENT NAME ADDITIONAL INFORMATION Reviewed-by: Mark Chappell <None> Reviewed-by: Markus Bergholz <[email protected]> (cherry picked from commit fd92206)
[PR #1028/fd922064 backport][stable-3] Copy ignore-2.13.txt to ignore-2.14.txt This is a backport of PR #1028 as merged into main (fd92206). SUMMARY Relates to ansible-collections/news-for-maintainers#13 ISSUE TYPE Feature Pull Request COMPONENT NAME ADDITIONAL INFORMATION Reviewed-by: Mark Chappell <None>
[PR #1028/fd922064 backport][stable-2] Copy ignore-2.13.txt to ignore-2.14.txt This is a backport of PR #1028 as merged into main (fd92206). SUMMARY Relates to ansible-collections/news-for-maintainers#13 ISSUE TYPE Feature Pull Request COMPONENT NAME ADDITIONAL INFORMATION Reviewed-by: Mark Chappell <None>
…e_cloudwatch_metric_alarm Migrate cloudwatch_metric_alarm* modules and tests Depends-On: ansible/zuul-config#443 Migrate cloudwatch_metric_alarm* modules and tests Reviewed-by: Mike Graves <[email protected]> Reviewed-by: Jill R <None> Reviewed-by: Bikouo Aubin <None> Reviewed-by: Alina Buzachis <None> Reviewed-by: Gonéri Le Bouder <[email protected]>
new module: cloudwatch_metric_alarm_info SUMMARY Depends-On: ansible-collections#1066 Should be merged only after ansible-collections#1028 is merged. Adding a new module for retrieving cloudwatch metric alarms info. Currently supports following boto API(s) describe_alarms() ISSUE TYPE New Module Pull Request COMPONENT NAME cloudwatch_metric_alarm_info ADDITIONAL INFORMATION Will be useful in moving these tasks from aws cli commands to amazon.aws module. https://github.com/ansible-collections/community.aws/blob/main/tests/integration/targets/cloudwatch_metric_alarm/tasks/main.yml#L63-L70 ansible-collections#1440 The integration tests for this info module will be added to above tests, after the cloudwatch_metric_alarm module is migrated from community.aws to amazon.aws. Sample playbook --- - name: Create a metric alarm & get info hosts: localhost gather_facts: false tasks: - name: create alarm community.aws.cloudwatch_metric_alarm: state: present region: us-east-2 name: "cpu-low-test-metric-alarm-1234" metric: "CPUUtilization" namespace: "AWS/EC2" statistic: Average comparison: "LessThanOrEqualToThreshold" threshold: 50.0 period: 180 evaluation_periods: 3 unit: "Percent" description: "This will alarm when a instance's CPU usage average is lower than 50%" dimensions: {'InstanceId':'i-00a8b34xxxxxxxxxx'} - name: describe the metric alarm based on metric name and namespace amazon.aws.cloudwatch_metric_alarm_info: alarm_names: - cpu-low-test-metric-alarm-1234 register: alarm_info - debug: var: alarm_info Reviewed-by: Alina Buzachis <None> Reviewed-by: Mandar Kulkarni <[email protected]> Reviewed-by: Jill R <None> Reviewed-by: Mark Chappell <None> Reviewed-by: Gonéri Le Bouder <[email protected]>
SUMMARY
Relates to ansible-collections/news-for-maintainers#13
ISSUE TYPE
COMPONENT NAME
ADDITIONAL INFORMATION