- Deployment Profiles
- Preferences Values at Startup
- Locked Preference Fields
- Profile Format and Location
- Delete existing profiles
- By default use the “moby” container engine and disable Kubernetes
- Lock allowed images list to only allow “busybox” and “nginx”
- Verify registry settings
- Convert all current settings into a deployment profile
- By default use the “moby” container engine and disable Kubernetes
- Lock allowed images list to only allow “busybox” and “nginx”
- Verify the plist files
- Convert all current settings into a deployment profile
- By default use the “moby” container engine and disable Kubernetes
- Lock allowed images list to only allow “busybox” and “nginx”
- Known Issues and Limitations
Deployment Profiles
Deployment profiles provide 2 features:
- “Defaults” provide preference values that are applied on first run (or after a factory reset).
- “Locked” settings allow an administrator to pin preference values.
They can be specified both by an “admin” or by the “user”. If either the “defaults” or the “locked” settings exists in the “admin” context, then the “user” profile is ignored.
Preferences Values at Startup
Rancher Desktop settings are determined as follows:
- Load “admin” deployment profile (both “defaults” and “locked”)
- If neither of them exist then load “user” deployment profile (again both “defaults” and “locked”)
- Load saved preferences from
settings.json
file - If there are no saved settings, use the “defaults” profile loaded earlier instead
- Copy values from command-line arguments used to launch the app into settings
- If the settings are still completely empty, show the first-run dialog
- Fill any missing values from the builtin application defaults
- Copy values from the “locked” profile over the current settings
The user cannot modify any settings (via GUI or CLI) that have been locked by the profile.
Rancher Desktop will refuse to load the application if a profile exists, but cannot be parsed correctly.
Deployment profiles will not be modified or removed by Rancher Desktop. They will not be affected by a factory reset or uninstall.
The structure of the profile data matches the application settings:
`rdctl list-settings
{
...
"containerEngine": {
"allowedImages": {
"enabled": false,
"patterns": []
},
"name": "containerd"
},
...
}
The platform-specific documentation below will show how to create a deployment profile that changes the default container engine to moby
, disables Kubernetes, and locks down the list of allowed images to just busybox
and nginx
.
Locked Preference Fields
For versions 1.9
and later of Rancher Desktop, all preferences values can be locked when configuring a deployment profile. Depending on the directory or registry used for the lock file creation, users may need to have super user permissions for MacOS/Linux or execute from an admin shell for Windows in order to access priviliged paths. Once pinned, the various locked values will not be accessible from the application as seen in the UI examples below:
Details
Locked Fields UI Examples
- Windows
- macOS
- Linux
Profile Format and Location
Deployment profiles are stored in a platform-specific format and location.
- Windows
- macOS
- Linux
On Windows the deployment profiles are stored in the registry and can be distributed via group policy.
The locations for the profiles are:
HKEY_LOCAL_MACHINE\Software\Policies\Rancher Desktop\Defaults
HKEY_LOCAL_MACHINE\Software\Policies\Rancher Desktop\Locked
HKEY_CURRENT_USER\Software\Policies\Rancher Desktop\Defaults
HKEY_CURRENT_USER\Software\Policies\Rancher Desktop\Locked
The reg
tool can be used to create a profile manually. To create an “admin” profile it will have to be executed from an elevated shell.
Boolean values are stored in REG_DWORD
format, and lists in REG_MULTI_SZ
.
Delete existing profiles
reg delete "HKCU\Software\Policies\Rancher Desktop" /f
By default use the “moby” container engine and disable Kubernetes
reg add "HKCU\Software\Policies\Rancher Desktop\Defaults\containerEngine" /v name /t REG_SZ -d moby
reg add "HKCU\Software\Policies\Rancher Desktop\Defaults\kubernetes" /v enabled /t REG_DWORD -d 0
Lock allowed images list to only allow “busybox” and “nginx”
reg add "HKCU\Software\Policies\Rancher Desktop\Locked\containerEngine\allowedImages" /v enabled /t REG_DWORD -d 1
reg add "HKCU\Software\Policies\Rancher Desktop\Locked\containerEngine\allowedImages" /v patterns /t REG_MULTI_SZ -d busybox\0nginx
Verify registry settings
The profile can be exported into a *.reg
file
C:\>reg export "HKCU\Software\Policies\Rancher Desktop" rd.reg
The operation completed successfully.
This file can be used to distribute the profile to other machines. Note that the REG_MULTI_SZ
values are encoded in UTF16LE, so are not easily readable:
`HKCU\Software\Policies\Rancher Desktop
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\Policies\Rancher Desktop]
[HKEY_CURRENT_USER\Software\Policies\Rancher Desktop\Defaults]
[HKEY_CURRENT_USER\Software\Policies\Rancher Desktop\Defaults\containerEngine]
"name"="moby"
[HKEY_CURRENT_USER\Software\Policies\Rancher Desktop\Defaults\kubernetes]
"enabled"=dword:00000000
[HKEY_CURRENT_USER\Software\Policies\Rancher Desktop\Locked]
[HKEY_CURRENT_USER\Software\Policies\Rancher Desktop\Locked\containerEngine]
[HKEY_CURRENT_USER\Software\Policies\Rancher Desktop\Locked\containerEngine\allowedImages]
"enabled"=dword:00000001
"patterns"=hex(7):62,00,75,00,73,00,79,00,62,00,6f,00,78,00,00,00,6e,00,67,00,\
69,00,6e,00,78,00,00,00,00,00
On macOS the deployment profiles are stored as plist files.
The locations for the profiles are:
/Library/Preferences/io.rancherdesktop.profile.defaults.plist
/Library/Preferences/io.rancherdesktop.profile.locked.plist
~/Library/Preferences/io.rancherdesktop.profile.defaults.plist
~/Library/Preferences/io.rancherdesktop.profile.locked.plist
Convert all current settings into a deployment profile
A simple way to turn existing settings into a deployment profile is by converting them from JSON into the plist XML format, and then manually trimming it down in an editor.
rdctl list-settings | plutil -convert xml1 - -o ~/Library/Preferences/io.rancherdesktop.profile.defaults.plist
Alternatively the profile can be created manually, either with an editor, or with the plutil
tool. The defaults
utility doesn’t work because it cannot create nested keys.
By default use the “moby” container engine and disable Kubernetes
DEFAULTS=~/Library/Preferences/io.rancherdesktop.profile.defaults.plist
plutil -create xml1 "$DEFAULTS"
plutil -insert containerEngine -dictionary "$DEFAULTS"
plutil -insert containerEngine.name -string moby "$DEFAULTS"
plutil -insert kubernetes -dictionary "$DEFAULTS"
plutil -insert kubernetes.enabled -bool false "$DEFAULTS"
Lock allowed images list to only allow “busybox” and “nginx”
LOCKED=~/Library/Preferences/io.rancherdesktop.profile.locked.plist
plutil -create xml1 "$LOCKED"
plutil -insert containerEngine -dictionary "$LOCKED"
plutil -insert containerEngine.allowedImages -dictionary "$LOCKED"
plutil -insert containerEngine.allowedImages.enabled -bool true "$LOCKED"
plutil -insert containerEngine.allowedImages.patterns -array "$LOCKED"
plutil -insert containerEngine.allowedImages.patterns -string busybox -append "$LOCKED"
plutil -insert containerEngine.allowedImages.patterns -string nginx -append "$LOCKED"
Verify the plist files
`~/Library/Preferences/io.rancherdesktop.profile.defaults.plist
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>containerEngine</key>
<dict>
<key>name</key>
<string>moby</string>
</dict>
<key>kubernetes</key>
<dict>
<key>enabled</key>
<false/>
</dict>
</dict>
</plist>
`~/Library/Preferences/io.rancherdesktop.profile.locked.plist
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>containerEngine</key>
<dict>
<key>allowedImages</key>
<dict>
<key>enabled</key>
<true/>
<key>patterns</key>
<array>
<string>busybox</string>
<string>nginx</string>
</array>
</dict>
</dict>
</dict>
</plist>
On Linux the deployment profiles are stored in JSON format.
The locations for the profiles are:
/etc/rancher-desktop/defaults.json
/etc/rancher-desktop/locked.json
~/.config/rancher-desktop.defaults.json
~/.config/rancher-desktop.locked.json
Convert all current settings into a deployment profile
Since deployment profiles are stored in JSON format, the simplest way to create them is by saving the current application settings to the profile location, and then fine-tuning the profile with a text editor.
rdctl list-settings > ~/.config/rancher-desktop.defaults.json
By default use the “moby” container engine and disable Kubernetes
`~/.config/rancher-desktop.defaults.json
{
"containerEngine": {
"name": "moby"
},
"kubernetes": {
"enabled": false
}
}
Lock allowed images list to only allow “busybox” and “nginx”
`~/.config/rancher-desktop.locked.json
{
"containerEngine": {
"allowedImages": {
"enabled": true,
"patterns": ["busybox","nginx"]
}
}
}
Known Issues and Limitations
- You can set default values for
diagnostics.showMuted
(and on WindowsWSL.integrations
) via deployment profile, but currently can’t lock them.