Persistent Data¶
Overview¶
Kasm Workspaces allows administrators to configure folders to be mapped inside a Kasm each time it is provisioned. This is done by configuring the Volume Mappings field on the Kasm Image.
![]()
Configuring Volume Mappings on the Kasm Image¶
Volume Mappings may also be applied as a Group Setting . This may be useful if a certain set of users should have the mapping. When applied at the group level, all sessions created by members of this group will have the mapping applied.
![]()
Configuring Volume Mappings as a Group Setting¶
In this guide we will configure a folder on the host /var/kasm_user_share
to be mapped inside the Kasm Desktop
image to a folder named /share
. This effectively will act as a file share. All users’s who have access to provision
the image will have access to this folder.
Volume Mapping Config¶
- bind
The path inside the Kasm where the volume will be mounted.
- mode
rw
for Read-Write ,ro
for Read-Only.
- uid
The linux user id ownership that should be given to the volume. This permission is applied to the folder on the host. The uid must be
1000
in order for the Kasm container use to access the files.
- gid
The linux group id ownership that should be given to the volume. This permission is applied to the folder on the host. The gid must be
1000
in order for the Kasm container use to access the files.
- required
If
true
the volume must be accessible in order to provision the Kasm when requested. Iffalse
the system will allow the Kasm to be provision even if connectivity to the volume cannot be established. If not specified the default istrue
.
- timeout
When a Kasm is provisioned , the system will attempt to establish connectivity to the volume specified. The system will wait the specified number of seconds before deeming the connectivity has failed. If not specified the default is
10
seconds
Create Host Directory¶
On the Kasm Workspaces server, create the directory and change the ownership to user and group 1000.
Note
If Kasm is installed in a multi-server deployment, /var/kasm_user_share
in this example should reference a
shared data storage solution (e.g NFS, HDFS, GFS, SMB, SSHFS) to ensure data continuity. Administrators must ensure
this path is accessible from the hosts of all Agent services.
sudo mkdir /var/kasm_user_share
sudo chown 1000:1000 /var/kasm_user_share/
echo "test" > /var/kasm_user_share/test.txt
Configure Image Volume Mappings¶
Log into the Kasm UI as an administrator.
Select Images, and click edit (pencil) next to the Kasm Desktop image
In the Volume Mappings field, paste the following configuration and click Submit
{ "/var/kasm_user_share":{ "bind":"/share", "mode":"rw", "uid": 1000, "gid": 1000, "required": true } }
Note
Although this guide demonstrate mapping a single volume, multiple volume mappings can be defined.
{ "/var/kasm_user_share1":{ "bind":"/share1", "mode":"rw", "uid": 1000, "gid": 1000, "required": true }, "/var/kasm_user_share2":{ "bind":"/share2", "mode":"rw", "uid": 1000, "gid": 1000, "required": true } }