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

Commit

Permalink
Add release badge
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanprodan committed Nov 2, 2019
1 parent 2d7b764 commit 8bc045c
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 9 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,11 @@ jobs:
- name: Go fmt
uses: stefanprodan/kube-tools@v1
with:
command: |
make go-fmt
command: make go-fmt
- name: Go test
uses: stefanprodan/kube-tools@v1
with:
command: |
make test
command: make test
- name: Validate kustomization
uses: stefanprodan/kube-tools@v1
with:
Expand Down
15 changes: 10 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
# appmesh-gateway
[![CI](https://github.com/stefanprodan/appmesh-gateway/workflows/build/badge.svg)](https://github.com/stefanprodan/appmesh-gateway/actions)
[![report](https://goreportcard.com/badge/github.com/stefanprodan/appmesh-gateway)](https://goreportcard.com/report/github.com/stefanprodan/appmesh-gateway)
[![release](https://img.shields.io/github/release/stefanprodan/appmesh-gateway/all.svg)](https://github.com/stefanprodan/appmesh-gateway/releases)

App Mesh Gateway is an edge load balancer that exposes applications outside the mesh.

The gateway is composed of:
* [Envoy](https://www.envoyproxy.io/) proxy
* Envoy data plane API (CDS/RDS/LDS)
* Kubernetes controller
* Envoy control plane xDS server (CDS/RDS/LDS)
* Kubernetes controller (service discovery)

An App Mesh virtual service can be exposed outside the mesh by annotating the object with:

Expand All @@ -30,7 +31,7 @@ curl -H 'Host: frontend.test' http://<gateway-host>/
The gateway registers/de-registers virtual services automatically as they come and go in the cluster.
### Install
## Install
Requirements:
* App Mesh CRDs, controller and inject [installed](https://github.com/aws/eks-charts#app-mesh)
Expand Down Expand Up @@ -59,7 +60,7 @@ Status:
Type: VirtualNodeActive
```

### Example
## Example

Deploy podinfo in the `test` namespace:

Expand Down Expand Up @@ -92,4 +93,8 @@ URL="http://$(kubectl -n appmesh-gateway get svc/appmesh-gateway -ojson | \
jq -r ".status.loadBalancer.ingress[].hostname")"
curl -vH 'Host: podinfo.internal' $URL
```
```

## Contributing

App Mesh Gateway is Apache 2.0 licensed and accepts contributions via GitHub pull requests.

0 comments on commit 8bc045c

Please sign in to comment.