Skip to content

Commit

Permalink
Update to 0.2.0 (#63)
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonodonnell authored Jan 31, 2020
1 parent aa0cae6 commit 9f71b18
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 8 deletions.
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,18 @@
## Unreleased

Features:

Improvements:

Bugs:

## 0.2.0 (January 31st, 2020)

Features:

* Added configurable auth mount path annotation and environment variable [GH-23]
* Added kustomize [GH-43]

Bugs:

## 0.1.2 (January 8th, 2020)

Bugs:
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.2
VERSION?=0.2.0
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.2
ARG VERSION=0.2.0

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.2
ARG VERSION=0.2.0

# 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.2"
image: "hashicorp/vault-k8s:0.2.0"
imagePullPolicy: IfNotPresent
env:
- name: NAMESPACE
Expand Down
4 changes: 2 additions & 2 deletions version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ var (
//
// Version must conform to the format expected by
// github.com/hashicorp/go-version for tests to work.
Version = "0.1.2"
Version = "0.2.0"

// 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
// such as "dev" (in development), "beta", "rc1", etc.
VersionPrerelease = "dev"
VersionPrerelease = ""
)

// GetHumanVersion composes the parts of the version in a way that's suitable
Expand Down

0 comments on commit 9f71b18

Please sign in to comment.