Revert "review: change label autoupdate -> auto-update"
continuous-integration/drone/pr Build is passing Details
continuous-integration/drone/push Build is passing Details

This reverts commit 74baa76f5ee5e5dd7b71b1f14be97cc40dfc611b.
This commit is contained in:
Moritz 2023-03-07 13:10:57 +01:00
parent d5979436c1
commit edff63b446
2 changed files with 4 additions and 4 deletions

View File

@ -403,7 +403,7 @@ func tryUpgrade(cl *dockerclient.Client, stackName, recipeName string, conf *run
return nil
}
updatesEnabled, err := getBoolLabel(cl, stackName, "auto-update")
updatesEnabled, err := getBoolLabel(cl, stackName, "autoupdate")
if err != nil {
return err
}

View File

@ -414,7 +414,7 @@ func GetAppStatuses(apps []App, MachineReadable bool) (map[string]map[string]str
result["chaosVersion"] = chaosVersion
}
labelKey = fmt.Sprintf("coop-cloud.%s.auto-update", name)
labelKey = fmt.Sprintf("coop-cloud.%s.autoupdate", name)
if autoUpdate, ok := service.Spec.Labels[labelKey]; ok {
result["autoUpdate"] = autoUpdate
} else {
@ -538,8 +538,8 @@ func SetUpdateLabel(compose *composetypes.Config, stackName string, appEnv AppEn
if !exists {
enable_auto_update = "false"
}
logrus.Debugf("set label 'coop-cloud.%s.auto-update' to %s for %s", stackName, enable_auto_update, stackName)
labelKey := fmt.Sprintf("coop-cloud.%s.auto-update", stackName)
logrus.Debugf("set label 'coop-cloud.%s.autoupdate' to %s for %s", stackName, enable_auto_update, stackName)
labelKey := fmt.Sprintf("coop-cloud.%s.autoupdate", stackName)
service.Deploy.Labels[labelKey] = enable_auto_update
}
}