Skip to content

Commit eab320a

Browse files
authored
version 0.1.5 (#135)
1 parent 2494dd0 commit eab320a

File tree

7 files changed

+11
-7
lines changed

7 files changed

+11
-7
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,3 +39,7 @@
3939
* [Fix](https://github.com/reactiveops/polaris/issues/116): details pages getting template errors
4040
* [Fix](https://github.com/reactiveops/polaris/issues/114): support all auth providers
4141
* [Fix](https://github.com/reactiveops/polaris/issues/112): Ignore readiness probe for initContainers
42+
43+
# 0.1.5
44+
* [Fix](https://github.com/reactiveops/polaris/issues/125): ignore limits/requests for initContainers
45+
* [Fix](https://github.com/reactiveops/polaris/issues/132): support custom base path

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
[![Version][version-image]][version-link] [![CircleCI][circleci-image]][circleci-link] [![Go Report Card][goreport-image]][goreport-link]
66
</div>
77

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

1111
[goreport-image]: https://goreportcard.com/badge/github.com/reactiveops/polaris

deploy/dashboard.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ spec:
160160
- --dashboard
161161
- --config
162162
- /opt/app/config.yaml
163-
image: 'quay.io/reactiveops/polaris:0.1.4'
163+
image: 'quay.io/reactiveops/polaris:0.1.5'
164164
imagePullPolicy: 'Always'
165165
name: dashboard
166166
ports:

deploy/helm/polaris/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
apiVersion: v1
22
description: Validation of best practices in your Kubernetes clusters
33
name: polaris
4-
version: 0.1.4
4+
version: 0.1.5

deploy/helm/polaris/values.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,15 +50,15 @@ dashboard:
5050
type: ClusterIP
5151
image:
5252
repository: quay.io/reactiveops/polaris
53-
tag: 0.1.4
53+
tag: 0.1.5
5454
pullPolicy: Always
5555

5656
webhook:
5757
enable: false
5858
replicas: 1
5959
image:
6060
repository: quay.io/reactiveops/polaris
61-
tag: 0.1.4
61+
tag: 0.1.5
6262
pullPolicy: Always
6363

6464
rbac:

deploy/webhook.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ spec:
210210
- --webhook
211211
- --config
212212
- /opt/app/config.yaml
213-
image: 'quay.io/reactiveops/polaris:0.1.4'
213+
image: 'quay.io/reactiveops/polaris:0.1.5'
214214
imagePullPolicy: 'Always'
215215
ports:
216216
- containerPort: 9876

main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ import (
4242

4343
const (
4444
// Version represents the current release version of Polaris
45-
Version = "0.1.4"
45+
Version = "0.1.5"
4646
)
4747

4848
func main() {

0 commit comments

Comments
 (0)