Python 64.6%
TypeScript 33.7%
CSS 0.8%
1apiVersion: apps/v12kind: Deployment3metadata: { name: redis, namespace: uqo-chat }4spec:5 replicas: 16 selector: { matchLabels: { app: redis } }7 template:8 metadata: { labels: { app: redis } }9 spec:10 containers:11 - name: redis12 image: redis:7-alpine13 args: ["--maxmemory", "256mb", "--maxmemory-policy", "allkeys-lru"]14 ports: [{ containerPort: 6379 }]15