-
-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathMinikubeDockerEnvOptions.Generated.cs
More file actions
60 lines (50 loc) · 2.02 KB
/
MinikubeDockerEnvOptions.Generated.cs
File metadata and controls
60 lines (50 loc) · 2.02 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
48
49
50
51
52
53
54
55
56
57
58
59
60
// <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;
using ModularPipelines.Minikube.Enums;
namespace ModularPipelines.Minikube.Options;
/// <summary>
/// Provides instructions to point your terminal's docker-cli to the Docker Engine inside minikube. (Useful for building docker images directly inside minikube)
/// </summary>
[GeneratedCode("ModularPipelines.OptionsGenerator", "")]
[ExcludeFromCodeCoverage]
[CliSubCommand("docker-env")]
public record MinikubeDockerEnvOptions : MinikubeOptions
{
/// <summary>
/// Add machine IP to NO_PROXY environment variable
/// </summary>
[CliOption("--no-proxy", Format = OptionFormat.EqualsSeparated)]
public string? NoProxy { get; set; }
/// <summary>
/// One of 'text', 'yaml' or 'json'.
/// </summary>
[CliOption("--output", ShortForm = "-o", Format = OptionFormat.EqualsSeparated)]
public MinikubeDockerEnvOutput? Output { get; set; }
/// <summary>
/// Force environment to be configured for a specified shell: [fish, cmd, powershell, tcsh, bash, zsh], default is auto-detect
/// </summary>
[CliOption("--shell", Format = OptionFormat.EqualsSeparated)]
public string? Shell { get; set; }
/// <summary>
/// Add SSH identity key to SSH authentication agent
/// </summary>
[CliOption("--ssh-add", Format = OptionFormat.EqualsSeparated)]
public string? SshAdd { get; set; }
/// <summary>
/// Use SSH connection instead of HTTPS (port 2376)
/// </summary>
[CliOption("--ssh-host", Format = OptionFormat.EqualsSeparated)]
public string? SshHost { get; set; }
/// <summary>
/// Unset variables instead of setting them
/// </summary>
[CliOption("--unset", ShortForm = "-u", Format = OptionFormat.EqualsSeparated)]
public string? Unset { get; set; }
}