mirror of
https://github.com/kubernetes-sigs/kustomize.git
synced 2026-06-10 16:42:51 +00:00
17 lines
417 B
YAML
17 lines
417 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: redis-http-cache
|
|
spec:
|
|
template:
|
|
spec:
|
|
containers:
|
|
- name: redis
|
|
image: redis:5-alpine
|
|
imagePullPolicy: Always
|
|
# see redis.io/topics/lru-cache for other policy options.
|
|
args: ["--maxmemory", "1gb", "--maxmemory-policy", "allkeys-lru"]
|
|
ports:
|
|
- name: http-cache-port
|
|
containerPort: 6379
|