File tree Expand file tree Collapse file tree 1 file changed +19
-0
lines changed Expand file tree Collapse file tree 1 file changed +19
-0
lines changed Original file line number Diff line number Diff line change @@ -56,6 +56,25 @@ microk8s enable metrics-server
56
56
microk8s status --wait-ready
57
57
```
58
58
59
+ ** _ NOTE:_ **
60
+ PersistentVolumeClaims created by the ` hostpath storage provisioner ` are bound to the local node,
61
+ so it is impossible to move them to a different node. A hostpath volume can grow beyond the capacity set in
62
+ the volume claim manifest. For production environment it is recommended to use different storage for mongo and redis pvc,
63
+ for example openebs.
64
+
65
+ ``` bash
66
+ microk8s enable openebs
67
+ ```
68
+ Configuration file:
69
+ ``` bash
70
+ mongodb:
71
+ persistence:
72
+ storageClass: " openebs-hostpath"
73
+ redis:
74
+ global:
75
+ storageClass: " openebs-hostpath"
76
+ ```
77
+
59
78
Install the DNS server for microk8s and configure the forwarding DNS servers. Replace the IP addressed below (opendns) with
60
79
the allowed values for your network:
61
80
You can’t perform that action at this time.
0 commit comments