Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: about 2 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 (12 months ago)
- Default Branch: main
- Last Pushed: 2024-01-13T19:45:48.000Z (12 months ago)
- Last Synced: 2024-10-11T09:41:11.916Z (3 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 Image Version (latest semver)](https://img.shields.io/docker/v/dols3m/secure-cql-shell?sort=semver&style=for-the-badge&logo=docker)][docker-url]
[![Docker Pulls](https://img.shields.io/docker/pulls/dols3m/secure-cql-shell?style=for-the-badge&logo=docker)][docker-url]
[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg?style=for-the-badge)][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