Skip to content
This repository was archived by the owner on Mar 2, 2022. It is now read-only.

Define a Spring Cloud Config Server and run it on Cloud Foundry

Chris Cheetham edited this page Oct 10, 2018 · 10 revisions

Initialize tooling and configure for Cloud Foundry deployment

$ st init
Project initialized for Steeltoe Developer Tools  

$ st target cloud-foundry
checking cf ... cf version 6.39.0+607d4f8be.2018-09-11
checking if logged in ... yes
Target deployment environment set to 'cloud-foundry'.

Create a Cloud Foundry Config Server service

$ st add MyConfigServer config-server
Added config-server service 'MyConfigServer'

$ st status
MyConfigServer offline

Deploy

$ st deploy
steeltoe deploy
Deploying service 'MyConfigServer'

$ st status
MyConfigServer starting

$ st status
MyConfigServer online

Undeploy

$ st undeploy
Undeploying service 'MyConfigServer'

$ st status
MyConfigServer offline
Clone this wiki locally