Skip to content

Commit 1a59021

Browse files
author
thomhurst
committed
chore: Update podman CLI options
1 parent 124d107 commit 1a59021

9 files changed

+4
-52
lines changed

src/ModularPipelines.Podman/AssemblyInfo.Generated.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
using System.Reflection;
77

88
[assembly: AssemblyMetadata("ModularPipelines.OptionsGenerator.Tool", "podman")]
9-
[assembly: AssemblyMetadata("ModularPipelines.OptionsGenerator.GeneratedAt", "2026-02-15T03:12:09.6705108Z")]
9+
[assembly: AssemblyMetadata("ModularPipelines.OptionsGenerator.GeneratedAt", "2026-03-08T03:09:10.9504154Z")]

src/ModularPipelines.Podman/Options/PodmanComposeBuildOptions.Generated.cs

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -60,12 +60,6 @@ public record PodmanComposeBuildOptions : PodmanOptions
6060
[CliFlag("--print")]
6161
public bool? Print { get; set; }
6262

63-
/// <summary>
64-
/// Add a provenance attestation
65-
/// </summary>
66-
[CliOption("--provenance", Format = OptionFormat.EqualsSeparated)]
67-
public string? Provenance { get; set; }
68-
6963
/// <summary>
7064
/// Always attempt to pull a newer version of the image
7165
/// </summary>
@@ -79,17 +73,11 @@ public record PodmanComposeBuildOptions : PodmanOptions
7973
public bool? Push { get; set; }
8074

8175
/// <summary>
82-
/// Suppress the build output
76+
/// Don't print anything to STDOUT
8377
/// </summary>
8478
[CliFlag("--quiet", ShortForm = "-q")]
8579
public bool? Quiet { get; set; }
8680

87-
/// <summary>
88-
/// Add a SBOM attestation
89-
/// </summary>
90-
[CliOption("--sbom", Format = OptionFormat.EqualsSeparated)]
91-
public string? Sbom { get; set; }
92-
9381
/// <summary>
9482
/// Set SSH authentications used when building service images. (use 'default' for using your default SSH Agent)
9583
/// </summary>

src/ModularPipelines.Podman/Options/PodmanComposeConfigOptions.Generated.cs

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -54,12 +54,6 @@ public record PodmanComposeConfigOptions : PodmanOptions
5454
[CliFlag("--lock-image-digests")]
5555
public bool? LockImageDigests { get; set; }
5656

57-
/// <summary>
58-
/// Print the model names, one per line.
59-
/// </summary>
60-
[CliFlag("--models")]
61-
public bool? Models { get; set; }
62-
6357
/// <summary>
6458
/// Print the network names, one per line.
6559
/// </summary>

src/ModularPipelines.Podman/Options/PodmanComposeEventsOptions.Generated.cs

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -30,18 +30,6 @@ public record PodmanComposeEventsOptions : PodmanOptions
3030
[CliFlag("--json")]
3131
public bool? Json { get; set; }
3232

33-
/// <summary>
34-
/// Show all events created since timestamp
35-
/// </summary>
36-
[CliOption("--since", Format = OptionFormat.EqualsSeparated)]
37-
public string? Since { get; set; }
38-
39-
/// <summary>
40-
/// Stream events until this timestamp
41-
/// </summary>
42-
[CliOption("--until", Format = OptionFormat.EqualsSeparated)]
43-
public string? Until { get; set; }
44-
4533
[CliArgument(0, Placement = ArgumentPlacement.BeforeOptions)]
4634
public string? Options { get; set; }
4735

src/ModularPipelines.Podman/Options/PodmanComposeExecOptions.Generated.cs

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,6 @@ public record PodmanComposeExecOptions : PodmanOptions
4242
[CliOption("--index", Format = OptionFormat.EqualsSeparated)]
4343
public int? Index { get; set; }
4444

45-
/// <summary>
46-
/// Disable pseudo-TTY allocation. By default 'docker compose exec' allocates a TTY. (default true)
47-
/// </summary>
48-
[CliFlag("--no-tty", ShortForm = "-T")]
49-
public bool? NoTty { get; set; }
50-
5145
/// <summary>
5246
/// Give extended privileges to the process
5347
/// </summary>

src/ModularPipelines.Podman/Options/PodmanComposePublishOptions.Generated.cs

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,6 @@ namespace ModularPipelines.Podman.Options;
1818
[CliSubCommand("compose", "publish")]
1919
public record PodmanComposePublishOptions : PodmanOptions
2020
{
21-
/// <summary>
22-
/// Published compose application (includes referenced images)
23-
/// </summary>
24-
[CliFlag("--app")]
25-
public bool? App { get; set; }
26-
2721
/// <summary>
2822
/// Execute command in dry run mode
2923
/// </summary>

src/ModularPipelines.Podman/Options/PodmanComposeUpOptions.Generated.cs

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -132,12 +132,6 @@ public record PodmanComposeUpOptions : PodmanOptions
132132
[CliOption("--pull", Format = OptionFormat.EqualsSeparated)]
133133
public string? Pull { get; set; }
134134

135-
/// <summary>
136-
/// Suppress the build output
137-
/// </summary>
138-
[CliFlag("--quiet-build")]
139-
public bool? QuietBuild { get; set; }
140-
141135
/// <summary>
142136
/// Pull without printing progress information
143137
/// </summary>

src/ModularPipelines.Podman/Options/PodmanImageListOptions.Generated.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ public record PodmanImageListOptions : PodmanOptions
6767
public bool? Quiet { get; set; }
6868

6969
/// <summary>
70-
/// Sort by size, tag, created, id, repository (default "created")
70+
/// Sort by repository, size, tag, created, id (default "created")
7171
/// </summary>
7272
[CliOption("--sort", Format = OptionFormat.EqualsSeparated)]
7373
public string? Sort { get; set; }

src/ModularPipelines.Podman/Options/PodmanImagesOptions.Generated.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ public record PodmanImagesOptions : PodmanOptions
6767
public bool? Quiet { get; set; }
6868

6969
/// <summary>
70-
/// Sort by tag, created, id, repository, size (default "created")
70+
/// Sort by created, id, repository, size, tag (default "created")
7171
/// </summary>
7272
[CliOption("--sort", Format = OptionFormat.EqualsSeparated)]
7373
public string? Sort { get; set; }

0 commit comments

Comments
 (0)