skip to Main Content

How to secure RedisInsight?

I have a RedisInsight instance running in my Kubernetes cluster. I exposed it using Kong Ingress. My issue is that when I display it it doesn´t have any mechanismn of authentication. I already set the environemnt variables: RITRUSTEDORIGINS, RIAUTHPROMPT, RIAUTHTIMER.…

VIEW QUESTION

RedisInsight on Docker and Redis on Docker: Could not connect: Error 99 connecting to localhost:6379. Cannot assign requested address

Based on this tutorial https://www.youtube.com/watch?v=XrFeRwJjWHI , I tried running Redis in Docker. File docker-compose.yml version: "3.8" services: redis: image: redis volumes: - ./data:/data ports: - 6379:6379 docker pull redis docker-compose up docker-compose up -d docker container ls telnet localhost 6379…

VIEW QUESTION

redisinsights with persistent volume in kubernetes

I have the following .yaml file to install redisinsights in kubernetes, with persistence support. apiVersion: storage.k8s.io/v1 kind: StorageClass metadata: name: redisinsight-storage-class provisioner: 'kubernetes.io/gce-pd' parameters: type: 'pd-standard' --- apiVersion: v1 kind: PersistentVolumeClaim metadata: name: redisinsight-volume-claim spec: storageClassName: redisinsight-storage-class accessModes: - ReadWriteOnce…

VIEW QUESTION
Back To Top
Search