-
-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathMinikubeAddonsEnableOptions.Generated.cs
More file actions
47 lines (39 loc) · 1.5 KB
/
MinikubeAddonsEnableOptions.Generated.cs
File metadata and controls
47 lines (39 loc) · 1.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
// <auto-generated>
// This file was generated by ModularPipelines.OptionsGenerator.
// Do not edit this file manually.
// </auto-generated>
#nullable enable
using System.CodeDom.Compiler;
using System.Diagnostics.CodeAnalysis;
using ModularPipelines.Attributes;
using ModularPipelines.Minikube.Options;
namespace ModularPipelines.Minikube.Options;
/// <summary>
/// Enables the addon w/ADDON_NAME within minikube. For a list of available addons use: minikube addons list
/// </summary>
[GeneratedCode("ModularPipelines.OptionsGenerator", "")]
[ExcludeFromCodeCoverage]
[CliSubCommand("addons", "enable")]
public record MinikubeAddonsEnableOptions : MinikubeOptions
{
/// <summary>
/// If true, will perform potentially dangerous operations. Use with discretion.
/// </summary>
[CliOption("--force", Format = OptionFormat.EqualsSeparated)]
public string? Force { get; set; }
/// <summary>
/// Images used by this addon. Separated by commas.
/// </summary>
[CliOption("--images", Format = OptionFormat.EqualsSeparated)]
public string? Images { get; set; }
/// <summary>
/// If true, pods might get deleted and restarted on addon enable
/// </summary>
[CliOption("--refresh", Format = OptionFormat.EqualsSeparated)]
public string? Refresh { get; set; }
/// <summary>
/// Registries used by this addon. Separated by commas.
/// </summary>
[CliOption("--registries", Format = OptionFormat.EqualsSeparated)]
public string? Registries { get; set; }
}