(xposting from pcf slack)
So apparently spinnaker hit 1.0 today: https://cloudplatform.googleblog.com/2017/06/spinnaker-10-continuous-delivery.html
Also, it appears that spring-cloud-spinnaker is not currently active https://github.com/spring-cloud/spring-cloud-spinnaker
Anyone know if there's a decent way to use spinnaker to deploy to PCF nowadays?
Or are all the cool kids just using concourse?
@PostMapping(consumes = MediaType.APPLICATION_JSON_VALUE, produces = MediaType.APPLICATION_JSON_VALUE)
public Mono<ResponseEntity<WishResult>> relayWish(Wish wish) {
return this.remoteResource
.makeOrder(Order.builder().item(wish.getItem()).build())
.map(orderResult -> orderResult.getBody() == OrderResult.ORDERED ?
ResponseEntity.ok(WishResult.GRANTED) :
ResponseEntity.ok(WishResult.NOT_GRANTED));
}
@PostMapping(path = "/", produces = MediaType.APPLICATION_JSON_VALUE)
Mono<ResponseEntity<WishResult>> postOrder(@RequestBody Wish wish);
Can not construct instance of reactor.core.publisher.Mono
WebClient
?
@HystrixCommand
(javanica) feature doesn't really even have that