From d8fefb1723be50b40b10a66a3defdf1ebed7cef8 Mon Sep 17 00:00:00 2001 From: abacus Date: Tue, 30 Jun 2026 15:35:29 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=20redis/redis.yaml?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- redis/redis.yaml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/redis/redis.yaml b/redis/redis.yaml index e69de29..3b3352a 100644 --- a/redis/redis.yaml +++ b/redis/redis.yaml @@ -0,0 +1,32 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + namespace: mall + name: redis +spec: + replicas: 1 + selector: + matchLabels: + mall: redis + template: + metadata: + namespace: mall + name: redis + labels: + mall: redis + spec: + imagePullSecrets: + - name: abahub-registry-secret + containers: + - name: redis + image: abahub.abacus.com.cn/base/redis:7.0.8 + imagePullPolicy: IfNotPresent + ports: + - containerPort: 6379 + resources: + requests: + cpu: 200m + memory: 300Mi + limits: + cpu: 200m + memory: 300Mi \ No newline at end of file