Skip to content

Commit

Permalink
Update to 0.1.1 (#28)
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonodonnell authored Jan 2, 2020
1 parent 418d39f commit 8f3a611
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 7 deletions.
16 changes: 14 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,20 @@
## Unreleased

Bug:
Improvements:

* Fixed bug causing pods in kube-system to be rejected
Features:

Bugs:

## 0.1.1 (January 2nd, 2020)

Improvements:

Features:

Bugs:

* Fixed bug causing pods in kube-system to be rejected [GH-14]

## 0.1.0 (December 17th, 2019)

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
REGISTRY_NAME?=docker.io/hashicorp
IMAGE_NAME=vault-k8s
VERSION?=0.1.0
VERSION?=0.1.1
IMAGE_TAG=$(REGISTRY_NAME)/$(IMAGE_NAME):$(VERSION)
IMAGE_TAG_LATEST=$(REGISTRY_NAME)/$(IMAGE_NAME):latest
DOCKER_DIR=./build/docker
Expand Down
2 changes: 1 addition & 1 deletion build/docker/Dockerfile.dev
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM alpine:latest

ARG VERSION=0.1.0
ARG VERSION=0.1.1

RUN addgroup vault && \
adduser -S -G vault vault
Expand Down
2 changes: 1 addition & 1 deletion build/docker/Dockerfile.release
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM alpine:latest

ARG NAME=vault-k8s
ARG VERSION=0.1.0
ARG VERSION=0.1.1

# Set ARGs as ENV so that they can be used in ENTRYPOINT/CMD
ENV NAME=$NAME
Expand Down
2 changes: 1 addition & 1 deletion deploy/injector-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ spec:
serviceAccountName: "vault-injector"
containers:
- name: sidecar-injector
image: "hashicorp/vault-k8s:0.1.0"
image: "hashicorp/vault-k8s:0.1.1"
imagePullPolicy: IfNotPresent
env:
- name: NAMESPACE
Expand Down
2 changes: 1 addition & 1 deletion version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ var (
//
// Version must conform to the format expected by
// github.com/hashicorp/go-version for tests to work.
Version = "0.1.0"
Version = "0.1.1"

// A pre-release marker for the version. If this is "" (empty string)
// then it means that it is a final release. Otherwise, this is a pre-release
Expand Down

0 comments on commit 8f3a611

Please sign in to comment.