You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: k8s/mongo.md
+21-3Lines changed: 21 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -56,7 +56,25 @@
56
56
>rs.stepDown()
57
57
```
58
58
59
-
## 참고
59
+
#검토 TODO
60
60
61
-
- 특정 pod bash에 접근 : `kubectl exec --stdin --tty <pod name> -- /bin/bash`
62
-
- network util pod 생성 및 shell 로그인 `kubectl run my-shell --rm -i --tty --image praqma/network-multitool -- bash`
61
+
### Kind Persistent Volumes
62
+
63
+
- URL : <https://mauilion.dev/posts/kind-pvc/>
64
+
65
+
1.**default storage class**: I want there to be a built in storage class so that I can deploy applications that request persistent volume claims.
66
+
67
+
2.**pod restart**: If my pod restarts I want that pod to be scheduled such that the persistent volume claim is available to my pod. This ensures that if I have to restart and my pod will always come back with access to the same data.
68
+
69
+
3.**restore volumes**: I want to be able to bring up a kind cluster and regain access to a previously provisioned persistent volume claim.
70
+
71
+
4.**volume mobility**: I want to be able to schedule my pod to multiple nodes and have it access the same persistent volume claim. This requires that the peristent volume be made available to all nodes.
0 commit comments