Skip to content

Commit eca694f

Browse files
authored
Update release v0.1.2 (#91)
1 parent e518022 commit eca694f

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -70,15 +70,15 @@ To pass configuration to `cql-proxy`, either command-line flags, environment var
7070
7171
```sh
7272
docker run -p 9042:9042 \
73-
--rm datastax/cql-proxy:v0.1.1 \
73+
--rm datastax/cql-proxy:v0.1.2 \
7474
--astra-token <astra-token> --astra-database-id <astra-datbase-id>
7575
```
7676
7777
### Using environment variables
7878
7979
```sh
8080
docker run -p 9042:9042 \
81-
--rm datastax/cql-proxy:v0.1.1 \
81+
--rm datastax/cql-proxy:v0.1.2 \
8282
-e ASTRA_TOKEN=<astra-token> -e ASTRA_DATABASE_ID=<astra-datbase-id>
8383
```
8484
@@ -185,25 +185,25 @@ There are three methods for using `cql-proxy`:
185185
186186
```sh
187187
docker run -p 9042:9042 \
188-
datastax/cql-proxy:v0.1.1 \
188+
datastax/cql-proxy:v0.1.2 \
189189
--astra-token <astra-token> --astra-database-id <astra-database-id>
190190
```
191191
192192
The `<astra-token>` can be generated using these [instructions]. The proxy also supports using the [Astra Secure Connect Bundle][bundle], but it requires mounting the bundle to a volume in the container:
193193
194194
```sh
195195
docker run -v <your-secure-connect-bundle.zip>:/tmp/scb.zip -p 9042:9042 \
196-
--rm datastax/cql-proxy:v0.1.1 \
196+
--rm datastax/cql-proxy:v0.1.2 \
197197
--astra-bundle /tmp/scb.zip --username <astra-client-id> --password <astra-client-secret>
198198
```
199199
- [Apache Cassandra][cassandra] cluster:
200200
201201
```sh
202202
docker run -p 9042:9042 \
203-
datastax/cql-proxy:v0.1.1 \
203+
datastax/cql-proxy:v0.1.2 \
204204
--contact-points <cluster node IPs or DNS names> [--username <username>] [--password <password>]
205205
```
206-
If you wish to have the docker image removed after you are done with it, add `--rm` before the image name `datastax/cql-proxy:v0.1.1`.
206+
If you wish to have the docker image removed after you are done with it, add `--rm` before the image name `datastax/cql-proxy:v0.1.2`.
207207
208208
### Use Kubernetes
209209

0 commit comments

Comments
 (0)