Skip to content

Commit

Permalink
bump version to 0.1.4 (#118)
Browse files Browse the repository at this point in the history
* bump version to 0.1.4

* add changelog
  • Loading branch information
rbren authored May 20, 2019
1 parent df93a14 commit 72adf57
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 7 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,19 @@
* privilege escalation allowed
* run as root allowed
* run as privileged

# 0.1.1
* [Fix](https://github.com/reactiveops/polaris/issues/93): missing `config.yaml` and dashboard assets in binary releases
* Added some tests and better error handling

# 0.1.2
* Stored all third-party assets (e.g. Charts.js) to local files to support offline dashboard viewing
* Fix: custom configs in `ConfigMap` not respected

# 0.1.3
* [Fix](https://github.com/reactiveops/polaris/issues/109): dashboard not updating when running persistently

# 0.1.4
* [Fix](https://github.com/reactiveops/polaris/issues/116): details pages getting template errors
* [Fix](https://github.com/reactiveops/polaris/issues/114): support all auth providers
* [Fix](https://github.com/reactiveops/polaris/issues/112): Ignore readiness probe for initContainers
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
[![Version][version-image]][version-link] [![CircleCI][circleci-image]][circleci-link] [![Go Report Card][goreport-image]][goreport-link]
</div>

[version-image]: https://img.shields.io/static/v1.svg?label=Version&message=0.1.3&color=239922
[version-image]: https://img.shields.io/static/v1.svg?label=Version&message=0.1.4&color=239922
[version-link]: https://github.com/reactiveops/polaris

[goreport-image]: https://goreportcard.com/badge/github.com/reactiveops/polaris
Expand Down
2 changes: 1 addition & 1 deletion deploy/dashboard.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ spec:
- --dashboard
- --config
- /opt/app/config.yaml
image: 'quay.io/reactiveops/polaris:0.1.3'
image: 'quay.io/reactiveops/polaris:0.1.4'
imagePullPolicy: 'Always'
name: dashboard
ports:
Expand Down
2 changes: 1 addition & 1 deletion deploy/helm/polaris/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
apiVersion: v1
description: Validation of best practices in your Kubernetes clusters
name: polaris
version: 0.1.3
version: 0.1.4
4 changes: 2 additions & 2 deletions deploy/helm/polaris/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,15 +50,15 @@ dashboard:
type: ClusterIP
image:
repository: quay.io/reactiveops/polaris
tag: 0.1.3
tag: 0.1.4
pullPolicy: Always

webhook:
enable: false
replicas: 1
image:
repository: quay.io/reactiveops/polaris
tag: 0.1.3
tag: 0.1.4
pullPolicy: Always

rbac:
Expand Down
2 changes: 1 addition & 1 deletion deploy/webhook.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ spec:
- --webhook
- --config
- /opt/app/config.yaml
image: 'quay.io/reactiveops/polaris:0.1.3'
image: 'quay.io/reactiveops/polaris:0.1.4'
imagePullPolicy: 'Always'
ports:
- containerPort: 9876
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ import (

const (
// Version represents the current release version of Polaris
Version = "0.1.3"
Version = "0.1.4"
)

func main() {
Expand Down

0 comments on commit 72adf57

Please sign in to comment.