Skip to content
Draft
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/workflows/test_schema.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

steps:
- uses: actions/checkout@v4
- run: pip install pydantic pydantic-partial pyyaml yamlcore
- run: pip install pydantic pyyaml yamlcore
- run: python3 src/penguin/penguin_config/gen_docs.py docs > schema_doc.md
# Ensure generated schema_doc.md matches the one in the repo at docs/schema_doc.md
- run: |
Expand Down
3 changes: 1 addition & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ ARG BASE_IMAGE="${REGISTRY}/ubuntu:22.04"
ARG VPN_VERSION="1.0.25"
ARG BUSYBOX_VERSION="0.0.15"
ARG LINUX_VERSION="3.5.14-beta"
ARG IGLOO_DRIVER_VERSION="0.0.21"
ARG IGLOO_DRIVER_VERSION="0.0.25"
ARG LIBNVRAM_VERSION="0.0.23"
ARG CONSOLE_VERSION="1.0.7"
ARG GUESTHOPPER_VERSION="1.0.20"
Expand Down Expand Up @@ -243,7 +243,6 @@ RUN --mount=type=cache,target=/root/.cache/pip \
lz4 \
openai \
pydantic \
pydantic-partial \
pyelftools \
pyyaml \
pyvis \
Expand Down
16 changes: 5 additions & 11 deletions docs/schema_doc.md
Original file line number Diff line number Diff line change
Expand Up @@ -317,8 +317,7 @@ true

|||
|-|-|
|__Type__|string|
|__Patch merge behavior__|Concatenate strings separated by `' '`|
|__Type__|string or null|
|__Default__|`null`|

A list of additional QEMU command-line arguments to use when booting the guest
Expand Down Expand Up @@ -853,7 +852,7 @@ NVRAM values to add to the guest
|||
|-|-|
|__Type__|list of string|
|__Default__|`[]`|
|__Default__|`null`|

Names for guest network interfaces

Expand Down Expand Up @@ -889,7 +888,7 @@ Value of the U-Boot environment variable
|||
|-|-|
|__Type__|list of integer|
|__Default__|`[]`|
|__Default__|`null`|

Signals numbers to block within the guest. Supported values are 6 (SIGABRT), 9 (SIGKILL), 15 (SIGTERM), and 17 (SIGCHLD).

Expand Down Expand Up @@ -935,8 +934,7 @@ nvram_init

|||
|-|-|
|__Type__|string|
|__Patch merge behavior__|Concatenate strings separated by `'\n'`|
|__Type__|string or null|
|__Default__|`null`|

Custom source code for library functions to intercept and model
Expand Down Expand Up @@ -1243,7 +1241,7 @@ thumb

|||
|-|-|
|__Type__|string or null|
|__Type__|string|
|__Default__|`null`|


Expand All @@ -1266,10 +1264,6 @@ Whether to enable this plugin (default depends on plugin)

## `network` Network Configuration

|||
|-|-|
|__Default__|`null`|

Configuration for networks to attach to guest

### `network.external` Set up NAT for outgoing connections
Expand Down
Loading