iT邦幫忙

2019 iT 邦幫忙鐵人賽

DAY 26
0
Kubernetes

從Docker到Kubernetes-新手入門筆記系列 第 26

Day26 建立Persistent Volume Claim(上)

  • 分享至 

  • xImage
  •  

建立Persistent Volume Claim(PVC)

建立PVC沒有意外要透過設定檔

#postgres-pvc.yaml
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
  name: postgres-pvc
spec:
  accessModes:
      - ReadWriteOnce
  resources:
      requests:
          storage: 2Gi #要2GB

Access Mode有三種

  • ReadWriteOnce
    • 只能在同一個Node下讀寫
  • ReadOnlyMany
    • 多個Node可以唯讀
  • ReadWriteMany
    • 多個Node可以讀寫

透過kubectl建立PVC

kubectl apply -f postgres-pvc.yaml

在Postgres Deployment指定PVC

在spec下新增volumes屬性,並mount

apiVersion: apps/v1
kind: Deployment
metadata: 
  name: postgres-deployment
spec:
  replicas: 2
  selector:
    matchLabels:
      component: pgdb
  template:
    metadata:
      labels:
        component: pgdb
    spec:
      volumes:
        - name: pgdb-storage
          claimName: postgres-pvc # 要match volume的metadata name  
      containers:
        - name: postgres
          image: postgres
          ports:
            - containerPort: 5432
          volumeMounts:
            - name: pgdb-storage # 要跟上面的volumes下的name match
              mountPath: /var/lib/postgresql/data # 指定db儲存資料檔的路徑
              subPath: postgres  # 把container下的mountPath copy到對應到volume下的資料夾

套用設定檔
kubectl apply -f postgres-deployment.yaml

詳細PVC原理還在消化中,明天繼續


上一篇
Day25 Database Pod為什麼需要Volume
下一篇
Day27 建立Persistent Volume Claim(下)
系列文
從Docker到Kubernetes-新手入門筆記30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言