<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://lms.onnocenter.or.id/wiki/index.php?action=history&amp;feed=atom&amp;title=Minikube%3A_Mounting_filesystem</id>
	<title>Minikube: Mounting filesystem - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://lms.onnocenter.or.id/wiki/index.php?action=history&amp;feed=atom&amp;title=Minikube%3A_Mounting_filesystem"/>
	<link rel="alternate" type="text/html" href="https://lms.onnocenter.or.id/wiki/index.php?title=Minikube:_Mounting_filesystem&amp;action=history"/>
	<updated>2026-04-28T12:52:42Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.45.1</generator>
	<entry>
		<id>https://lms.onnocenter.or.id/wiki/index.php?title=Minikube:_Mounting_filesystem&amp;diff=68692&amp;oldid=prev</id>
		<title>Unknown user: Created page with &quot;Sumber: https://minikube.sigs.k8s.io/docs/handbook/mount/  Mounting filesystems How to mount a host directory into the VM 9P Mounts 9P mounts are flexible and work across all...&quot;</title>
		<link rel="alternate" type="text/html" href="https://lms.onnocenter.or.id/wiki/index.php?title=Minikube:_Mounting_filesystem&amp;diff=68692&amp;oldid=prev"/>
		<updated>2023-05-07T10:08:34Z</updated>

		<summary type="html">&lt;p&gt;Created page with &amp;quot;Sumber: https://minikube.sigs.k8s.io/docs/handbook/mount/  Mounting filesystems How to mount a host directory into the VM 9P Mounts 9P mounts are flexible and work across all...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;Sumber: https://minikube.sigs.k8s.io/docs/handbook/mount/&lt;br /&gt;
&lt;br /&gt;
Mounting filesystems&lt;br /&gt;
How to mount a host directory into the VM&lt;br /&gt;
9P Mounts&lt;br /&gt;
9P mounts are flexible and work across all hypervisors, but suffers from performance and reliability issues when used with large folders (&amp;gt;600 files). See Driver Mounts as an alternative.&lt;br /&gt;
&lt;br /&gt;
To mount a directory from the host into the guest using the mount subcommand:&lt;br /&gt;
&lt;br /&gt;
minikube mount &amp;lt;source directory&amp;gt;:&amp;lt;target directory&amp;gt;&lt;br /&gt;
For example, this would mount your home directory to appear as /host within the minikube VM:&lt;br /&gt;
&lt;br /&gt;
minikube mount $HOME:/host&lt;br /&gt;
This directory may then be referenced from a Kubernetes manifest, for example:&lt;br /&gt;
&lt;br /&gt;
{&lt;br /&gt;
  &amp;quot;apiVersion&amp;quot;: &amp;quot;v1&amp;quot;,&lt;br /&gt;
  &amp;quot;kind&amp;quot;: &amp;quot;Pod&amp;quot;,&lt;br /&gt;
  &amp;quot;metadata&amp;quot;: {&lt;br /&gt;
    &amp;quot;name&amp;quot;: &amp;quot;ubuntu&amp;quot;&lt;br /&gt;
  },&lt;br /&gt;
  &amp;quot;spec&amp;quot;: {&lt;br /&gt;
    &amp;quot;containers&amp;quot;: [&lt;br /&gt;
      {&lt;br /&gt;
        &amp;quot;name&amp;quot;: &amp;quot;ubuntu&amp;quot;,&lt;br /&gt;
        &amp;quot;image&amp;quot;: &amp;quot;ubuntu:18.04&amp;quot;,&lt;br /&gt;
        &amp;quot;args&amp;quot;: [&amp;quot;bash&amp;quot;],&lt;br /&gt;
        &amp;quot;stdin&amp;quot;: true,&lt;br /&gt;
        &amp;quot;stdinOnce&amp;quot;: true,&lt;br /&gt;
        &amp;quot;tty&amp;quot;: true,&lt;br /&gt;
        &amp;quot;workingDir&amp;quot;: &amp;quot;/host&amp;quot;,&lt;br /&gt;
        &amp;quot;volumeMounts&amp;quot;: [&lt;br /&gt;
          {&lt;br /&gt;
            &amp;quot;mountPath&amp;quot;: &amp;quot;/host&amp;quot;,&lt;br /&gt;
            &amp;quot;name&amp;quot;: &amp;quot;host-mount&amp;quot;&lt;br /&gt;
          }&lt;br /&gt;
        ]&lt;br /&gt;
      }&lt;br /&gt;
    ],&lt;br /&gt;
    &amp;quot;volumes&amp;quot;: [&lt;br /&gt;
      {&lt;br /&gt;
        &amp;quot;name&amp;quot;: &amp;quot;host-mount&amp;quot;,&lt;br /&gt;
        &amp;quot;hostPath&amp;quot;: {&lt;br /&gt;
          &amp;quot;path&amp;quot;: &amp;quot;/host&amp;quot;&lt;br /&gt;
        }&lt;br /&gt;
      }&lt;br /&gt;
    ]&lt;br /&gt;
  }&lt;br /&gt;
}&lt;br /&gt;
Driver mounts&lt;br /&gt;
Some hypervisors, have built-in host folder sharing. Driver mounts are reliable with good performance, but the paths are not predictable across operating systems or hypervisors:&lt;br /&gt;
&lt;br /&gt;
Driver	OS	HostFolder	VM&lt;br /&gt;
VirtualBox	Linux	/home	/hosthome&lt;br /&gt;
VirtualBox	macOS	/Users	/Users&lt;br /&gt;
VirtualBox	Windows	C://Users	/c/Users&lt;br /&gt;
VMware Fusion	macOS	/Users	/mnt/hgfs/Users&lt;br /&gt;
KVM	Linux	Unsupported	&lt;br /&gt;
HyperKit	macOS	Supported	&lt;br /&gt;
These mounts can be disabled by passing --disable-driver-mounts to minikube start.&lt;br /&gt;
&lt;br /&gt;
HyperKit mounts can use the following flags: --nfs-share=[]: Local folders to share with Guest via NFS mounts --nfs-shares-root=&amp;#039;/nfsshares&amp;#039;: Where to root the NFS Shares, defaults to /nfsshares&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Referensi==&lt;br /&gt;
&lt;br /&gt;
* https://minikube.sigs.k8s.io/docs/handbook/mount/&lt;br /&gt;
&lt;br /&gt;
==Pranala Menarik==&lt;br /&gt;
&lt;br /&gt;
* [[minikube]]&lt;/div&gt;</summary>
		<author><name>Unknown user</name></author>
	</entry>
</feed>