Spring Cloud Services Pricing Change in PWS Marketplace

On April 26, 2018, SCS rolled out new service plans for the following marketplace services:

  • p-circuit-breaker-dashboard
  • p-config-server
  • p-service-registry

The new plans are:

  • standard – the new paid plan. Each service instance costs $39.99 per month
  • trial – the new free plan. Each service instance is deleted automatically 7 days after creation

The old standard plan was renamed to standard-legacy. We are asking you to transition all of your SCS service instances (SIs) from standard-legacy to the new standard plan if you wish to continue using them for production workloads.

To transition an SI to the new standard plan with minimal (or zero) downtime, follow the steps below.

  1. Create a new SI of the same type as the original SI, giving the plan name standard and a different instance name.
$ cf create-service [service-name] standard [new-si-name]
  1. For each application bound to the original service instance, push the application, giving a different application name.
$ cf push [new-appname]

NOTE: If the manifest for the new-appname application already includes the new-si-name SI, it will automatically bind to the new standard SI. If new-si-name is not in the manifest used for pushing your application, run the following command to bind it:

$ cf bind-service [new-appname] [new-si-name]
  1. For each application bound to the original service instance, change the mapped routes from the original application to the new application.
$ cf map-route [new-appname] [domain] --hostname [existing-hostname]

$ cf unmap-route [old-appname] [domain] --hostname [existing-hostname]
  1. When the application is running as expected with the new standard SI, delete the original SI and applications, then rename the new SI and applications.
$ cf delete-service [old-si-name]

$ cf delete [old-appname]

$ cf rename-service [new-si-name] [old-si-name]

$ cf rename [new-appname] [old-appname]

Please transition any existing SCS SIs that are using the standard-legacy plan by Friday, September 28, 2018, when we will remove all standard-legacy SIs.

Our intention is to remove all `standard-legacy` instances on October 1st, 2018. Our focus is to make this transition as seamless as possible. Please contact our support team at [email protected] if you have any questions or concerns. Thank you.