Merge branch 'add-waiting-interrupt-handling' of ssh://git.coopcloud.tech:2222/rix/abra into add-waiting-interrupt-handling

This commit is contained in:
Rich M 2023-08-01 12:53:36 +01:00
commit ae1a6c45f9
2 changed files with 3 additions and 3 deletions

View File

@ -33,7 +33,7 @@ steps:
event: tag
- name: release
image: goreleaser/goreleaser:v1.18.2
image: goreleaser/goreleaser:v1.19.2
environment:
GITEA_TOKEN:
from_secret: goreleaser_gitea_token

View File

@ -416,7 +416,7 @@ func deployServices(
return nil
}
logrus.Infof("waiting for services to converge: %s", strings.Join(serviceNames, ", "))
logrus.Infof("Starting to poll for deployment status for: %s", strings.Join(serviceNames, ", "))
ch := make(chan error, len(serviceIDs))
for serviceID, serviceName := range serviceIDs {
logrus.Debugf("waiting on %s to converge", serviceName)
@ -433,7 +433,7 @@ func deployServices(
logrus.Debugf("assuming %s converged successfully", serviceID)
}
logrus.Info("services converged 👌")
logrus.Infof("Successfully deployed %s to %s 👌", appName, namespace.Name())
return nil
}