mirror of
https://github.com/k3s-io/k3s.git
synced 2025-12-18 23:06:14 -05:00
lint: nested-structs
Signed-off-by: Brad Davidson <brad.davidson@rancher.com>
This commit is contained in:
parent
fc506e56dd
commit
e44a77d475
1 changed files with 5 additions and 3 deletions
|
|
@ -18,10 +18,12 @@ const (
|
|||
networkName = "flannel.4096"
|
||||
)
|
||||
|
||||
type IP4 struct {
|
||||
IP string `json:"ip"`
|
||||
}
|
||||
|
||||
type SourceVipResponse struct {
|
||||
IP4 struct {
|
||||
IP string `json:"ip"`
|
||||
} `json:"ip4"`
|
||||
IP4 IP4 `json:"ip4"`
|
||||
}
|
||||
|
||||
func platformKubeProxyArgs(nodeConfig *daemonconfig.Node) map[string]string {
|
||||
|
|
|
|||
Loading…
Reference in a new issue