Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit fc8da20

Browse files
authored
0.8.3 (linkerd#808)
1 parent 749952c commit fc8da20

File tree

3 files changed

+18
-13
lines changed

3 files changed

+18
-13
lines changed

CHANGES.md

Lines changed: 14 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,19 @@
1-
## X.X.X
1+
## 0.8.3
22

3-
* Enable namer zkLeader in namerd
4-
* Add authentication support to marathon namer
5-
* Allow transformers to be applied to namers
6-
* Add Const and Replace transformers
7-
* Add `useHealthCheck` option to marathon namer
3+
* Make several namers available to namerd that were missing
4+
* Fix crash when viewing the dtab playground
5+
* Announce to all routable addresses when announcing 0.0.0.0
86
* Add experimental Apache Curator namer
9-
* Show transformers in the delegate UI
10-
* Add `labelSelector` option to k8s and k8s.external namers.
11-
* Add `hostNetwork` option to k8s transformers to support CNI environments
7+
* Marathon:
8+
* Add authentication support to marathon namer
9+
* Add `useHealthCheck` option to marathon namer
10+
* Transformers:
11+
* Allow transformers to be applied to namers
12+
* Add Const and Replace transformers
13+
* Show transformers in the delegate UI
14+
* Kubernetes:
15+
* Add `labelSelector` option to k8s and k8s.external namers
16+
* Add `hostNetwork` option to k8s transformers to support CNI environments
1217

1318
## 0.8.2
1419

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ For local testing convenience, we supply a config that routes to a single
264264
backend on _localhost:8080_.
265265

266266
```
267-
$ docker run -p 4140:4140 -p 9990:9990 -v /path/to/linkerd/linkerd/examples:/config buoyantio/linkerd:0.8.2-SNAPSHOT /config/static_namer.yaml
267+
$ docker run -p 4140:4140 -p 9990:9990 -v /path/to/linkerd/linkerd/examples:/config buoyantio/linkerd:0.8.3-SNAPSHOT /config/static_namer.yaml
268268
```
269269

270270
The list of image names may be changed with a command like:
@@ -299,14 +299,14 @@ The assembly script executes two commands serially:
299299

300300
```bash
301301
$ ./sbt namerd/dcos:assembly
302-
$ namerd/target/scala-2.11/namerd-0.8.2-SNAPSHOT-dcos-exec namerd/examples/zk.yaml
302+
$ namerd/target/scala-2.11/namerd-0.8.3-SNAPSHOT-dcos-exec namerd/examples/zk.yaml
303303
```
304304

305305
##### Run assembly script in docker #####
306306

307307
```bash
308308
$ ./sbt namerd/dcos:docker
309-
$ docker run -p 2181:2181 -p 4180:4180 -v /path/to/repo:/myapp -w /myapp buoyantio/namerd:0.8.2-SNAPSHOT-dcos namerd/examples/zk.yaml
309+
$ docker run -p 2181:2181 -p 4180:4180 -v /path/to/repo:/myapp -w /myapp buoyantio/namerd:0.8.3-SNAPSHOT-dcos namerd/examples/zk.yaml
310310
```
311311

312312
### Contributing ###

project/Base.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import scoverage.ScoverageSbtPlugin
1717
* Base project configuration.
1818
*/
1919
class Base extends Build {
20-
val headVersion = "0.8.2"
20+
val headVersion = "0.8.3"
2121

2222
object Git {
2323
def git(arg: String, args: String*) = Process("git" +: arg +: args)

0 commit comments

Comments
 (0)