Skip to content

Commit

Permalink
Merge pull request #56 from linkerd/siggy/020-release
Browse files Browse the repository at this point in the history
Updates for 0.2.0 release
  • Loading branch information
siggy authored Aug 15, 2018
2 parents 2bb1e24 + c6b4f2b commit 7fa71c9
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
## In the next release

## 0.2.0 2018-08-13

* Updated Prometheus to 2.3.2
* Updated Grafana to 5.2.2
* Modify Dockerfile and entrypoint script to leverage Grafana's dashboard and
datasource provisioning
* Update dashboards to leverage Grafana's latest features
* Kubernetes config updates
* Fix default value of `MARATHON_HOST`

## 0.1.8 2018-03-02

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ for more information see [Running Consul Agent in Client Mode](https://hub.docke
Boot `linkerd-viz` locally:

```bash
docker run -d --net=host -p 3000:3000 -p 9191:9191 buoyantio/linkerd-viz:0.1.8 consul
docker run -d --net=host -p 3000:3000 -p 9191:9191 buoyantio/linkerd-viz:0.2.0 consul
```

View dashboard
Expand Down
2 changes: 1 addition & 1 deletion dcos/linkerd-viz.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"container": {
"type": "DOCKER",
"docker": {
"image": "buoyantio/linkerd-viz:0.1.8",
"image": "buoyantio/linkerd-viz:0.2.0",
"forcePullImage": true,
"network": "HOST",
"privileged": true
Expand Down
2 changes: 1 addition & 1 deletion k8s/linkerd-viz.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ spec:
spec:
containers:
- name: linkerd-viz
image: buoyantio/linkerd-viz:0.1.8
image: buoyantio/linkerd-viz:0.2.0
args: ["k8s"]
imagePullPolicy: Always
env:
Expand Down
2 changes: 1 addition & 1 deletion linkerd-viz
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
PLATFORM="${1:-dcos}"

CONSUL_HOST="${CONSUL_HOST:-localhost}"
MARATHON_HOST="${MARATHON_HOST:-mesos.marathon}"
MARATHON_HOST="${MARATHON_HOST:-marathon.mesos}"
PUBLIC_PORT="${PUBLIC_PORT:-3000}"
STATS_PORT="${STATS_PORT:-9191}"
SCRAPE_INTERVAL="${SCRAPE_INTERVAL:-30s}"
Expand Down

0 comments on commit 7fa71c9

Please sign in to comment.