Fixed go modules for k8s

This commit is contained in:
Geoff Bourne
2019-04-16 18:58:13 -05:00
parent 5576f484dd
commit d76e5442da
4 changed files with 76 additions and 151 deletions
+2 -1
View File
@@ -83,8 +83,9 @@ func parseMappings(val string) map[string]string {
keyValue := strings.Split(part, "=")
if len(keyValue) == 2 {
result[keyValue[0]] = keyValue[1]
} else {
logrus.WithField("part", part).Fatal("Invalid part of mapping")
}
logrus.WithField("part", part).Fatal("Invalid part of mapping")
}
}