--- apiVersion: v1 data: redis.conf: |- protected-mode no daemonize no pidfile /var/run/redis.pid port 6379 tcp-backlog 511 timeout 0 tcp-keepalive 0 loglevel notice logfile "" databases 16 save 900 1 save 300 10 save 60 10000 stop-writes-on-bgsave-error yes rdbcompression yes rdbchecksum yes dbfilename dump.rdb dir ./ 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-entries 512 list-max-ziplist-value 64 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 kind: ConfigMap metadata: name: nextcloud-redis-config namespace: kube-public --- apiVersion: apps/v1 kind: StatefulSet metadata: name: nextcloud-redis namespace: kube-public spec: replicas: 1 serviceName: nextcloud-redis selector: matchLabels: app: nextcloud-redis template: metadata: labels: app: nextcloud-redis spec: containers: - name: nextcloud-redis #image: redis:latest image: harbor.uenpay.com/base/redis 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: nextcloud-redis-config items: - key: redis.conf path: redis.conf volumeClaimTemplates: - metadata: name: data spec: accessModes: - ReadWriteOnce resources: requests: storage: 30Gi --- apiVersion: v1 kind: Service metadata: name: nextcloud-redis namespace: kube-public labels: app: nextcloud-redis spec: selector: app: nextcloud-redis ports: - name: nextcloud-redis port: 6379 targetPort: 6379 --- apiVersion: v1 kind: Service metadata: name: nextcloud-redis-headless namespace: kube-public labels: app: nextcloud-redis spec: selector: app: nextcloud-redis ports: - name: nextcloud-redis port: 6379 targetPort: 6379 type: None