Orange-OpenSource / towards5gs-helm

Helm charts for deploying 5G network services on Kubernetes
Other
167 stars 130 forks source link

Update Setup-free5gc-and-test-with-UERANSIM.md #17

Closed MrBurawski closed 2 years ago

MrBurawski commented 2 years ago

When creating the persistent volume user should specify the "namespace" in the metadata. Otherwise, the volume will not persist in the desired namespace. Had to learn the hard way because it was missing :D

raoufkh commented 2 years ago

Hello @MrBurawski

K8s persistent volumes are not namespaced resources. You can use this command to check that:

kubectl api-resources | grep pv

The 4th column specifies if it is a namespaced resource or not.

Regards, Abderaouf

MrBurawski commented 2 years ago

Hello @MrBurawski

K8s persistent volumes are not namespaced resources. You can use this command to check that:

kubectl api-resources | grep pv

The 4th column specifies if it is a namespaced resource or not.

Regards, Abderaouf

Thank You for Your reply, I understood that it is not necessary.