1
0
mirror of https://github.com/rancher/rke.git synced 2025-09-06 17:30:20 +00:00

go generate

This commit is contained in:
Akhilesh Sarda
2024-01-17 23:33:39 +05:30
parent 275242b912
commit 84dca12af3
4 changed files with 211 additions and 36 deletions

View File

@@ -10,7 +10,7 @@ import (
)
const (
defaultURL = "https://releases.rancher.com/kontainer-driver-metadata/release-v2.8/data.json"
defaultURL = "https://releases.rancher.com/kontainer-driver-metadata/dev-v2.8/data.json"
dataFile = "data/data.json"
)

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -85,6 +85,19 @@ func (in *AciNetworkProvider) DeepCopyInto(out *AciNetworkProvider) {
}
}
}
if in.NodeSnatRedirectExclude != nil {
in, out := &in.NodeSnatRedirectExclude, &out.NodeSnatRedirectExclude
*out = make([]map[string]string, len(*in))
for i := range *in {
if (*in)[i] != nil {
in, out := &(*in)[i], &(*out)[i]
*out = make(map[string]string, len(*in))
for key, val := range *in {
(*out)[key] = val
}
}
}
}
return
}