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

update version to 0.1.1 #100

Merged
merged 1 commit into from
May 17, 2019
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 @@ -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.0&color=239922
[version-image]: https://img.shields.io/static/v1.svg?label=Version&message=0.1.1&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 @@ -158,7 +158,7 @@ spec:
- command:
- polaris
- --dashboard
image: 'quay.io/reactiveops/polaris:0.1.0'
image: 'quay.io/reactiveops/polaris:0.1.1'
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.0
version: 0.1.1
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.0
tag: 0.1.1
pullPolicy: Always

webhook:
enable: false
replicas: 1
image:
repository: quay.io/reactiveops/polaris
tag: 0.1.0
tag: 0.1.1
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 @@ -208,7 +208,7 @@ spec:
command:
- polaris
- --webhook
image: 'quay.io/reactiveops/polaris:0.1.0'
image: 'quay.io/reactiveops/polaris:0.1.1'
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.0"
Version = "0.1.1"
)

func main() {
Expand Down