Skip to content

Commit

Permalink
prepare for release of OSS version 0.18.0 (#5643)
Browse files Browse the repository at this point in the history
fbshipit-source-id: 15d60a9
  • Loading branch information
9len authored and tbnbot committed Jul 3, 2018
1 parent 7acd7cd commit 083488d
Show file tree
Hide file tree
Showing 10 changed files with 18 additions and 18 deletions.
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ depends on your service discovery registry. To see the flags available for your
SD, run:

```console
docker run turbinelabs/rotor:0.17.2 rotor <platform> --help
docker run turbinelabs/rotor:0.18.0 rotor <platform> --help
```

where `<platform>` is one of: aws, ecs, consul, file, kubernetes, or marathon.
Expand Down Expand Up @@ -143,7 +143,7 @@ docker run -d \
-e "ROTOR_CMD=consul" \
-e "ROTOR_CONSUL_DC=<your datacenter>" \
-e "ROTOR_CONSUL_HOSTPORT=<consul ip address>:8500" \
turbinelabs/rotor:0.17.2
turbinelabs/rotor:0.18.0
```

To mark a `Service` for Rotor, add a tag called `tbn-cluster`. See
Expand All @@ -161,7 +161,7 @@ docker run -d \
-e 'ROTOR_AWS_VPC_ID=<your vpc id>' \
-e 'ROTOR_CMD=aws' \
-p 50000:50000 \
turbinelabs/rotor:0.17.2
turbinelabs/rotor:0.18.0
```

You need to tag instances with the service name and port it exposes
Expand Down Expand Up @@ -189,7 +189,7 @@ docker run -d \
-e 'ROTOR_AWS_AWS_SECRET_ACCESS_KEY=<your secret access key>' \
-e 'ROTOR_CMD=ecs' \
-p 50000:50000 \
turbinelabs/rotor:0.17.2
turbinelabs/rotor:0.18.0
```
You can run this inside or outside of ECS itself, as long as your
Envoy instances have access to the container on port 50000.
Expand Down Expand Up @@ -217,7 +217,7 @@ Rotor runs as an app inside DC/OS. Save this as `rotor.json`:
"container": {
"type": "DOCKER",
"docker": {
"image": "turbinelabs/rotor:0.17.2",
"image": "turbinelabs/rotor:0.18.0",
"forcePullImage": true
}
},
Expand Down Expand Up @@ -253,7 +253,7 @@ docker run -d \
-e 'ROTOR_FORMAT=yaml' \
-e 'ROTOR_FILE_FILENAME=/path/to/file/in/container' \
-p 50000:50000 \
turbinelabs/rotor:0.17.2
turbinelabs/rotor:0.18.0
```

The format defines clusters and the associated instances:
Expand Down Expand Up @@ -286,7 +286,7 @@ docker run -d \
-e 'ENVOY_XDS_PORT=50000' \
-p 9999:9999 \
-p 80:80 \
turbinelabs/envoy-simple:0.17.2
turbinelabs/envoy-simple:0.18.0
```

You may have to modify the host and port, depending on where you have Rotor
Expand Down Expand Up @@ -315,13 +315,13 @@ all your services.
## Configuration

Global flags for Rotor can be listed with
`docker run turbinelabs/rotor:0.17.2 rotor --help`. Global flags can be be
`docker run turbinelabs/rotor:0.18.0 rotor --help`. Global flags can be be
passed via upper-case, underscore-delimited environment variables prefixed
with `ROTOR_`, with all non-alpha characters converted to underscores. For
example, `--some-flag` becomes `ROTOR_SOME_FLAG`.

Per-platform flags can be listed with
`docker run turbinelabs/rotor:0.17.2 rotor <platform> --help`. Per-platform
`docker run turbinelabs/rotor:0.18.0 rotor <platform> --help`. Per-platform
flags can be similarly passed as environment variables, prefixed with
`ROTOR_<PLATFORM>`. For example `--some-flag` for the kubernetes platform
becomes `ROTOR_KUBERNETES_SOME_FLAG`.
Expand Down
2 changes: 1 addition & 1 deletion constants/constants.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ const DefaultClusterLabelName = "tbn_cluster"

// TbnPublicVersion is the current version of all Turbine Labs open-source
// software and artifacts.
const TbnPublicVersion = "0.17.2"
const TbnPublicVersion = "0.18.0"
2 changes: 1 addition & 1 deletion examples/consul/Dockerfile-envoysimple
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM turbinelabs/envoy-simple:0.17.2
FROM turbinelabs/envoy-simple:0.18.0

ENV ENVOY_XDS_HOST=rotor
ENV PORT=9999:9999
Expand Down
2 changes: 1 addition & 1 deletion examples/consul/Dockerfile-rotor
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM turbinelabs/rotor:0.17.2
FROM turbinelabs/rotor:0.18.0

ENV ROTOR_CMD=consul
ENV ROTOR_CONSUL_DC=dc1
Expand Down
2 changes: 1 addition & 1 deletion examples/helm/envoy-simple/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ maintainers: # (optional)
- name: Turbine Labs
email: [email protected]
url: https://turbinelabs.io
appVersion: 0.17.2
appVersion: 0.18.0
2 changes: 1 addition & 1 deletion examples/helm/envoy-simple/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
replicaCount: 1
restartPolicy: Never

image: turbinelabs/envoy-simple:0.17.2
image: turbinelabs/envoy-simple:0.18.0
imagePullPolicy: Always
2 changes: 1 addition & 1 deletion examples/helm/rotor/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ maintainers: # (optional)
email: [email protected]
url: https://turbinelabs.io
icon: https://raw.githubusercontent.com/turbinelabs/rotor/master/rotor.png
appVersion: 0.17.2
appVersion: 0.18.0
2 changes: 1 addition & 1 deletion examples/helm/rotor/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
replicaCount: 1
restartPolicy: Never

image: turbinelabs/rotor:0.17.2
image: turbinelabs/rotor:0.18.0
imagePullPolicy: Always
2 changes: 1 addition & 1 deletion examples/kubernetes/envoy-simple.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ spec:
run: envoy-simple
spec:
containers:
- image: turbinelabs/envoy-simple:0.17.2
- image: turbinelabs/envoy-simple:0.18.0
imagePullPolicy: Always
name: envoy-simple
ports:
Expand Down
2 changes: 1 addition & 1 deletion examples/kubernetes/kubernetes-rotor.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ spec:
spec:
serviceAccountName: rotor
containers:
- image: turbinelabs/rotor:0.17.2
- image: turbinelabs/rotor:0.18.0
imagePullPolicy: Always
name: rotor
ports:
Expand Down

0 comments on commit 083488d

Please sign in to comment.