Skip to content

Commit e2f069a

Browse files
committed
Rebase
1 parent 1d3e622 commit e2f069a

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
@@ -99,6 +99,11 @@ func GetOptions() *Options {
9999
Port: defaultVxlanPort,
100100
DeletionPrefix: "vx-",
101101
},
102+
ToolsTailscale: &ToolsTailscaleOptions{
103+
Image: "tailscale/tailscale:latest",
104+
Ephemeral: true,
105+
Format: "table",
106+
},
102107
}
103108
}
104109

@@ -122,6 +127,7 @@ type Options struct {
122127
ToolsSSHX *ToolsSSHXOptions
123128
ToolsVeth *ToolsVethOptions
124129
ToolsVxlan *ToolsVxlanOptions
130+
ToolsTailscale *ToolsTailscaleOptions
125131
}
126132

127133
func (o *Options) ToClabOptions() []clabcore.ClabOption {

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)