We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a34dd21 commit 81568bfCopy full SHA for 81568bf
README.md
@@ -4,11 +4,18 @@ Simple cloud foundry service broker written in springboot
4
5
# to deploy
6
7
+Deploy the broker
8
```mvn package && cf push```
9
-```cf create-service-broker myservice-broker user pass https://broker-{aaa-bbb}.cfapps.io --space-scoped```
10
+Register the broker
11
+```cf create-service-broker myservice-broker user pass http://{COPY_BROKER_URL_HERE}.cfapps.io/ --space-scoped```
12
-```cf cs myservice small myservice-instance-1```
13
+Get the service name
14
+```cf m```
15
16
+Create service instance
17
+```cf cs myservice-{COPY_UUID} small myservice-instance-1```
18
+
19
+Bind service instance
20
```cf bs {my-app} myservice-instance-1```
21
0 commit comments