Compare commits

..

4 Commits

Author SHA1 Message Date
Richard M 65fdaf43cc Attempt to replace the deploy completed message.
continuous-integration/drone/pr Build is passing Details
2023-08-01 12:50:15 +01:00
Richard M 2d135329bb Change message when starting to poll for deployment status. 2023-07-31 22:45:44 +01:00
Rich M 3e95319969 Add os hook for interrupt signal while waiting for service to converge. 2023-07-31 22:45:44 +01:00
Comrade Renovate Bot 1de45a6508 chore(deps): update goreleaser/goreleaser docker tag to v1.19.2
continuous-integration/drone/pr Build is passing Details
continuous-integration/drone/push Build is failing Details
2023-07-31 07:02:04 +00:00
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
}