Skip to content
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

Conversation

alinabuzachis
Copy link
Contributor

SUMMARY

Relates to ansible-collections/news-for-maintainers#13

ISSUE TYPE
  • Feature Pull Request
COMPONENT NAME
ADDITIONAL INFORMATION

@ansibullbot
Copy link

@alinabuzachis this PR contains the following merge commits:

Please rebase your branch to remove these commits.

click here for bot help

@ansibullbot ansibullbot added feature This issue/PR relates to a feature request merge_commit This PR contains at least one merge commit. Please resolve! needs_rebase https://docs.ansible.com/ansible/devel/dev_guide/developing_rebasing.html needs_triage labels Mar 29, 2022
@softwarefactory-project-zuul
Copy link
Contributor

Build succeeded.

@tremble tremble added backport-1.5 PR should be backported to the stable-1.5 branch backport-2 PR should be backported to the stable-2 branch backport-3 PR should be backported to the stable-3 branch labels Mar 29, 2022
@tremble tremble added the mergeit Merge the PR (SoftwareFactory) label Mar 29, 2022
@softwarefactory-project-zuul
Copy link
Contributor

Build succeeded (gate pipeline).

@softwarefactory-project-zuul softwarefactory-project-zuul bot merged commit fd92206 into ansible-collections:main Mar 29, 2022
@patchback
Copy link

patchback bot commented Mar 29, 2022

Backport to stable-1.5: 💚 backport PR created

✅ Backport PR branch: patchback/backports/stable-1.5/fd92206427c55a988a570915b47634f7623ba3b8/pr-1028

Backported as #1030

🤖 @patchback
I'm built with octomachinery and
my source is open — https://github.com/sanitizers/patchback-github-app.

patchback bot pushed a commit that referenced this pull request Mar 29, 2022
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)
@patchback
Copy link

patchback bot commented Mar 29, 2022

Backport to stable-2: 💚 backport PR created

✅ Backport PR branch: patchback/backports/stable-2/fd92206427c55a988a570915b47634f7623ba3b8/pr-1028

Backported as #1031

🤖 @patchback
I'm built with octomachinery and
my source is open — https://github.com/sanitizers/patchback-github-app.

patchback bot pushed a commit that referenced this pull request Mar 29, 2022
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)
@patchback
Copy link

patchback bot commented Mar 29, 2022

Backport to stable-3: 💚 backport PR created

✅ Backport PR branch: patchback/backports/stable-3/fd92206427c55a988a570915b47634f7623ba3b8/pr-1028

Backported as #1032

🤖 @patchback
I'm built with octomachinery and
my source is open — https://github.com/sanitizers/patchback-github-app.

patchback bot pushed a commit that referenced this pull request Mar 29, 2022
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)
softwarefactory-project-zuul bot pushed a commit that referenced this pull request Mar 29, 2022
[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>
softwarefactory-project-zuul bot pushed a commit that referenced this pull request Mar 29, 2022
[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>
abikouo pushed a commit to abikouo/community.aws that referenced this pull request Oct 24, 2023
…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]>
abikouo pushed a commit to abikouo/community.aws that referenced this pull request Oct 24, 2023
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]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
backport-1.5 PR should be backported to the stable-1.5 branch backport-2 PR should be backported to the stable-2 branch backport-3 PR should be backported to the stable-3 branch feature This issue/PR relates to a feature request merge_commit This PR contains at least one merge commit. Please resolve! mergeit Merge the PR (SoftwareFactory) needs_rebase https://docs.ansible.com/ansible/devel/dev_guide/developing_rebasing.html needs_triage
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants