You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: modules/administration-guide/pages/editor-configurations-for-microsoft-visual-studio-code.adoc
+15-2
Original file line number
Diff line number
Diff line change
@@ -16,14 +16,16 @@ The following sections are currently supported:
16
16
* settings.json
17
17
* extensions.json
18
18
* product.json
19
+
* configurations.json
19
20
20
21
The *settings.json* section contains various settings with which you can customize different parts of the Code - OSS editor. +
21
22
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.
23
25
24
26
.Procedure
25
27
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.
27
29
+
28
30
====
29
31
[source,yaml]
@@ -62,6 +64,10 @@ data:
62
64
"<publisher2>.<extension2>"
63
65
]
64
66
}
67
+
configurations.json: |
68
+
{
69
+
"extensions.install-from-vsix-enabled": false
70
+
}
65
71
immutable: false
66
72
----
67
73
====
@@ -73,6 +79,8 @@ immutable: false
73
79
Make sure that the Configmap contains data in a valid JSON format.
74
80
====
75
81
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
+
76
84
.Verification
77
85
. Verify that settings defined in the ConfigMap are applied using one of the following methods:
78
86
* 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.
86
94
* Open a terminal, run the command `cat /checode/entrypoint-logs.txt | grep "Node.js dir"` and copy the Visual Studio Code path.
87
95
* Press `Ctrl + O`, paste the copied path and open *product.json* file.
88
96
* 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