You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
542 B
30 lines
542 B
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: redis-follower
|
|
labels:
|
|
app: redis
|
|
role: follower
|
|
tier: backend
|
|
spec:
|
|
replicas: 2
|
|
selector:
|
|
matchLabels:
|
|
app: redis
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: redis
|
|
role: follower
|
|
tier: backend
|
|
spec:
|
|
containers:
|
|
- name: follower
|
|
image: "docker.io/redis:6.0.5"
|
|
resources:
|
|
requests:
|
|
cpu: 100m
|
|
memory: 100Mi
|
|
ports:
|
|
- containerPort: 6379
|