Skip to content

Commit

Permalink
update changelog and docs (#800)
Browse files Browse the repository at this point in the history
* update changelog and docs

* add 7.0.1

* fix version
  • Loading branch information
rbren committed Jul 11, 2022
1 parent fec0089 commit 1c09ce9
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
12 changes: 12 additions & 0 deletions docs/changelog.md
Expand Up @@ -5,6 +5,18 @@ meta:
content: "Fairwinds Polaris | Changelog"

---
## 7.0.1
* Documentation updates

## 7.0.0
* Better support for `polaris fix`
* `target: Pod` is now `target: PodSpec` (to differentiate naked Pods from Controllers)

## 6.0.0
* Preliminary support for `polaris fix` command
* Changes to how Pod owners are determined
* Removed YAML manifests from the `deploy/` directory - Helm is now the default install mechanism

## 5.1.0
* Support `--context` flag for kubecontext
* Treat core Kubernetes controllers (`Deployments`, `StatefulSets`, `DaemonSets`, `CronJobs`) as top-level objects, instead of following owner refs
Expand Down
2 changes: 1 addition & 1 deletion docs/customization/custom-checks.md
Expand Up @@ -46,7 +46,7 @@ check ID. Note that you'll also have to set its severity in the `checks` section
* `Controller`, to check _any_ resource that creates Pods (e.g. Deployments, CronJobs, StatefulSets), as well as naked Pods
* `PodSpec`, same as `Controller`, but the schema applies to the Pod spec rather than the top-level controller
* `Container` same as `Controller`, but the schema applies to all Container specs rather than the top-level controller
* `controllers` - if `target` is `Controller`, `Pod` or `Container`, you can use this to change which types of controllers are checked
* `controllers` - if `target` is `Controller`, `PodSpec` or `Container`, you can use this to change which types of controllers are checked
* `controllers.include` - _only_ check these controllers
* `controllers.exclude` - check all controllers except these
* `containers` - if `target` is `Container`, you can use this to decide if `initContainers`, `containers`, or both should be checked
Expand Down
2 changes: 1 addition & 1 deletion main.go
Expand Up @@ -18,7 +18,7 @@ import (
cmd "github.com/fairwindsops/polaris/cmd/polaris"
)

const (
var (
// Version is set during build
Version = "development"
// Commit is set during build
Expand Down

0 comments on commit 1c09ce9

Please sign in to comment.