K8S - 集群中部署Redis

2022/2/11 19:12:54

本文主要是介绍K8S - 集群中部署Redis,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

apiVersion: v1
kind: Service
metadata:
  labels:
    app: redis
  name: redis-svc
  namespace: redis
spec:
  type: NodePort
  ports:
  - port: 6379
    protocol: TCP
    targetPort: 6379
  selector:
    app: redis

---
apiVersion: apps/v1
kind: Deployment
metadata:
  name: redis
  namespace: redis
spec:
  replicas: 1
  selector: 
    matchLabels:
      app: redis
  template:
    metadata:
      labels:
        app: redis
    spec:
      volumes:
      - name: redis-data
        hostPath: 
          path: /var/lib/container/redis_data
      - name: localtime
        hostPath: 
          path: /usr/share/zoneinfo/Asia/Shanghai
      containers:
      - name: redis
        image: redis
        ports:
        - containerPort: 6379
        volumeMounts:
        - name: redis-data
          mountPath: /storage/redis
        - name: localtime
          mountPath: /etc/localtime



这篇关于K8S - 集群中部署Redis的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程