spring-cloud-skipper icon indicating copy to clipboard operation
spring-cloud-skipper copied to clipboard

Validate behavior when deploying multiple apps (3) and some (2) fail to deploy.

Open markpollack opened this issue 7 years ago • 0 comments

DeployAppStep.deployApps`

			Status status = new Status();
			status.setStatusCode(StatusCode.FAILED);
			replacingRelease.getInfo().setStatus(status);
			replacingRelease.getInfo().setStatus(status);
			replacingRelease.getInfo().setDescription("Could not deploy app.");
			this.releaseRepository.save(replacingRelease);
			// TODO If app 2 of 3 failed, what to do with the previous app that deployed?
		}
		return applicationNamesToUpgrade;```

markpollack avatar Jan 29 '18 21:01 markpollack