Skip to content

Commit 8963468

Browse files
committed
🔄 Sync updated workspace manifests @ 46cd26df37079a05095feef5a2de2c6e67e30c03
1 parent c265091 commit 8963468

File tree

2 files changed

+55
-18
lines changed

2 files changed

+55
-18
lines changed

‎docs/manifests/dependencies.yaml

Lines changed: 11 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -67,14 +67,14 @@ dependencies:
6767
group: Ansible
6868
home: https://github.com/ansible-collections/community.docker
6969
license: GPL 3
70-
version: 4.6.2
70+
version: 4.7.0
7171

7272
community.general:
7373
datasource: galaxy-collection
7474
group: Ansible
7575
home: https://github.com/ansible-collections/community.general
7676
license: GPL 3
77-
version: 11.1.1
77+
version: 11.1.2
7878

7979
containerd.io:
8080
cmd: containerd --version
@@ -123,7 +123,6 @@ dependencies:
123123
license: MPL 2
124124
package: dnsutils
125125
version: 9.18.33
126-
track: false
127126

128127
dive:
129128
cmd: dive -v
@@ -182,7 +181,7 @@ dependencies:
182181
group: CLI Tools
183182
home: https://waterlan.home.xs4all.nl/dos2unix.html
184183
license: BSD 2
185-
version: 7.4.3
184+
version: 7.4.2
186185

187186
dumb-init:
188187
datasource: deb
@@ -228,7 +227,6 @@ dependencies:
228227
home: https://git-scm.com
229228
license: GPL 2
230229
version: 2.39.5
231-
track: false
232230

233231
gnupg:
234232
cmd: gpg --version
@@ -253,7 +251,7 @@ dependencies:
253251
home: https://github.com/golang/go
254252
license: BSD 3
255253
package: golang/go
256-
version: 1.24.5
254+
version: 1.24.6
257255

258256
gomodifytags:
259257
datasource: go
@@ -372,7 +370,7 @@ dependencies:
372370
home: https://github.com/stackrox/kube-linter
373371
license: Apache 2
374372
package: stackrox/kube-linter
375-
version: 0.7.4
373+
version: 0.7.5
376374

377375
kubectl:
378376
cmd: kubectl version --client=true
@@ -472,7 +470,7 @@ dependencies:
472470
home: https://github.com/npm/cli
473471
license: Artistic 2
474472
package: npm/cli
475-
version: 10.9.2
473+
version: 11.5.2
476474

477475
oc:
478476
cmd: oc version
@@ -530,7 +528,6 @@ dependencies:
530528
license: MIT
531529
package: python3-pip
532530
version: 23.0.1
533-
track: false
534531

535532
pnpm:
536533
cmd: pnpm --version
@@ -547,7 +544,7 @@ dependencies:
547544
home: https://github.com/pre-commit/pre-commit
548545
license: MIT
549546
package: pre-commit
550-
version: 4.2.0
547+
version: 4.3.0
551548

552549
ps:
553550
cmd: ps --version
@@ -557,15 +554,14 @@ dependencies:
557554
license: GPL 2
558555
package: procps
559556
version: 4.0.2
560-
track: false
561557

562558
pylint:
563559
cmd: pylint --version
564560
datasource: pypi
565561
group: Python
566562
home: https://github.com/pylint-dev/pylint
567563
license: GPL 2
568-
version: 3.3.7
564+
version: 3.3.8
569565

570566
Python:
571567
cmd: python3 --version
@@ -593,7 +589,7 @@ dependencies:
593589
group: Python
594590
home: https://github.com/astral-sh/ruff
595591
license: MIT
596-
version: 0.12.7
592+
version: 0.12.8
597593

598594
ShellCheck:
599595
cmd: shellcheck --version
@@ -651,7 +647,6 @@ dependencies:
651647
home: https://www.sudo.ws
652648
license: ISC
653649
version: 1.9.13
654-
track: false
655650

656651
taskfile:
657652
cmd: task --version
@@ -676,7 +671,7 @@ dependencies:
676671
group: Python
677672
home: https://github.com/astral-sh/uv
678673
license: MIT
679-
version: 0.8.4
674+
version: 0.8.8
680675

681676
venv:
682677
datasource: deb
@@ -692,7 +687,6 @@ dependencies:
692687
home: https://www.vim.org
693688
license: Vim
694689
version: "9.0"
695-
track: false
696690

697691
wget:
698692
cmd: wget --version
@@ -708,7 +702,7 @@ dependencies:
708702
home: https://github.com/kloudkit/ws-cli
709703
license: MIT
710704
package: github.com/kloudkit/ws-cli
711-
version: 0.0.29
705+
version: 0.0.30
712706

713707
yamllint:
714708
cmd: yamllint --version

‎docs/manifests/env.reference.yaml

Lines changed: 44 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,6 +234,35 @@ envs:
234234
since: 0.0.20
235235
description: Restores the Helm repo cache.
236236

237+
logging:
238+
properties:
239+
dir:
240+
type: string
241+
default: /var/log/workspace
242+
description: Base directory for all workspace logs.
243+
since: 0.0.21
244+
245+
error_file:
246+
type: string
247+
default: error.log
248+
description: Dedicated file that receives `stderr` lines.
249+
since: 0.0.21
250+
251+
level:
252+
type: string
253+
default: debug
254+
since: 0.0.22
255+
description: Suggested log level for Workspace helpers.
256+
long_description: |
257+
Not all tools honor this. Workspace scripts and shims map common
258+
levels: `debug`, `info`, `warn`, `error`.
259+
260+
main_file:
261+
type: string
262+
default: workspace.log
263+
description: Combined log file for `stdout` and `stderr`.
264+
since: 0.0.21
265+
237266
server:
238267
properties:
239268
port:
@@ -246,9 +275,12 @@ envs:
246275
type: string
247276
default: null
248277
since: 0.0.20
249-
example: ws.dev
278+
example: ws.dev local.ws.dev
250279
description: >-
251280
Domain suffix used to expose server's forwarded ports.
281+
longDescription: >-
282+
Accepts either a single domain suffix or multiple space delimited suffixes.
283+
> Multiple domain support was added in `v0.0.22`.
252284
reference: /editor/port-forwarding
253285

254286
root_dir:
@@ -292,6 +324,17 @@ envs:
292324
example: /etc/workspace/ssl/server.key
293325
description: Path or inline PEM for the private key.
294326

327+
startup:
328+
properties:
329+
fail_on_error:
330+
type: boolean
331+
default: false
332+
since: 0.0.21
333+
description: Fail fast if any startup script exits non-zero.
334+
long_description: |
335+
When `true`, the autoloader stops at the first failing startup
336+
or entrypoint and the container startup exits non-zero.
337+
295338
terminal:
296339
reference: /editor/terminal
297340
properties:

0 commit comments

Comments
 (0)