Skip to content

Latest commit

 

History

History
33 lines (22 loc) · 998 Bytes

File metadata and controls

33 lines (22 loc) · 998 Bytes

Service Registry .NET sample

CI

Sample .NET application demonstrating the use of Service Registry in Tanzu Platform for Cloud Foundry.

For information on the Service Registry product in Tanzu Platform for Cloud Foundry, please see the documentation.

Building and Deploying

  • Create a Service Registry instance:
 cf create-service p.service-registry standard greeter-service-registry
  • Push applications:
 cf push
 # or push each app separately
 cf push greeter-messages
 cf push greeter

Trying It Out

Call [ROUTE]/hello, where [ROUTE] is the route bound to the greeter application, with optional name and salutation parameters.

 $ curl "greeter.apps.example.cf-app.com/hello?name=John"
 Hello, John!