K8s/Storage: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
| Line 35: | Line 35: | ||
YML | YML | ||
</syntaxhighlight> | </syntaxhighlight> | ||
---- | |||
- | |||
<syntaxhighlight lang="bash"> | <syntaxhighlight lang="bash"> | ||
kubectl config get-contexts | kubectl config get-contexts | ||
| Line 89: | Line 64: | ||
|valign='top'| | |valign='top'| | ||
<syntaxhighlight lang="yaml" highlight="13-15" line> | |||
cat <<'YML'| kubectl apply -f - | |||
--- | |||
apiVersion: v1 | |||
kind: PersistentVolume | |||
metadata: | |||
name: postgresql-data-postgresql-0 | |||
spec: | |||
capacity: | |||
storage: 10Gi | |||
accessModes: | |||
- ReadWriteOnce | |||
persistentVolumeReclaimPolicy: Retain | |||
storageClassName: hostpath | |||
hostPath: | |||
path: /var/hostpath_pv/postgresql/data-postgresql-0 | |||
type: DirectoryOrCreate | |||
YML | |||
</syntaxhighlight> | |||
---- | |||
<syntaxhighlight lang="bash"> | <syntaxhighlight lang="bash"> | ||
kubectl config get-contexts | kubectl config get-contexts | ||
| Line 115: | Line 111: | ||
YML | YML | ||
</syntaxhighlight> | </syntaxhighlight> | ||
|} | |||
==Playground== | |||
{| | |||
| valign="top" | | |||
<syntaxhighlight lang="bash"> | |||
kubectl -n mariadb delete pvc --all | |||
kubectl -n mariadb delete pv --all | |||
</syntaxhighlight> | |||
| valign="top" | | |||
<syntaxhighlight lang="bash"> | |||
kubectl -n postgresql delete pvc --all | |||
kubectl -n postgresql delete pv --all | |||
</syntaxhighlight> | |||
| valign="top" | | |||
<syntaxhighlight lang="bash"> | |||
kubectl delete sc hostpath | |||
kubectl delete sc retain | |||
</syntaxhighlight> | |||
|- | |||
| colspan="3" | | |||
---- | |||
|- | |||
| valign="top" | | |||
<syntaxhighlight lang="bash"> | |||
kubectl -n mariadb delete pvc data-mariadb-0 | |||
kubectl delete pv mariadb-data-mariadb-0 | |||
</syntaxhighlight> | |||
| valign="top" | | |||
<syntaxhighlight lang="bash"> | |||
kubectl -n postgresql delete pvc data-postgresql-0 | |||
kubectl delete pv postgresql-data-postgresql-0 | |||
</syntaxhighlight> | |||
| valign="top" | | |||
<syntaxhighlight lang="bash"> | |||
</syntaxhighlight> | |||
|} | |} | ||
Revision as of 02:22, 12 June 2025
Storage » Class » Hostpath
cat <<'YML'| kubectl apply -f -
---
apiVersion: storage.k8s.io/v1
kind: StorageClass
metadata:
name: hostpath
provisioner: k8s.io/minikube-hostpath
reclaimPolicy: Retain
volumeBindingMode: Immediate
YML
Storage » Persistent Volume
cat <<'YML'| kubectl apply -f -
---
apiVersion: v1
kind: PersistentVolume
metadata:
name: mariadb-data-mariadb-0
spec:
capacity:
storage: 10Gi
accessModes:
- ReadWriteOnce
persistentVolumeReclaimPolicy: Retain
storageClassName: hostpath
hostPath:
path: /var/hostpath_pv/mariadb/data-mariadb-0
type: DirectoryOrCreate
YML
kubectl config get-contexts
kubectl get ns |grep mariadb
kubectl create namespace mariadb
cat << YML | kubectl apply -f -
---
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
labels:
app.kubernetes.io/name: mariadb
name: data-mariadb-0
namespace: mariadb
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 10Gi
storageClassName: hostpath
volumeName: mariadb-data-mariadb-0
YML
|
cat <<'YML'| kubectl apply -f -
---
apiVersion: v1
kind: PersistentVolume
metadata:
name: postgresql-data-postgresql-0
spec:
capacity:
storage: 10Gi
accessModes:
- ReadWriteOnce
persistentVolumeReclaimPolicy: Retain
storageClassName: hostpath
hostPath:
path: /var/hostpath_pv/postgresql/data-postgresql-0
type: DirectoryOrCreate
YML
kubectl config get-contexts
kubectl get ns |grep postgresql
kubectl create namespace postgresql
cat << YML | kubectl apply -f -
---
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
labels:
app.kubernetes.io/name: postgresql
name: data-postgresql-0
namespace: postgresql
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 10Gi
storageClassName: hostpath
volumeName: postgresql-data-postgresql-0
YML
|
Playground
kubectl -n mariadb delete pvc --all
kubectl -n mariadb delete pv --all
|
kubectl -n postgresql delete pvc --all
kubectl -n postgresql delete pv --all
|
kubectl delete sc hostpath
kubectl delete sc retain
|
|
| ||
kubectl -n mariadb delete pvc data-mariadb-0
kubectl delete pv mariadb-data-mariadb-0
|
kubectl -n postgresql delete pvc data-postgresql-0
kubectl delete pv postgresql-data-postgresql-0
|
|
References
|
| ||
|
| ||