fix(kadabra): always pull new recipe version
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Moritz 2023-04-06 17:21:26 +02:00
parent f088a0d327
commit 9e05000476
1 changed files with 2 additions and 2 deletions

View File

@ -114,7 +114,7 @@ update chaos deployments use the "--chaos" flag. Use it with care.
logrus.Fatal(err)
}
conf := runtime.New()
conf := runtime.New(runtime.WithEnsureRecipeLatest(true))
if !updateAll {
stackName := c.Args().Get(0)
@ -409,7 +409,7 @@ func tryUpgrade(cl *dockerclient.Client, stackName, recipeName string, conf *run
}
if !updatesEnabled {
logrus.Debugf("Don't update %s due to disabling auto updates or missing ENABLE_AUTOUPDATE env.", stackName)
logrus.Debugf("Don't update %s due to disabling auto updates or missing ENABLE_AUTO_UPDATE env.", stackName)
return nil
}