-
-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathMinikubeMountOptions.Generated.cs
More file actions
77 lines (64 loc) · 2.35 KB
/
MinikubeMountOptions.Generated.cs
File metadata and controls
77 lines (64 loc) · 2.35 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
// <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>
/// Mounts the specified directory into minikube.
/// </summary>
[GeneratedCode("ModularPipelines.OptionsGenerator", "")]
[ExcludeFromCodeCoverage]
[CliSubCommand("mount")]
public record MinikubeMountOptions : MinikubeOptions
{
/// <summary>
/// Specify the 9p version that the mount should use
/// </summary>
[CliOption("--9p-version", Format = OptionFormat.EqualsSeparated)]
public string? _9pVersion { get; set; }
/// <summary>
/// Default group id used for the mount
/// </summary>
[CliOption("--gid", Format = OptionFormat.EqualsSeparated)]
public string? Gid { get; set; }
/// <summary>
/// Specify the ip that the mount should be setup on
/// </summary>
[CliOption("--ip", Format = OptionFormat.EqualsSeparated)]
public string? Ip { get; set; }
/// <summary>
/// Kill the mount process spawned by minikube start
/// </summary>
[CliOption("--kill", Format = OptionFormat.EqualsSeparated)]
public string? Kill { get; set; }
/// <summary>
/// The number of bytes to use for 9p packet payload
/// </summary>
[CliOption("--msize", Format = OptionFormat.EqualsSeparated)]
public string? Msize { get; set; }
/// <summary>
/// Additional mount options, such as cache=fscache
/// </summary>
[CliOption("--options", Format = OptionFormat.EqualsSeparated)]
public string? Options { get; set; }
/// <summary>
/// Specify the port that the mount should be setup on, where 0 means any free port.
/// </summary>
[CliOption("--port", Format = OptionFormat.EqualsSeparated)]
public string? Port { get; set; }
/// <summary>
/// Specify the mount filesystem type (supported types: 9p)
/// </summary>
[CliOption("--type", Format = OptionFormat.EqualsSeparated)]
public string? Type { get; set; }
/// <summary>
/// Default user id used for the mount
/// </summary>
[CliOption("--uid", Format = OptionFormat.EqualsSeparated)]
public string? Uid { get; set; }
}