Skip to content

Commit

Permalink
Merge pull request #566 from ericcurtin/container-storage
Browse files Browse the repository at this point in the history
Add containers-storage to available options
  • Loading branch information
cgwalters authored May 28, 2024
2 parents 5aea3ca + 44683ff commit b801947
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs/src/man/bootc-install-to-disk.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ previous paragraph. See skopeo(1) for accepted formats.

**\--target-transport**=*TARGET_TRANSPORT* \[default: registry\]

: The transport; e.g. oci, oci-archive. Defaults to \`registry\`
: The transport; e.g. oci, oci-archive, containers-storage. Defaults to \`registry\`

**\--target-imgref**=*TARGET_IMGREF*

Expand Down
2 changes: 1 addition & 1 deletion docs/src/man/bootc-install-to-existing-root.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ previous paragraph. See skopeo(1) for accepted formats.

**\--target-transport**=*TARGET_TRANSPORT* \[default: registry\]

: The transport; e.g. oci, oci-archive. Defaults to \`registry\`
: The transport; e.g. oci, oci-archive, containers-storage. Defaults to \`registry\`

**\--target-imgref**=*TARGET_IMGREF*

Expand Down
2 changes: 1 addition & 1 deletion docs/src/man/bootc-install-to-filesystem.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ previous paragraph. See skopeo(1) for accepted formats.

**\--target-transport**=*TARGET_TRANSPORT* \[default: registry\]

: The transport; e.g. oci, oci-archive. Defaults to \`registry\`
: The transport; e.g. oci, oci-archive, containers-storage. Defaults to \`registry\`

**\--target-imgref**=*TARGET_IMGREF*

Expand Down
2 changes: 1 addition & 1 deletion docs/src/man/bootc-switch.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ updates via container image tags; for example,

**\--transport**=*TRANSPORT* \[default: registry\]

: The transport; e.g. oci, oci-archive. Defaults to \`registry\`
: The transport; e.g. oci, oci-archive, containers-storage. Defaults to \`registry\`

**\--enforce-container-sigpolicy**

Expand Down
2 changes: 1 addition & 1 deletion lib/src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ pub(crate) struct SwitchOpts {
#[clap(long)]
pub(crate) quiet: bool,

/// The transport; e.g. oci, oci-archive. Defaults to `registry`.
/// The transport; e.g. oci, oci-archive, containers-storage. Defaults to `registry`.
#[clap(long, default_value = "registry")]
pub(crate) transport: String,

Expand Down
2 changes: 1 addition & 1 deletion lib/src/install.rs
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ const RW_KARG: &str = "rw";
pub(crate) struct InstallTargetOpts {
// TODO: A size specifier which allocates free space for the root in *addition* to the base container image size
// pub(crate) root_additional_size: Option<String>
/// The transport; e.g. oci, oci-archive. Defaults to `registry`.
/// The transport; e.g. oci, oci-archive, containers-storage. Defaults to `registry`.
#[clap(long, default_value = "registry")]
#[serde(default)]
pub(crate) target_transport: String,
Expand Down

0 comments on commit b801947

Please sign in to comment.