PHP Classes

File: iac/projects/redis-insights/resources/deployment.yaml

Recommend this page to a friend!
  Classes of Angel Campos   Atlas catalog   iac/projects/redis-insights/resources/deployment.yaml   Download  
File: iac/projects/redis-insights/resources/deployment.yaml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Atlas catalog
API to provide details of APIs of an organization
Author: By
Last change:
Date: 1 month ago
Size: 1,894 bytes
 

Contents

Class file image Download
apiVersion: apps/v1 kind: Deployment metadata: name: redis-insight labels: app.kubernetes.io/name: postgres app.kubernetes.io/version: v1.0 app: redis-insight tier: frontend spec: replicas: 1 selector: matchLabels: app: redis-insight template: metadata: labels: app: redis-insight spec: containers: - name: redis-insight env: - name: ALLOW_ANONYMOUS_USAGE_STATS value: no - name: RI_ACCEPT_TERMS_AND_CONDITIONS value: 'true' - name: RI_DATABASE_MANAGEMENT value: 'false' - name: RI_ENCRYPTION_KEY value: j8avWnevHBh2ylooVLLseyFfiRVwtmhVVoVvHXMuV3I= - name: RI_LOG_LEVEL value: warn - name: RI_REDIS_DB value: '0' - name: RI_REDIS_HOST value: redis - name: RI_REDIS_PORT value: '6379' - name: RI_REDIS_USERNAME value: default - name: RI_REDIS_PASSWORD value: '' - name: RI_REDIS_TLS value: 'false' envFrom: - secretRef: name: redis-insight-secret image: redis/redisinsight:latest imagePullPolicy: IfNotPresent livenessProbe: httpGet: path: /api/health/ port: http ports: - name: http containerPort: 5540 protocol: TCP readinessProbe: httpGet: path: /api/health/ port: http resources: requests: cpu: "100m" memory: "256Mi" limits: cpu: "500m" memory: "512Mi" startupProbe: tcpSocket: port: http