Skip to content

Commit e5639be

Browse files
committed
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.
1 parent 6a5fb08 commit e5639be

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

10pvc.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ spec:
99
- ReadWriteOnce
1010
resources:
1111
requests:
12-
storage: 200Gi
12+
storage: 100Mi
1313
selector:
1414
matchLabels:
1515
app: kafka
@@ -25,7 +25,7 @@ spec:
2525
- ReadWriteOnce
2626
resources:
2727
requests:
28-
storage: 200Gi
28+
storage: 100Mi
2929
selector:
3030
matchLabels:
3131
app: kafka
@@ -41,7 +41,7 @@ spec:
4141
- ReadWriteOnce
4242
resources:
4343
requests:
44-
storage: 200Gi
44+
storage: 100Mi
4545
selector:
4646
matchLabels:
4747
app: kafka

README.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,6 @@ Alternatively create [PV](http://kubernetes.io/docs/user-guide/persistent-volume
1717

1818
```
1919
./bootstrap/pv.sh
20-
kubectl create -f ./bootstrap/pvc.yml
21-
# check that claims are bound
22-
kubectl get pvc
2320
```
2421

2522
## Set up Zookeeper

0 commit comments

Comments
 (0)