https://github.com/dolsem/secure-cql-shell
Docker image for accessing CQL shell over SSL with client auth enabled
https://github.com/dolsem/secure-cql-shell
cassandra cqlsh docker kubernetes scylladb
Last synced: 4 months ago
JSON representation
Docker image for accessing CQL shell over SSL with client auth enabled
- Host: GitHub
- URL: https://github.com/dolsem/secure-cql-shell
- Owner: dolsem
- Created: 2024-01-13T15:42:33.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-01-13T19:45:48.000Z (over 1 year ago)
- Last Synced: 2025-01-08T22:09:25.928Z (6 months ago)
- Topics: cassandra, cqlsh, docker, kubernetes, scylladb
- Language: Python
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Secure CQL Shell
[][docker-url]
[][docker-url]
[][license-url]Docker image for accessing CQL shell over SSL with client auth enabled. Especially useful when running in Kubernetes or a private VPS.
## Usage
Run like this:
```bash
docker run -it -e cert=$(cat cert.pem) -e key=$(cat key.pem) dols3m/secure-cql-shell host port
```Use image tags with the `-scylla` suffix for the Scylla flavor of cqlsh:
```bash
docker run -it -e cert=$(cat cert.pem) -e key=$(cat key.pem) dols3m/secure-cql-shell:latest-scylla host port
```Or with kubectl:
```bash
kubectl run secure-cql-shell --rm -it --env cert=$(cat cert.pem) --env key=$(cat key.pem) --image dols3m/secure-cql-shell -- host port
```[docker-url]: https://hub.docker.com/r/dols3m/secure-cql-shell
[license-url]: https://opensource.org/licenses/MIT