apiVersion: v1 kind: ConfigMap metadata: name: archery-redis-config namespace: tools data: redis.conf: | daemonize no bind 0.0.0.0 port 6379 tcp-backlog 511 timeout 0 tcp-keepalive 300 pidfile /data/redis-server.pid logfile /data/redis.log loglevel notice databases 16 always-show-logo yes save 900 1 save 300 10 save 60 10000 stop-writes-on-bgsave-error yes rdbcompression yes rdbchecksum yes dbfilename dump.rdb dir /data slave-serve-stale-data yes slave-read-only yes repl-diskless-sync no repl-diskless-sync-delay 5 repl-disable-tcp-nodelay no slave-priority 100 appendonly yes appendfilename "appendonly.aof" appendfsync everysec no-appendfsync-on-rewrite no auto-aof-rewrite-percentage 100 auto-aof-rewrite-min-size 64mb aof-load-truncated yes lua-time-limit 5000 slowlog-log-slower-than 10000 slowlog-max-len 128 latency-monitor-threshold 0 notify-keyspace-events "" hash-max-ziplist-entries 512 hash-max-ziplist-value 64 list-max-ziplist-size -2 list-compress-depth 0 set-max-intset-entries 512 zset-max-ziplist-entries 128 zset-max-ziplist-value 64 hll-sparse-max-bytes 3000 activerehashing yes client-output-buffer-limit normal 0 0 0 client-output-buffer-limit slave 256mb 64mb 60 client-output-buffer-limit pubsub 32mb 8mb 60 hz 10 aof-rewrite-incremental-fsync yes --- apiVersion: v1 kind: Service metadata: name: archery-redis namespace: tools labels: app: archery-redis spec: selector: app: archery-redis ports: - name: archery-redis port: 6379 targetPort: 6379 --- apiVersion: apps/v1 kind: StatefulSet metadata: name: archery-redis namespace: tools spec: replicas: 1 serviceName: archery-redis selector: matchLabels: app: archery-redis template: metadata: labels: app: archery-redis spec: containers: - name: archery-redis #image: redis:latest #image: harbor.uenpay.com/base/redis:6.2.5 image: registry.cn-hangzhou.aliyuncs.com/zhengyu1992/redis:6.2.5 imagePullPolicy: IfNotPresent command: ["redis-server", "/etc/redis/redis.conf"] env: - name: TZ value: "Asia/Shanghai" volumeMounts: - name: config mountPath: /etc/redis/redis.conf subPath: redis.conf - name: data mountPath: /data volumes: - name: timezone hostPath: path: /usr/share/zoneinfo/Asia/Shanghai - name: config configMap: name: archery-redis-config items: - key: redis.conf path: redis.conf volumeClaimTemplates: - metadata: name: data spec: accessModes: - ReadWriteOnce storageClassName: cephrbd-sc resources: requests: storage: 30Gi