DEV Community

Discussion on: Building an Exocortex: Mediawiki on a microk8s Kubernetes Cluster

Collapse
 
aathith_r profile image
AATHITH RAJENDRAN • Edited

" volumes:
- name: mediawiki-volume"

You are just mentioning the name of the volume. How does this work without mentioning the type of volume? Please reply as soon as possible.

Collapse
 
duplys profile image
Paul Duplys

Good question. After reading some of the Kubernetes documention, it seems that, by default, Kubernetes creates volumes of the emptyDir type. See here this Kubernetes documentation on emptyDir volume type and this Kubernetes documentation on volume storage.