K8s Lab 把当前仓库文档整理成一个可阅读的网页站点

Repository Reading Site

30-pvc-writer.yaml

manifests/08-storage/30-pvc-writer.yaml

Text Assetmanifests/08-storage/30-pvc-writer.yaml392 B2026年4月9日 18:49查看原始内容
apiVersion: v1
kind: Pod
metadata:
  name: pvc-writer
  namespace: storage-lab
  labels:
    lesson: storage
    role: writer
spec:
  nodeName: us590068728056
  containers:
  - name: main
    image: busybox:1.36
    command: ["sh", "-c", "sleep 3600"]
    volumeMounts:
    - name: data
      mountPath: /data
  volumes:
  - name: data
    persistentVolumeClaim:
      claimName: shared-data