From a09785dfbb47133739835c60efb3a2405ec11d56 Mon Sep 17 00:00:00 2001 From: Bobby Brennan Date: Wed, 5 Jun 2019 12:49:34 +0000 Subject: [PATCH] version 0.1.5 --- CHANGELOG.md | 4 ++++ README.md | 2 +- deploy/dashboard.yaml | 2 +- deploy/helm/polaris/Chart.yaml | 2 +- deploy/helm/polaris/values.yaml | 4 ++-- deploy/webhook.yaml | 2 +- main.go | 2 +- 7 files changed, 11 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 19875edee..045e2555a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -39,3 +39,7 @@ * [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 + +# 0.1.5 +* [Fix](https://github.com/reactiveops/polaris/issues/125): ignore limits/requests for initContainers +* [Fix](https://github.com/reactiveops/polaris/issues/132): support custom base path diff --git a/README.md b/README.md index d967617b7..2f51d84f6 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=0.1.4&color=239922 +[version-image]: https://img.shields.io/static/v1.svg?label=Version&message=0.1.5&color=239922 [version-link]: https://github.com/reactiveops/polaris [goreport-image]: https://goreportcard.com/badge/github.com/reactiveops/polaris diff --git a/deploy/dashboard.yaml b/deploy/dashboard.yaml index ed2c64207..ba5758312 100644 --- a/deploy/dashboard.yaml +++ b/deploy/dashboard.yaml @@ -160,7 +160,7 @@ spec: - --dashboard - --config - /opt/app/config.yaml - image: 'quay.io/reactiveops/polaris:0.1.4' + image: 'quay.io/reactiveops/polaris:0.1.5' imagePullPolicy: 'Always' name: dashboard ports: diff --git a/deploy/helm/polaris/Chart.yaml b/deploy/helm/polaris/Chart.yaml index 3b9be8dda..5209e2399 100755 --- a/deploy/helm/polaris/Chart.yaml +++ b/deploy/helm/polaris/Chart.yaml @@ -1,4 +1,4 @@ apiVersion: v1 description: Validation of best practices in your Kubernetes clusters name: polaris -version: 0.1.4 +version: 0.1.5 diff --git a/deploy/helm/polaris/values.yaml b/deploy/helm/polaris/values.yaml index dee54b9c2..72d7bde75 100644 --- a/deploy/helm/polaris/values.yaml +++ b/deploy/helm/polaris/values.yaml @@ -50,7 +50,7 @@ dashboard: type: ClusterIP image: repository: quay.io/reactiveops/polaris - tag: 0.1.4 + tag: 0.1.5 pullPolicy: Always webhook: @@ -58,7 +58,7 @@ webhook: replicas: 1 image: repository: quay.io/reactiveops/polaris - tag: 0.1.4 + tag: 0.1.5 pullPolicy: Always rbac: diff --git a/deploy/webhook.yaml b/deploy/webhook.yaml index ce4e9364f..1c4310699 100644 --- a/deploy/webhook.yaml +++ b/deploy/webhook.yaml @@ -210,7 +210,7 @@ spec: - --webhook - --config - /opt/app/config.yaml - image: 'quay.io/reactiveops/polaris:0.1.4' + image: 'quay.io/reactiveops/polaris:0.1.5' imagePullPolicy: 'Always' ports: - containerPort: 9876 diff --git a/main.go b/main.go index 23ffc22c8..80132d2c6 100644 --- a/main.go +++ b/main.go @@ -42,7 +42,7 @@ import ( const ( // Version represents the current release version of Polaris - Version = "0.1.4" + Version = "0.1.5" ) func main() {