Skip to content

Commit de146de

Browse files
Merge pull request #453 from dlorenc/persist
Configure /data as a persisted directory.
2 parents f55fb58 + c2b00e4 commit de146de

File tree

2 files changed

+26
-0
lines changed

2 files changed

+26
-0
lines changed

README.md

+23
Original file line numberDiff line numberDiff line change
@@ -157,6 +157,29 @@ To determine the NodePort for your service, you can use a `kubectl` command like
157157
Minikube supports [PersistentVolumes](http://kubernetes.io/docs/user-guide/persistent-volumes/) of type `hostPath`.
158158
These PersistentVolumes are mapped to a directory inside the minikube VM.
159159

160+
The Minikube VM boots into a tmpfs, so most directories will not be persisted across reboots (`minikube stop`).
161+
However, Minikube is configured to persist files stored under the following host directories:
162+
163+
* `/data`
164+
* `/var/lib/localkube`
165+
* `/var/lib/docker`
166+
167+
Here is an example PersistentVolume config to persist data in the '/data' directory:
168+
169+
```yaml
170+
apiVersion: v1
171+
kind: PersistentVolume
172+
metadata:
173+
name: pv0001
174+
spec:
175+
accessModes:
176+
- ReadWriteOnce
177+
capacity:
178+
storage: 5Gi
179+
hostPath:
180+
path: /data/pv0001/
181+
```
182+
160183
## Private Container Registries
161184
162185
To access a private container registry, follow the steps on [this page](http://kubernetes.io/docs/user-guide/images/).

deploy/iso/bootlocal.sh

+3
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,6 @@ PARTNAME=`echo "$BOOT2DOCKER_DATA" | sed 's/.*\///'`
2020

2121
mkdir -p /mnt/$PARTNAME/var/lib/localkube
2222
ln -s /mnt/$PARTNAME/var/lib/localkube /var/lib/localkube
23+
24+
mkdir -p /mnt/$PARTNAME/data
25+
ln -s /mnt/$PARTNAME/data /data

0 commit comments

Comments
 (0)