Skip to content

Commit 3d16db6

Browse files
feat: Allow to disable 'Install from VSIX' command using ConfigMap
Signed-off-by: Roman Nikitenko <[email protected]>
1 parent 35e1bb2 commit 3d16db6

File tree

1 file changed

+15
-2
lines changed

1 file changed

+15
-2
lines changed

modules/administration-guide/pages/editor-configurations-for-microsoft-visual-studio-code.adoc

+15-2
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,16 @@ The following sections are currently supported:
1616
* settings.json
1717
* extensions.json
1818
* product.json
19+
* configurations.json
1920

2021
The *settings.json* section contains various settings with which you can customize different parts of the Code - OSS editor. +
2122
The *extensions.json* section contains recommended extensions that are installed when a workspace is started. +
22-
The *product.json* section contains properties that you need to add to the editor's *product.json* file. If the property already exists, its value will be updated.
23+
The *product.json* section contains properties that you need to add to the editor's *product.json* file. If the property already exists, its value will be updated. +
24+
The *configurations.json* section contains properties that allows to configure Code - OSS editor. For example, `extensions.install-from-vsix-enabled` property can be used to disable `Install from VSIX` command.
2325

2426
.Procedure
2527

26-
* Add a new ConfigMap to the user's {orch-namespace}, define the `settings.json` and `extensions.json` sections, specify the settings you want to add, and the IDs of the extensions you want to install.
28+
* Add a new ConfigMap to the user's {orch-namespace}, define the supported sections, specify the properties you want to add.
2729
+
2830
====
2931
[source,yaml]
@@ -62,6 +64,10 @@ data:
6264
"<publisher2>.<extension2>"
6365
]
6466
}
67+
configurations.json: |
68+
{
69+
"extensions.install-from-vsix-enabled": false
70+
}
6571
immutable: false
6672
----
6773
====
@@ -73,6 +79,8 @@ immutable: false
7379
Make sure that the Configmap contains data in a valid JSON format.
7480
====
7581

82+
TIP: Consider adding the ConfigMap to the `eclipse-che` namespace. It allows to replicate the ConfigMap across all user namespaces while preventing modifications within user's namespaces. See xref:configuring-a-user-namespace.adoc[].
83+
7684
.Verification
7785
. Verify that settings defined in the ConfigMap are applied using one of the following methods:
7886
* Use `F1 → Preferences: Open Remote Settings` to check if the defined settings are applied.
@@ -86,3 +94,8 @@ Make sure that the Configmap contains data in a valid JSON format.
8694
* Open a terminal, run the command `cat /checode/entrypoint-logs.txt | grep "Node.js dir"` and copy the Visual Studio Code path.
8795
* Press `Ctrl + O`, paste the copied path and open *product.json* file.
8896
* Ensure that *product.json* file contains all the properties defined in the ConfigMap.
97+
98+
. Verify that `extensions.install-from-vsix-enabled` property defined in the ConfigMap is applied to the Code - OSS editor:
99+
* Open the Command Palette (use `F1`) to check that `Install from VSIX` command is not present in the list of commands.
100+
* Use `F1 → Open View → Extensions` to open the `Extensions` panel, then click `...` on the view (`Views and More Actions` tooltip) to check that `Install from VSIX` action is absent in the list of actions.
101+
* Go to the Explorer, find a file with the `vsix` extension (redhat.vscode-yaml-1.17.0.vsix, for example), open menu for that file. `Install from VSIX` action should be absent in the menu.

0 commit comments

Comments
 (0)