Skip to content
This repository has been archived by the owner on Aug 12, 2020. It is now read-only.

Commit

Permalink
Release v0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanprodan committed Nov 4, 2019
1 parent 323a86a commit 2c817dd
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ version-set:
current="$(VERSION)" && \
sed -i '' "s/$$current/$$next/g" cmd/appmesh-gateway/main.go && \
sed -i '' "s/tag: v$$current/tag: v$$next/g" chart/appmesh-gateway/values.yaml && \
sed -i '' "s/version: $$current/version: $$next/g" chart/appmesh-gateway/Chart.yaml && \
sed -i '' "s/appVersion: $$current/appVersion: $$next/g" chart/appmesh-gateway/Chart.yaml && \
sed -i '' "s/appmesh-gateway:v$$current/appmesh-gateway:v$$next/g" kustomize/base/appmesh-gateway/deployment.yaml && \
echo "Version $$next set in code, chart and kustomization"
4 changes: 2 additions & 2 deletions chart/appmesh-gateway/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
apiVersion: v1
name: appmesh-gateway
description: App Mesh Gateway Helm chart for Kubernetes
version: 0.4.0
appVersion: 0.4.0
version: 0.5.0
appVersion: 0.5.0
home: https://github.com/stefanprodan/appmesh-gateway
icon: https://raw.githubusercontent.com/aws/eks-charts/master/docs/logo/aws.png
sources:
Expand Down
2 changes: 1 addition & 1 deletion chart/appmesh-gateway/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ proxy:
controller:
image:
repository: docker.io/stefanprodan/appmesh-gateway
tag: v0.4.0
tag: v0.5.0
pullPolicy: IfNotPresent

nameOverride: ""
Expand Down
2 changes: 1 addition & 1 deletion cmd/appmesh-gateway/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import (
)

// VERSION semantic versioning format
const VERSION = "0.4.0"
const VERSION = "0.5.0"

var (
masterURL string
Expand Down
2 changes: 1 addition & 1 deletion kustomize/base/appmesh-gateway/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ spec:
- name: appmesh-gateway-config
mountPath: /config
- name: controller
image: docker.io/stefanprodan/appmesh-gateway:v0.4.0
image: docker.io/stefanprodan/appmesh-gateway:v0.5.0
imagePullPolicy: IfNotPresent
securityContext:
readOnlyRootFilesystem: true
Expand Down

0 comments on commit 2c817dd

Please sign in to comment.