Skip to content

Commit

Permalink
release: bump version to v0.3.0 (#140)
Browse files Browse the repository at this point in the history
Signed-off-by: Anish Ramasekar <anish.ramasekar@gmail.com>
  • Loading branch information
aramase authored Apr 11, 2022
1 parent 9e75cca commit 06e3a58
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ REGISTRY ?= $(REGISTRY_NAME).azurecr.io/$(REPO_PREFIX)
LOCAL_REGISTRY_NAME ?= kind-registry
LOCAL_REGISTRY_PORT ?= 5000
IMAGE_NAME ?= keyvault
IMAGE_VERSION ?= v0.2.0
IMAGE_VERSION ?= v0.3.0
IMAGE_TAG := $(REGISTRY)/$(IMAGE_NAME):$(IMAGE_VERSION)
CGO_ENABLED_FLAG := 0

Expand Down
3 changes: 2 additions & 1 deletion docs/manual-install.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ This guide demonstrates steps required to enable the KMS Plugin for Key Vault in
hostNetwork: true
containers:
- name: azure-kms-provider
image: mcr.microsoft.com/oss/azure/kms/keyvault:v0.2.0
image: mcr.microsoft.com/oss/azure/kms/keyvault:v0.3.0
imagePullPolicy: IfNotPresent
args:
- --listen-addr=unix:///opt/azurekms.socket # [OPTIONAL] gRPC listen address. Default is unix:///opt/azurekms.socket
Expand All @@ -80,6 +80,7 @@ This guide demonstrates steps required to enable the KMS Plugin for Key Vault in
- --healthz-port=8787 # [OPTIONAL] port for health check. Default is 8787
- --healthz-path=/healthz # [OPTIONAL] path for health check. Default is /healthz
- --healthz-timeout=20s # [OPTIONAL] RPC timeout for health check. Default is 20s
- --managed-hsm=false # [OPTIONAL] Use Azure Key Vault managed HSM. Default is false.
- -v=1
securityContext:
allowPrivilegeEscalation: false
Expand Down
3 changes: 2 additions & 1 deletion docs/rotation.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ spec:
hostNetwork: true
containers:
- name: azure-kms-provider
image: mcr.microsoft.com/oss/azure/kms/keyvault:v0.2.0
image: mcr.microsoft.com/oss/azure/kms/keyvault:v0.3.0
imagePullPolicy: IfNotPresent
args:
- --listen-addr=unix:///opt/azurekms2.socket # unix:///opt/azurekms.socket is used by the primary kms plugin pod. So use a different listen address here for the new kms plugin pod.
Expand All @@ -40,6 +40,7 @@ spec:
- --healthz-port=8788 # The port used here should be different than the one used by the primary kms plugin pod.
- --healthz-path=/healthz # [OPTIONAL] path for health check. Default is /healthz
- --healthz-timeout=20s # [OPTIONAL] RPC timeout for health check. Default is 20s
- --managed-hsm=false # [OPTIONAL] Use Azure Key Vault managed HSM. Default is false.
- -v=5
securityContext:
allowPrivilegeEscalation: false
Expand Down

0 comments on commit 06e3a58

Please sign in to comment.