Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Redis] new image & lower limits #51

Merged
merged 1 commit into from Feb 5, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions openshift/redis.yml
Expand Up @@ -38,18 +38,18 @@
spec:
containers:
- name: redis
image: registry.fedoraproject.org/f28/redis
image: registry.fedoraproject.org/f31/redis
ports:
- containerPort: 6379
volumeMounts:
- mountPath: "/var/lib/redis/data"
name: redis-pv
resources:
requests:
memory: "386Mi"
memory: "64Mi"
cpu: "100m"
limits:
memory: "386Mi"
memory: "128Mi"
cpu: "100m"
volumes:
- name: redis-pv
Expand Down