diff --git a/CHANGELOG.md b/CHANGELOG.md index 2e4b07dbb..60b278585 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # x.x.x (next release) +# 1.2.0 +* Add ability to audit a single workload +* Enable `pullPolicyAlways` by default +* Fix for finding parent resources + # 1.1.1 * Show controller checks on dashboard * Fix for orphaned pods w/ controller checks diff --git a/README.md b/README.md index 245164d59..b0ba0071b 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ [![Version][version-image]][version-link] [![CircleCI][circleci-image]][circleci-link] [![Go Report Card][goreport-image]][goreport-link] -[version-image]: https://img.shields.io/static/v1.svg?label=Version&message=1.1.1&color=239922 +[version-image]: https://img.shields.io/static/v1.svg?label=Version&message=1.2.0&color=239922 [version-link]: https://github.com/FairwindsOps/polaris [goreport-image]: https://goreportcard.com/badge/github.com/FairwindsOps/polaris diff --git a/deploy/dashboard.yaml b/deploy/dashboard.yaml index 6c97f88ba..b3ec83124 100644 --- a/deploy/dashboard.yaml +++ b/deploy/dashboard.yaml @@ -109,7 +109,7 @@ spec: - command: - polaris - dashboard - image: 'quay.io/fairwinds/polaris:1.1' + image: 'quay.io/fairwinds/polaris:1.2' imagePullPolicy: 'Always' name: dashboard ports: diff --git a/deploy/webhook.yaml b/deploy/webhook.yaml index e204312e7..289d370c0 100644 --- a/deploy/webhook.yaml +++ b/deploy/webhook.yaml @@ -199,7 +199,7 @@ spec: command: - polaris - webhook - image: 'quay.io/fairwinds/polaris:1.1' + image: 'quay.io/fairwinds/polaris:1.2' imagePullPolicy: 'Always' ports: - containerPort: 9876 diff --git a/main.go b/main.go index ead5e7403..4aa8d299c 100644 --- a/main.go +++ b/main.go @@ -20,7 +20,7 @@ import ( const ( // Version represents the current release version of Polaris - Version = "1.1.1" + Version = "1.2.0" ) func main() {