Skip to content
This repository has been archived by the owner on Dec 18, 2019. It is now read-only.

Commit

Permalink
Merge pull request #173 from camilamacedo86/release-version
Browse files Browse the repository at this point in the history
release 0.4.1
  • Loading branch information
camilamacedo86 committed Aug 28, 2019
2 parents a628bdd + 5576079 commit d49eb41
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 10 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,13 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## Unreleased

## [0.4.1] - 2019-08-28

- Change/Add Memory and CPU resources requested and limits for MSS, Oauth and Operator [#172](https://github.com/aerogear/mobile-security-service-operator/pull/172)

## [0.4.0] - 2019-08-13

- Remove MobileSecurityServicePodCount since it was considered duplicated [#157](https://github.com/aerogear/mobile-security-service-operator/pull/157)
- Fix the chart `Mobile Security Service Application - Uptime` on Grafana application dashboard [#164](https://github.com/aerogear/mobile-security-service-operator/pull/164)
- Fix Grafana application resources dashboard [#165](https://github.com/aerogear/mobile-security-service-operator/pull/165)
Expand All @@ -16,6 +20,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- Upgrade the version of Mobile Security Service used by default from 0.1.0 to 0.2.2 [#168](https://github.com/aerogear/mobile-security-service-operator/pull/168)

## [0.3.0] - 2019-07-26

- Fixed Prometheus Rules for MobileSecurityServicePodCount and MobileSecurityServiceDown [#151](https://github.com/aerogear/mobile-security-service-operator/pull/151)
- Improved and fixed sop in order to add steps to scale the pod [#151](https://github.com/aerogear/mobile-security-service-operator/pull/151)
- Added schema validation by OpenAPI [#149](https://github.com/aerogear/mobile-security-service-operator/pull/149)
Expand All @@ -24,10 +29,13 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- Removed some unnecessary permissions from the operator ServiceAccount

## [0.2.0] - 2019-07-01

- Release of the operator which meets all criteria planned into the https://trello.com/b/mCiUFubz/security-service.

## [0.1.1] - [0.1.4]

- Improvements and fixes performed in the initial development phase

## [0.1.0] - 2019-06-12

- Initial release of operator that meets requirements to manage [MobileSecurityService](https://github.com/aerogear/mobile-security-service) and its database.
16 changes: 8 additions & 8 deletions deploy/monitor/mss_prometheus_rule.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ spec:
annotations:
description: "The mobile-security-service has been down for more than 5 minutes. "
summary: "The mobile-security-service is down. For more information see on the MSS at https://github.com/aerogear/mobile-security-service"
sop_url: "https://github.com/aerogear/mobile-security-service-operator/blob/0.4.0/SOP/SOP-mss.adoc"
sop_url: "https://github.com/aerogear/mobile-security-service-operator/blob/0.4.1/SOP/SOP-mss.adoc"
- alert: MobileSecurityServiceConsoleDown
expr: absent(kube_endpoint_address_available{endpoint="mobile-security-service-application"} >= 1)
for: 5m
Expand All @@ -31,7 +31,7 @@ spec:
annotations:
description: "The mobile-security-service admin console has been down for more than 5 minutes. "
summary: "The mobile-security-service admin console endpoint has been unavailable for more that 5 minutes. For more information see on the MSS at https://github.com/aerogear/mobile-security-service"
sop_url: "https://github.com/aerogear/mobile-security-service-operator/blob/0.4.0/SOP/SOP-mss.adoc"
sop_url: "https://github.com/aerogear/mobile-security-service-operator/blob/0.4.1/SOP/SOP-mss.adoc"
- alert: MobileSecurityServiceDatabaseDown
expr: absent(kube_pod_container_status_running{namespace="mobile-security-service",container="database"}==1)
for: 5m
Expand All @@ -40,7 +40,7 @@ spec:
annotations:
description: "The mobile-security-service-db pod has been down for more than 5 minutes"
summary: "The mobile-security-service-db is down. For more information see on the MSS at https://github.com/aerogear/mobile-security-service"
sop_url: "https://github.com/aerogear/mobile-security-service-operator/blob/0.4.0/SOP/SOP-mss.adoc"
sop_url: "https://github.com/aerogear/mobile-security-service-operator/blob/0.4.1/SOP/SOP-mss.adoc"
- alert: MobileSecurityServicePodCPUHigh
expr: "(rate(process_cpu_seconds_total{job='mobile-security-service-application'}[1m])) > (((kube_pod_container_resource_limits_cpu_cores{namespace='mobile-security-service',container='application'})/100)*90)"
for: 5m
Expand All @@ -49,7 +49,7 @@ spec:
annotations:
description: "The mobile-security-service pod has been at 90% CPU usage for more than 5 minutes"
summary: "The mobile-security-service is reporting high cpu usage for more that 5 minutes. For more information see on the MSS at https://github.com/aerogear/mobile-security-service"
sop_url: "https://github.com/aerogear/mobile-security-service-operator/blob/0.4.0/SOP/SOP-mss.adoc"
sop_url: "https://github.com/aerogear/mobile-security-service-operator/blob/0.4.1/SOP/SOP-mss.adoc"
- alert: MobileSecurityServicePodMemoryHigh
expr: "(process_resident_memory_bytes{job='mobile-security-service-application'}) > (((kube_pod_container_resource_limits_memory_bytes{namespace='mobile-security-service',container='application'})/100)*90)"
for: 5m
Expand All @@ -58,7 +58,7 @@ spec:
annotations:
description: "The mobile-security-service pod has been at 90% memory usage for more than 5 minutes"
summary: "The mobile-security-service is reporting high memory usage for more that 5 minutes. For more information see on the MSS at https://github.com/aerogear/mobile-security-service"
sop_url: "https://github.com/aerogear/mobile-security-service-operator/blob/0.4.0/SOP/SOP-mss.adoc"
sop_url: "https://github.com/aerogear/mobile-security-service-operator/blob/0.4.1/SOP/SOP-mss.adoc"
- alert: MobileSecurityServiceApiHighRequestDuration
expr: "api_requests_duration_seconds{job='mobile-security-service-application', quantile='0.5'} > 30"
for: 5m
Expand All @@ -67,7 +67,7 @@ spec:
annotations:
description: "The mobile-security-service api has had http requests latency longer that 30 seconds for more than 5 minutes"
summary: "The mobile-security-service is reporting high request latency for more that 5 minutes. For more information see on the MSS at https://github.com/aerogear/mobile-security-service"
sop_url: "https://github.com/aerogear/mobile-security-service-operator/blob/0.4.0/SOP/SOP-mss.adoc"
sop_url: "https://github.com/aerogear/mobile-security-service-operator/blob/0.4.1/SOP/SOP-mss.adoc"
- alert: MobileSecurityServiceApiHighConcurrentRequests
expr: "api_requests_in_flight{job='mobile-security-service-application'} > 50"
for: 5m
Expand All @@ -76,7 +76,7 @@ spec:
annotations:
description: "The mobile-security-service api has had 50 concurrent requests for more than 5 minutes"
summary: "The mobile-security-service is reporting high request concurrency for more that 5 minutes. For more information see on the MSS at https://github.com/aerogear/mobile-security-service"
sop_url: "https://github.com/aerogear/mobile-security-service-operator/blob/0.4.0/SOP/SOP-mss.adoc"
sop_url: "https://github.com/aerogear/mobile-security-service-operator/blob/0.4.1/SOP/SOP-mss.adoc"
- alert: MobileSecurityServiceApiHighRequestFailure
expr: "rate(api_requests_failure_total{job='mobile-security-service-application'}[1h])>10"
for: 1h
Expand All @@ -85,4 +85,4 @@ spec:
annotations:
description: "The mobile-security-service api has reported more that 10 request failures in an hour"
summary: "The mobile-security-service is reporting a high request failure over an hour. For more information see on the MSS at https://github.com/aerogear/mobile-security-service"
sop_url: "https://github.com/aerogear/mobile-security-service-operator/blob/0.4.0/SOP/SOP-mss.adoc"
sop_url: "https://github.com/aerogear/mobile-security-service-operator/blob/0.4.1/SOP/SOP-mss.adoc"
2 changes: 1 addition & 1 deletion deploy/monitor/prometheus_rule.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ spec:
annotations:
description: "The mobile-security-service-operator has been down for more than 5 minutes. "
summary: "The mobile-security-service-operator is down. For more information see on the MSS operator https://github.com/aerogear/mobile-security-service-operator"
sop_url: "https://github.com/aerogear/mobile-security-service-operator/blob/0.4.0/SOP/SOP-operator.adoc"
sop_url: "https://github.com/aerogear/mobile-security-service-operator/blob/0.4.1/SOP/SOP-operator.adoc"
2 changes: 1 addition & 1 deletion version/version.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
package version

var (
Version = "0.4.0"
Version = "0.4.1"
)

0 comments on commit d49eb41

Please sign in to comment.