From e5639bec5e94f5f7a58b7b00504aa2e450ee74e4 Mon Sep 17 00:00:00 2001 From: Bryan Rosander Date: Wed, 28 Jun 2017 10:35:59 -0400 Subject: [PATCH] Update pvc.yml, README ./bootstrap/pvc.yml doesn't exist anymore and 10pvc.yml will get run on kubectl create -f ./ so that section of the README isn't needed. 10pvc.yml requests 200Gi while ./bootstrap/pv-template.yml specifies 100Mi, causing the pvc status to stay in pending indefinitely. --- 10pvc.yml | 6 +++--- README.md | 3 --- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/10pvc.yml b/10pvc.yml index 51de19c1..3efe4551 100644 --- a/10pvc.yml +++ b/10pvc.yml @@ -9,7 +9,7 @@ spec: - ReadWriteOnce resources: requests: - storage: 200Gi + storage: 100Mi selector: matchLabels: app: kafka @@ -25,7 +25,7 @@ spec: - ReadWriteOnce resources: requests: - storage: 200Gi + storage: 100Mi selector: matchLabels: app: kafka @@ -41,7 +41,7 @@ spec: - ReadWriteOnce resources: requests: - storage: 200Gi + storage: 100Mi selector: matchLabels: app: kafka diff --git a/README.md b/README.md index 492af465..d46605bf 100644 --- a/README.md +++ b/README.md @@ -17,9 +17,6 @@ Alternatively create [PV](http://kubernetes.io/docs/user-guide/persistent-volume ``` ./bootstrap/pv.sh -kubectl create -f ./bootstrap/pvc.yml -# check that claims are bound -kubectl get pvc ``` ## Set up Zookeeper