Skip to content

Commit 2c33f2f

Browse files
committed
Rebase
1 parent 8f1cefc commit 2c33f2f

File tree

3 files changed

+471
-438
lines changed

3 files changed

+471
-438
lines changed

cmd/options.go

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,11 @@ func GetOptions() *Options {
8989
Port: 14789,
9090
DeletionPrefix: "vx-",
9191
},
92+
ToolsTailscale: &ToolsTailscaleOptions{
93+
Image: "tailscale/tailscale:latest",
94+
Ephemeral: true,
95+
Format: "table",
96+
},
9297
}
9398
}
9499

@@ -112,6 +117,7 @@ type Options struct {
112117
ToolsSSHX *ToolsSSHXOptions
113118
ToolsVeth *ToolsVethOptions
114119
ToolsVxlan *ToolsVxlanOptions
120+
ToolsTailscale *ToolsTailscaleOptions
115121
}
116122

117123
type GlobalOptions struct {

cmd/tools.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ func toolsSubcommandRegisterFuncs() []func(*Options) (*cobra.Command, error) {
2222
sshxCmd,
2323
vethCmd,
2424
vxlanCmd,
25+
tailscaleCmd,
2526
}
2627
}
2728

0 commit comments

Comments
 (0)