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

prep for 4.2.0 release and helm chart update #643

Merged
merged 2 commits into from
Sep 28, 2021
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<br>
<h3>Best Practices for Kubernetes Workload Configuration</h3>
<a href="https://github.com/FairwindsOps/polaris">
<img src="https://img.shields.io/static/v1.svg?label=Version&message=4.1.0&color=239922">
<img src="https://img.shields.io/static/v1.svg?label=Version&message=4.2.0&color=239922">
</a>
<a href="https://goreportcard.com/report/github.com/FairwindsOps/polaris">
<img src="https://goreportcard.com/badge/github.com/FairwindsOps/polaris">
Expand Down
8 changes: 4 additions & 4 deletions deploy/dashboard.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@ rules:
verbs:
- 'get'
- 'list'
- apiGroups:
- apiGroups:
- 'monitoring.coreos.com'
resources:
resources:
- 'prometheuses'
- 'alertmanagers'
verbs:
verbs:
- 'get'
- 'list'
---
Expand Down Expand Up @@ -119,7 +119,7 @@ spec:
- dashboard
- --port
- "8080"
image: 'quay.io/fairwinds/polaris:4.1'
image: 'quay.io/fairwinds/polaris:4.2'
imagePullPolicy: 'Always'
name: dashboard
ports:
Expand Down
8 changes: 4 additions & 4 deletions deploy/webhook.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@ rules:
verbs:
- 'get'
- 'list'
- apiGroups:
- apiGroups:
- 'monitoring.coreos.com'
resources:
resources:
- 'prometheuses'
- 'alertmanagers'
verbs:
verbs:
- 'get'
- 'list'
---
Expand Down Expand Up @@ -117,7 +117,7 @@ spec:
command:
- polaris
- webhook
image: 'quay.io/fairwinds/polaris:4.1'
image: 'quay.io/fairwinds/polaris:4.2'
imagePullPolicy: 'Always'
ports:
- containerPort: 9876
Expand Down
5 changes: 5 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ meta:
content: "Fairwinds Polaris | Changelog"

---

## 4.2.0
* New flags `--disallow-(config|annotation)-exemptions`
* Kubernetes dependency updates
* Documentation updates
## 4.1.0
* Handle case-insentitivity in capabilities checks
* Change test for PDB disruptions to better handle IaC
Expand Down
4 changes: 2 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@
package main

import (
"github.com/fairwindsops/polaris/cmd/polaris"
cmd "github.com/fairwindsops/polaris/cmd/polaris"
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

My editor kept wanting to change this so even though the module at that directory is named cmd this makes the below code more clear I think.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍

)

const (
// Version represents the current release version of Polaris
Version = "4.1.0"
Version = "4.2.0"
)

func main() {
Expand Down