Skip to content

Commit 0f9a9ef

Browse files
authored
Merge pull request #3 from yokawasa/envoy-v1-api-support
v1.0.0 release
2 parents f050c8b + 302270d commit 0f9a9ef

File tree

4 files changed

+24
-2
lines changed

4 files changed

+24
-2
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# CHANGELOG - envoy-proxy-demos
2+
3+
## v2.0.0 (envoy api v2 based demo apps)
4+
5+
WIP
6+
7+
## v1.0.0 (envoy api v1 based demo apps)
8+
9+
Supported & tested envoy versions:
10+
11+
- [v1.12.3](https://www.envoyproxy.io/docs/envoy/latest/version_history/v1.12.3)
12+
- [v1.12.0](https://www.envoyproxy.io/docs/envoy/latest/version_history/v1.12.0)
13+
- [v1.9.0](https://www.envoyproxy.io/docs/envoy/latest/version_history/v1.9.0)
14+
- [v1.8.0](https://www.envoyproxy.io/docs/envoy/latest/version_history/v1.8.0)
15+
- [v1.7.0](https://www.envoyproxy.io/docs/envoy/latest/version_history/v1.7.0)
16+
- [v1.6.0](https://www.envoyproxy.io/docs/envoy/latest/version_history/v1.6.0)
17+
18+
> NOTE: From envoy api [v1.13.0](https://www.envoyproxy.io/docs/envoy/latest/version_history/v1.13.0), v1 envoy api(s) are no longer supported.

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,10 @@ This project is a fork of the [Envoy's example demo sets](https://github.com/env
1919
- [Jaeger Tracing](jaeger-tracing)
2020
- [Zipkin Tracing](zipkin-tracing)
2121

22+
## Demo versions and supported envoy versions
23+
- v2.0.0 (WIP): envoy api V2 based demo apps
24+
- v1.0.0: envoy api v1 based demo apps
25+
2226
## Contributing
2327

2428
Bug reports and pull requests are welcome on GitHub at https://github.com/yokawasa/envoy-proxy-demos

apps/Dockerfile-frontenvoy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM envoyproxy/envoy:latest
1+
FROM envoyproxy/envoy:v1.12.3
22

33
RUN apt-get update && apt-get -q install -y \
44
curl

apps/Dockerfile-service

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM envoyproxy/envoy-alpine:latest
1+
FROM envoyproxy/envoy-alpine:v1.12.3
22

33
RUN apk update && apk add python3 bash
44
RUN python3 --version && pip3 --version

0 commit comments

Comments
 (0)