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

changelog(doc): Add changelog for AlarmsCleanupConfig #473

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 16 additions & 1 deletion content/en/docs/releases/next-release-preview/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,19 @@ Please make a pull request to describe any changes you wish to highlight
in the next release of Spinnaker. These notes will be prepended to the release
changelog.

## Coming Soon in Release 1.37
## Coming Soon in Release 1.37

### AWS Alarms Cleanup agent support for Name RegExp's
When defining custom AWS Autoscaling policies the Alarm names might not match the predefined naming convention of the
Alarms cleanup Agent. Users can override the default alarms pattern name `.+-v[0-9]{3}-alarm-.+` by using the following
configuration in Clouddriver profile:

```yaml
aws:
cleanup:
alarms:
enabled: true #Default to false
daysToKeep: 90 #Default value
alarmsNamePattern: ".+-v[0-9]{3}-CustomAlarms-.+" #Defaults to '.+-v[0-9]{3}-alarm-.+'
```
Refer to Clouddriver PR: https://github.com/spinnaker/clouddriver/pull/6317