Toshiaki Maki
Toshiaki Maki
That sounds great although `push` sounds like associated with upload and might be a bit confusing.
Supporting kustomize will be very helpful in expanding kapp controller audience beyond the vmware / tanzu group. I'm a big fan of ytt, but unfortunately ytt is rarely adopted except...
@srinivasa-vasu Let me confirm as I'm a bit confused. If I understand correctly, `CloudFoundryNativeReactiveDiscoveryClient` was not supposed to be used with C2C networking and `CloudFoundryAppServiceReactiveDiscoveryClient` was responsible of that. Is...
@srinivasa-vasu Thanks for the clarification. With current implementation, if more than 2 routes (e.g external url and internal url) are mapped to the app, first one is always picked up....
Cloud Foundry now supports DNS-based polyglot service discovery. This sample worked thought it's a naive implementation https://github.com/making/demo-hystrix/blob/master/hystrix-dashboard/src/main/java/com/example/hystrixdashboard/CloudFoundryAppServiceDiscoveryClient.java How about providing more generic DNS based Discovery Client?
Updated the sample to use `InetAddress.getAllByName` instead of dnsjava
Will do. I'll implement followings: * extend existing `CloudFoundryDiscoveryClient` and override `getService` method so that it can inherit `getServices`. * rewrite serviceId -> hostname logic using cf-java-client. Currently, i'm assuming...
@scottfrederick @dsyer I made two candidates. Can you give me advices which one should be appropriate. * https://github.com/making/spring-cloud-cloudfoundry/commit/f1ee034d69db7433a5e52a477fafbf48e06fe84b * https://github.com/making/spring-cloud-cloudfoundry/commit/5469b74476d83d61c23920556761fa1e931fb95e First one is using cf-java-client to retrieve application metadata and...
@scottfrederick Container to container networking need network policy (`cf add-network-policy frontend --destination-app backend --protocol tcp --port 8080`) so I don't think containers can be accessed across spaces. Supported both type...
@harryyu1018 HTTPS is already supported via Spring WebFlux and [Spring Boot](https://docs.spring.io/spring-boot/docs/current/reference/htmlsingle/#howto-configure-ssl) here is an example https://github.com/making/pks-master-gateway/blob/master/src/main/resources/application.properties#L7-L14