Files
fleet-examples/simple/redis-slave-deployment.yaml
Silvio Moioli e5a81ac5f4 Update Redis slave image
The old image required the `vsyscall=emulate` kernel parameter to work
correctly because of an old glibc version which is incompatible with
newer kernels.

This fails with Rancher Desktop for example.

Details at: https://github.com/rancher-sandbox/rancher-desktop/issues/2215
2022-05-16 13:54:05 +02:00

28 lines
506 B
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
name: redis-slave
spec:
selector:
matchLabels:
app: redis
role: slave
tier: backend
replicas: 2
template:
metadata:
labels:
app: redis
role: slave
tier: backend
spec:
containers:
- name: slave
image: gcr.io/google_samples/gb-redisslave:v2
resources:
requests:
cpu: 100m
memory: 100Mi
ports:
- containerPort: 6379