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

Commit

Permalink
Release v0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanprodan committed Nov 3, 2019
1 parent fa1e710 commit e37dc8e
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
TAG?=latest
VERSION?=$(shell grep 'VERSION' cmd/appmesh-gateway/main.go | awk '{ print $$4 }' | tr -d '"' | head -n1)
VERSION?=$(shell grep 'const VERSION' cmd/appmesh-gateway/main.go | awk '{ print $$4 }' | tr -d '"' | head -n1)
NAME:=appmesh-gateway
DOCKER_REPOSITORY:=stefanprodan
DOCKER_IMAGE_NAME:=$(DOCKER_REPOSITORY)/$(NAME)
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
App Mesh Gateway is an edge L7 load balancer that exposes applications outside the mesh.

Features:
* allows binding a public domain to an internal mesh address
* allows binding a public or internal domain to a mesh address
* enables App Mesh client load-balancing for AWS NLB, ALB and Amazon API Gateway
* allows setting retries polices and timeouts for each service
* exports metrics in Prometheus format (request rate, error rate and latency)
* provides access logging for ingress traffic
Expand Down
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.1.0
appVersion: 0.3.0
version: 0.4.0
appVersion: 0.4.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.3.0
tag: v0.4.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.3.0"
const VERSION = "0.4.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.3.0
image: docker.io/stefanprodan/appmesh-gateway:v0.4.0
imagePullPolicy: IfNotPresent
securityContext:
readOnlyRootFilesystem: true
Expand Down

0 comments on commit e37dc8e

Please sign in to comment.