Skip to content

Commit dc5fa09

Browse files
author
thomhurst
committed
chore: Update podman CLI options
1 parent 06adaa3 commit dc5fa09

File tree

221 files changed

+444
-52
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

221 files changed

+444
-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-04-19T03:16:17.3878267Z")]

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
// Do not edit this file manually.
44
// </auto-generated>
55

6+
#nullable enable
7+
68
using System.CodeDom.Compiler;
79
using System.Diagnostics.CodeAnalysis;
810
using ModularPipelines.Attributes;

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
// Do not edit this file manually.
44
// </auto-generated>
55

6+
#nullable enable
7+
68
using System.CodeDom.Compiler;
79
using System.Diagnostics.CodeAnalysis;
810
using ModularPipelines.Attributes;

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
// Do not edit this file manually.
44
// </auto-generated>
55

6+
#nullable enable
7+
68
using System.CodeDom.Compiler;
79
using System.Diagnostics.CodeAnalysis;
810
using ModularPipelines.Attributes;

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
// Do not edit this file manually.
44
// </auto-generated>
55

6+
#nullable enable
7+
68
using System.CodeDom.Compiler;
79
using System.Diagnostics.CodeAnalysis;
810
using ModularPipelines.Attributes;

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
// Do not edit this file manually.
44
// </auto-generated>
55

6+
#nullable enable
7+
68
using System.CodeDom.Compiler;
79
using System.Diagnostics.CodeAnalysis;
810
using ModularPipelines.Attributes;

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
// Do not edit this file manually.
44
// </auto-generated>
55

6+
#nullable enable
7+
68
using System.CodeDom.Compiler;
79
using System.Diagnostics.CodeAnalysis;
810
using ModularPipelines.Attributes;

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

Lines changed: 3 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
// Do not edit this file manually.
44
// </auto-generated>
55

6+
#nullable enable
7+
68
using System.CodeDom.Compiler;
79
using System.Diagnostics.CodeAnalysis;
810
using ModularPipelines.Attributes;
@@ -60,12 +62,6 @@ public record PodmanComposeBuildOptions : PodmanOptions
6062
[CliFlag("--print")]
6163
public bool? Print { get; set; }
6264

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

8177
/// <summary>
82-
/// Suppress the build output
78+
/// Don't print anything to STDOUT
8379
/// </summary>
8480
[CliFlag("--quiet", ShortForm = "-q")]
8581
public bool? Quiet { get; set; }
8682

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

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
// Do not edit this file manually.
44
// </auto-generated>
55

6+
#nullable enable
7+
68
using System.CodeDom.Compiler;
79
using System.Diagnostics.CodeAnalysis;
810
using ModularPipelines.Attributes;

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

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
// Do not edit this file manually.
44
// </auto-generated>
55

6+
#nullable enable
7+
68
using System.CodeDom.Compiler;
79
using System.Diagnostics.CodeAnalysis;
810
using ModularPipelines.Attributes;
@@ -54,12 +56,6 @@ public record PodmanComposeConfigOptions : PodmanOptions
5456
[CliFlag("--lock-image-digests")]
5557
public bool? LockImageDigests { get; set; }
5658

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

0 commit comments

Comments
 (0)