Skip to content

Instantly share code, notes, and snippets.

@noelbundick
Created December 10, 2018 22:59
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save noelbundick/ee224ce6714c32ce6907bb352ec68534 to your computer and use it in GitHub Desktop.
Save noelbundick/ee224ce6714c32ce6907bb352ec68534 to your computer and use it in GitHub Desktop.
azure-redis-cli

azure-redis-cli

redis-cli + stunnel for easy connectivity to Azure Cache for Redis

TLDR

docker run --rm -it acanthamoeba/azure-redis-cli <cache_name> <key>

Detailed Usage

# Swap these vars as needed
REDIS=noel
RG=redis

# Get key
KEY=$(az redis list-keys -n $REDIS -g $RG --query 'primaryKey' -o tsv)

# Launch redis-cli
docker run --rm -it acanthamoeba/azure-redis-cli $REDIS $KEY

Extra credit

Add this to your .bashrc/.zshrc

function azure-redis-cli() {
  REDIS=$1
  RG=$(az redis list --query '[?name==`tempvm`].resourceGroup' -o tsv)
  KEY=$(az redis list-keys -n $REDIS -g $RG --query 'primaryKey' -o tsv)

  # Launch redis-cli
  docker run --rm -it acanthamoeba/azure-redis-cli $REDIS $KEY
}

Then use via azure-redis-cli <cache_name> - no password required!

FROM redis:5-alpine
RUN apk add stunnel
COPY start.sh /start.sh
ENTRYPOINT ["/start.sh"]
MIT License
Copyright (c) 2018 Noel Bundick
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
#!/bin/sh
SERVER=$1
PASS=$2
tee /etc/stunnel/stunnel.conf <<EOF
[redis-cli]
client = yes
accept = 127.0.0.1:6380
connect = $SERVER.redis.cache.windows.net:6380
EOF
stunnel
redis-cli -p 6380 -a $PASS
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment