20 lines
417 B
YAML
20 lines
417 B
YAML
|
apiVersion: apps/v1
|
||
|
kind: StatefulSet
|
||
|
metadata:
|
||
|
name: app
|
||
|
spec:
|
||
|
template:
|
||
|
spec:
|
||
|
restartPolicy: Always
|
||
|
containers:
|
||
|
- name: redis
|
||
|
image: redis:7.4.2-alpine3.21
|
||
|
ports:
|
||
|
- name: redis
|
||
|
containerPort: 6379
|
||
|
protocol: TCP
|
||
|
volumeMounts:
|
||
|
- mountPath: /data
|
||
|
name: redis-data
|
||
|
subPath: "data"
|