Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions charts/workspace/scripts/env.reference.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ envs:
additional_gpg_keys:
type: string
default: null
delimiter: " "
reference: /tools/apt
example: >-
name1:keys.example.com/key1.asc name2:keys.example.com/key2.gpg
Expand All @@ -37,6 +38,7 @@ envs:
additional_insecure_gpg_keys:
type: string
default: null
delimiter: " "
since: 0.1.0
reference: /tools/apt
example: >-
Expand All @@ -57,6 +59,7 @@ envs:
additional_packages:
type: string
default: null
delimiter: " "
reference: /tools/apt
example: cmake nano
description: Additional APT packages installed during startup.
Expand All @@ -66,6 +69,7 @@ envs:
additional_repos:
type: string
default: null
delimiter: ;
reference: /tools/apt
example: >-
deb http://one.test trixie main; deb http://two.test trixie main
Expand All @@ -79,6 +83,7 @@ envs:
disable_repos:
type: string
default: null
delimiter: " "
reference: /tools/apt
example: debian additional
description: Disables specified APT repositories or all repositories.
Expand All @@ -93,6 +98,7 @@ envs:
disable_restrictions:
type: string
default: null
delimiter: " "
since: 0.2.2
reference: /tools/apt
example: x11 mail
Expand Down Expand Up @@ -207,6 +213,7 @@ envs:
additional_cert_endpoints:
type: string
default: null
delimiter: " "
since: 0.0.20
reference: /settings/enterprise-ca
example: https://corp.com/ca.pem https://alt.com/root.crt
Expand All @@ -219,6 +226,7 @@ envs:
additional_cert_insecure_endpoints:
type: string
default: null
delimiter: " "
since: 0.0.22
reference: /settings/enterprise-ca
example: http://corp.com/ca.pem https://untrusted.com/root.crt
Expand Down Expand Up @@ -296,6 +304,7 @@ envs:
additional_vs_extensions:
type: string
default: null
delimiter: " "
since: 0.0.20
example: dbaeumer.vscode-eslint esbenp.prettier-vscode
description: Installs these Marketplace extension IDs at startup.
Expand Down Expand Up @@ -378,6 +387,7 @@ envs:
trusted_domains:
type: string
default: null
delimiter: ","
since: 0.2.0
example: >-
https://github.com,https://stackoverflow.com
Expand All @@ -400,6 +410,7 @@ envs:
reference: /editor/features
type: string
default: null
delimiter: " "
since: 0.0.20
example: dotnet jupyter
description: Installs additional feature at startup.
Expand Down Expand Up @@ -500,6 +511,7 @@ envs:
collectors:
type: string
default: "*"
delimiter: ","
since: 0.1.2
example: workspace,container.cpu,gpu
description: Comma-separated list of metric collectors to enable.
Expand Down Expand Up @@ -616,6 +628,7 @@ envs:
proxy_domain:
type: string
default: null
delimiter: " "
since: 0.0.20
example: ws.dev local.ws.dev
description: >-
Expand Down Expand Up @@ -728,9 +741,13 @@ envs:
additional_plugins:
type: string
default: null
delimiter: " "
since: 0.0.20
example: php
description: Loads additional `oh-my-zsh` plugins.
longDescription: |
Accepts a **space-delimited** list of plugin names appended to the
built-in `oh-my-zsh` plugin set.

fzf_history_args:
type: string
Expand Down Expand Up @@ -794,8 +811,13 @@ envs:
1password auto-venv docker encode64 fzf-history git
golang helm kubectl npm python pip
ssh-agent yarn zsh-autosuggestions
delimiter: " "
example: kubectl npm python pip
description: Enables built-in `oh-my-zsh` plugins.
longDescription: |
Accepts a **space-delimited** list of plugin names. Replaces the
default plugin set; use `WS_ZSH_ADDITIONAL_PLUGINS` to extend it
instead.


deprecated:
Expand Down
Loading