diff --git a/lesson-storage/gke-volpod.yml b/lesson-storage/gke-volpod.yml index d72b2c5..ed6ecfa 100644 --- a/lesson-storage/gke-volpod.yml +++ b/lesson-storage/gke-volpod.yml @@ -5,16 +5,16 @@ metadata: spec: volumes: - name: data - persistentVolumeClaim: - claimName: pvc1 -containers: - - name: ubuntu-ctr - image: ubuntu:latest - command: - - /bin/bash - - "-c" - - "sleep 60m" - imagePullPolicy: IfNotPresent - volumeMounts: - - mountpath: /data - name: data + persistentVolumeClaim: + claimName: pvc1 + containers: + - name: ubuntu-ctr + image: ubuntu:latest + command: + - /bin/bash + - "-c" + - "sleep 60m" + imagePullPolicy: IfNotPresent + volumeMounts: + - mountPath: /data + name: data