Toshiaki Maki

Results 64 comments of Toshiaki Maki

It is now implemented as a Poc in the same repository. I think it will be another repository eventually.

> I guess I was also thinking about this as a potential drop in implementation for the standard BeanValidation It would be great if the base part can be reusable...

There is a way to add constraints as follows ```java ValidatorBuilder baseValidatorBuilder = ValidatorBuilder.of() .constraint(Car::getSeatCount, "seatCount", c -> c.greaterThanOrEqual(2)) Validator validator1 = new ValidatorBuilder(baseValidatorBuilder) .constraint(Car::getManufacturer, "manufacturer", c -> c. notNull())...

Is it a feature request?

@zrob this feature is pretty important, for example in case of the following situation: ![image](https://user-images.githubusercontent.com/106908/45333477-639ef200-b5b1-11e8-80f4-a8eedcfdbc87.png) When zero-downtime-updating App B, the following sequences are required: 1. `cf rename app-b app-b-venerable` 1....

@zrob +1 for your idea. My proposal will not work in case that App C is not deployed yet such as first deployment. Adding the app to a logical group...

+1 In SCDF on cloud platforms, reading/writing S3 (compatible object storage) is much more important than local file system (`file://`). but having the dependency on spring-cloud-aws only for S3 is...

There is a use case where you want to bring existing images (ex. Helm chart) into an air-gapped environment. This can be achieved with the deprecated `kbld pkg`: ``` helm...

@joaopapereira In the use case, It is painful for restricted enterprise companies to prepare the registry to temporarily push the bundle in the online environment.

@joaopapereira Does it still require `extra-intermediate-public-registry.example.com` ?