-
Notifications
You must be signed in to change notification settings - Fork 172
docs: default extension in visual studio code #2819
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 11 commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
87dde96
docs: default extension in visual studio code
vitaliy-guliy 196dfd9
docs: default extension in visual studio code
vitaliy-guliy 9813b95
Update modules/administration-guide/pages/default-extensions-for-micr…
vitaliy-guliy 8733569
Update modules/administration-guide/pages/default-extensions-for-micr…
vitaliy-guliy 70d1e5a
Update modules/administration-guide/pages/default-extensions-for-micr…
vitaliy-guliy d65da71
Update modules/administration-guide/pages/default-extensions-for-micr…
vitaliy-guliy 42f8bea
Update modules/administration-guide/pages/default-extensions-for-micr…
vitaliy-guliy e4e3e30
Update modules/administration-guide/pages/default-extensions-for-micr…
vitaliy-guliy 692ffb8
Update modules/administration-guide/pages/default-extensions-for-micr…
vitaliy-guliy 159f974
Apply suggestions from code review
vitaliy-guliy 6750ee2
Update modules/administration-guide/pages/default-extensions-for-micr…
vitaliy-guliy 2c63de4
docs: default extension in visual studio code
vitaliy-guliy 414a57b
docs: highlight samples with border
vitaliy-guliy b18352c
Update modules/administration-guide/pages/default-extensions-for-micr…
vitaliy-guliy 5d0d01b
Apply suggestions from code review
vitaliy-guliy 723ef3e
Apply formatting
vitaliy-guliy 020c358
Apply suggestions from code review
vitaliy-guliy File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
147 changes: 147 additions & 0 deletions
147
...nistration-guide/pages/default-extensions-for-microsoft-visual-studio-code.adoc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,147 @@ | ||
| :_content-type: PROCEDURE | ||
| :description: Configure default extensions | ||
| :keywords: extensions, workspace | ||
| :navtitle: Configure default extensions | ||
| // :page-aliases: | ||
|
|
||
| [id="visual-studio-code-default-extensions"] | ||
| = Configure default extensions | ||
|
|
||
| Default extensions, like recommended extensions, allow you to work with a pre-installed set of extensions. | ||
|
|
||
| Recommended extension is specified by adding the extension identifier to the workspace file or to the *.vscode/extensions.json* file of your project. | ||
| When the editor starts, the recommended extension will be fetched from the extension marketplace and installed. | ||
|
|
||
| Default extensions are specified by putting the extension binary *.vsix* file path to the __DEFAULT_EXTENSIONS__ environment variable. | ||
| After startup, the editor checks for the environment variable, and if it is specified, takes the path to the extensions and installs it in the background without disturbing the user. | ||
|
|
||
| Recommended extensions from *.vscode/extensions.json* and default extensions from the __DEFAULT_EXTENSIONS__ environment variable both installs extensions on editor startup. Recommended extensions are useful when extensions are different per workspace and when the desired extensions are available in the plugin registry configured in {prod-short}. Default extensions described in this documentation are useful for installing .vsix extensions by default from the editor level. | ||
vitaliy-guliy marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| [NOTE] | ||
| ==== | ||
| It is possible to specify several extensions separated by semicolon. | ||
vitaliy-guliy marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| [source,yaml] | ||
| ---- | ||
| DEFAULT_EXTENSIONS='/projects/extension-1.vsix;/projects/extension-2.vsix' | ||
| ---- | ||
| ==== | ||
|
|
||
| Below you can find several examples how to add *.vsix* files to your workspace and how to define the DEFAULT_EXTENSIONS environment variable. | ||
vitaliy-guliy marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| .Procedure | ||
vitaliy-guliy marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| This documentation describes three different ways to embed default .vsix extensions for your workspace. | ||
vitaliy-guliy marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| * Put the extension binary to the source repository. | ||
vitaliy-guliy marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| + | ||
| The easiest way is to put the extension binary to the Git repository and define the environment variable in the devfile. | ||
vitaliy-guliy marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| If the *extension.vsix* file exists in the repository root, the __DEFAULT_EXTENSIONS__ could be set for a tooling container. | ||
vitaliy-guliy marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| Just specify it in your *.devfile.yaml* like below. | ||
vitaliy-guliy marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| + | ||
| [source,yaml] | ||
| ---- | ||
| schemaVersion: 2.3.0 | ||
| metadata: | ||
| generateName: example-project | ||
| components: | ||
| - name: tools | ||
| container: | ||
| image: quay.io/devfile/universal-developer-image:ubi8-latest | ||
| env: | ||
| - name: 'DEFAULT_EXTENSIONS' | ||
| value: '/projects/example-project/extension.vsix' | ||
| ---- | ||
|
|
||
| * Use the Devfile *postStart* event to fetch extension binaries from the network. | ||
vitaliy-guliy marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| + | ||
| It is possible to use *curl* or *wget* to download extensions to your workspace. | ||
vitaliy-guliy marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| For that you need to: | ||
| + | ||
| ** specify a devfile command to donload one or several extensions to your workpace | ||
| ** add a *postStart* event to run the command on workspace startup | ||
vitaliy-guliy marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| ** define the __DEFAULT_EXTENSIONS__ environment variable in the Devfile | ||
vitaliy-guliy marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
vitaliy-guliy marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| + | ||
| The following sample demonstrates what should be added to the devfile to add two extensions. | ||
vitaliy-guliy marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| + | ||
| [source,yaml] | ||
| ---- | ||
| schemaVersion: 2.3.0 | ||
| metadata: | ||
| generateName: example-project | ||
| components: | ||
| - name: tools | ||
| container: | ||
| image: quay.io/devfile/universal-developer-image:ubi8-latest | ||
| env: | ||
| - name: DEFAULT_EXTENSIONS | ||
| value: '/tmp/extension-1.vsix;/tmp/extension-2.vsix' | ||
|
|
||
| commands: | ||
| - id: add-default-extensions | ||
| exec: | ||
| # name of the tooling container | ||
| component: tools | ||
| # download several extensions using curl | ||
| commandLine: | | ||
| curl https://.../extension-1.vsix --location -o /tmp/extension-1.vsix | ||
| curl https://.../extension-2.vsix --location -o /tmp/extension-2.vsix | ||
vitaliy-guliy marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
|
||
| events: | ||
| postStart: | ||
| - add-default-extensions | ||
vitaliy-guliy marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| ---- | ||
|
|
||
| * Include the extensions' *.vsix* binaries in the *che-code* image. | ||
vitaliy-guliy marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| + | ||
| Having default extensions bundled in the editor image along with the __DEFAULT_EXTENSIONS__ environment variable defined in a ConfigMap, will allow you to apply the default extensions without the need to change the Devfile. | ||
vitaliy-guliy marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| + | ||
| Following steps will help you to add the extensions you need to the editor image. | ||
vitaliy-guliy marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| + | ||
| 1. Create a directory and place one or several *.vsix* extensions in this directory. | ||
| + | ||
| 2. Create a Dockerfile with following content. | ||
| + | ||
| [source,] | ||
| ---- | ||
| # inherit che-incubator/che-code:latest | ||
| FROM quay.io/che-incubator/che-code:latest | ||
| USER 0 | ||
|
|
||
| # copy all .vsix files to /default-extensions directory | ||
| RUN mkdir --mode=775 /default-extensions | ||
| COPY --chmod=755 *.vsix /default-extensions/ | ||
|
|
||
| # add instruction to the script to copy default extensions to the working container | ||
| RUN echo "cp -r /default-extensions /checode/" >> /entrypoint-init-container.sh | ||
| ---- | ||
| + | ||
| 3. Build the image and then push it to a registry. | ||
| + | ||
| [,console] | ||
| ---- | ||
| $ docker build -t yourname/che-code:next . | ||
| $ docker push yourname/che-code:next | ||
| ---- | ||
| + | ||
| 4. Add the new ConfigMap in the user's {orch-namespace}, define the __DEFAULT_EXTENSIONS__ environment variable and specify the absolute paths to the extensions. This ConfigMap sets the environment variable to all workspaces in the user's {orch-namespace}. | ||
| + | ||
| [source,yaml] | ||
| ---- | ||
| kind: ConfigMap | ||
| apiVersion: v1 | ||
| metadata: | ||
| name: vscode-default-extensions | ||
| labels: | ||
| controller.devfile.io/mount-to-devworkspace: 'true' | ||
| controller.devfile.io/watch-configmap: 'true' | ||
| annotations: | ||
| controller.devfile.io/mount-as: env | ||
| data: | ||
| DEFAULT_EXTENSIONS: '/checode/default-extensions/extension1.vsix;/checode/default-extensions/extension2.vsix' | ||
| ---- | ||
vitaliy-guliy marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| + | ||
| 5. Create a workspace using *yourname/che-code:next* image. | ||
vitaliy-guliy marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| First, open the dashboard and navigate to the *Create Workspace* tab on the left-hand side. | ||
vitaliy-guliy marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| Then, in the *Editor Selector* section expand the *Use an Editor Definition* dropdown and set the editor URI to the *Editor Image*. | ||
| Finally, create a workspace by clicking on any sample or by setting a git repository URL. | ||
vitaliy-guliy marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.