From 193054848a52daf54f50a56984784aa20f5d8df5 Mon Sep 17 00:00:00 2001 From: silenceshell <me@ieevee.com> Date: Mon, 1 Jul 2019 20:29:27 +0800 Subject: [PATCH] should specify the namespace for pvc We should specify the namespace for pvc, or users who use kube-ns will get in trouble. (The pod has specified the namespace.) --- examples/pvc.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/examples/pvc.yaml b/examples/pvc.yaml index 956032c8..2ad01dc4 100644 --- a/examples/pvc.yaml +++ b/examples/pvc.yaml @@ -2,6 +2,7 @@ apiVersion: v1 kind: PersistentVolumeClaim metadata: name: local-path-pvc + namespace: default spec: accessModes: - ReadWriteOnce -- GitLab