skip to Main Content

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

Redis – docker-compose ps does not show container when generated with multiple Compose configurations

I am trying to share Compose configurations between different projects using the same postgres database and redis server. For that, I have three different Compose configurations. ./docker-compose.base.yml ./apps/app1/docker-compose.extended.yml ./apps/app2/docker-compose.extended.yml I create and start the containers with the following command: docker-compose…

VIEW QUESTION
Back To Top
Search