Skip to content

Commit

Permalink
Update to 0.1.2 (#37)
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonodonnell committed Jan 8, 2020
1 parent e4c17a3 commit ac65a50
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ Features:

Bugs:

* Fixed bug where tlsSkipVerify was true by default.
## 0.1.2 (January 8th, 2020)

## 0.1.1 (January 2nd, 2020)
Bugs:

Improvements:
* Fixed bug where tlsSkipVerify was true by default [GH-34]

Features:
## 0.1.1 (January 2nd, 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.1
VERSION?=0.1.2
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.1
ARG VERSION=0.1.2

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.1
ARG VERSION=0.1.2

# 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.1"
image: "hashicorp/vault-k8s:0.1.2"
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.1"
Version = "0.1.2"

// 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 ac65a50

Please sign in to comment.