Skip to content

Commit 39ca42f

Browse files
authored
Add entries to list of notable PRs included with v4-rc (#396)
* Add entries to list of notable PRs included with v4-rc * Update service plan names
1 parent ee26eb4 commit 39ca42f

File tree

12 files changed

+42
-37
lines changed

12 files changed

+42
-37
lines changed

docs/docs/v4/configuration/config-server-provider.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ When you want to use a Config Server on Cloud Foundry and you have installed [Sp
134134
1. Create a Config Server instance:
135135

136136
```shell
137-
cf create-service p-config-server standard myConfigServer
137+
cf create-service p.config-server your-plan sampleConfigServer
138138
```
139139

140140
1. Wait for service to become ready:
@@ -146,13 +146,13 @@ When you want to use a Config Server on Cloud Foundry and you have installed [Sp
146146
1. Bind service to your app:
147147

148148
```shell
149-
cf bind-service myApp myConfigServer
149+
cf bind-service sampleApp sampleConfigServer
150150
```
151151

152152
1. Restage the app to pick up change:
153153

154154
```shell
155-
cf restage myApp
155+
cf restage sampleApp
156156
```
157157

158158
After the service is bound to the application, the Config Server settings are available and can be set up in `VCAP_SERVICES`.

docs/docs/v4/connectors/microsoft-sql-server.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -154,18 +154,18 @@ You can create and bind an instance to your application by using the Cloud Found
154154
1. Create SQL Server service:
155155

156156
```shell
157-
cf create-service csb-azure-mssql-db your-plan mySqlServerService
157+
cf create-service csb-azure-mssql-db your-plan sampleSqlServerService
158158
```
159159

160160
1. Bind service to your app:
161161

162162
```shell
163-
cf bind-service myApp mySqlServerService
163+
cf bind-service sampleApp sampleSqlServerService
164164
```
165165

166166
1. Restage the app to pick up change:
167167

168168
```shell
169-
cf restage myApp
169+
cf restage sampleApp
170170
```
171171

docs/docs/v4/connectors/mongodb.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -111,19 +111,19 @@ You can create and bind an instance to your application by using the Cloud Found
111111
1. Create MongoDB service:
112112

113113
```shell
114-
cf create-service csb-azure-mongodb your-plan myMongoDbService
114+
cf create-service csb-azure-mongodb your-plan sampleMongoDbService
115115
```
116116

117117
1. Bind service to your app:
118118

119119
```shell
120-
cf bind-service myApp myMongoDbService
120+
cf bind-service sampleApp sampleMongoDbService
121121
```
122122

123123
1. Restage the app to pick up change:
124124

125125
```shell
126-
cf restage myApp
126+
cf restage sampleApp
127127
```
128128

129129
## Kubernetes

docs/docs/v4/connectors/mysql.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -161,19 +161,19 @@ You can create and bind an instance to your application by using the Cloud Found
161161
1. Create MySQL service:
162162

163163
```shell
164-
cf create-service p.mysql db-small myMySqlService
164+
cf create-service p.mysql your-plan sampleMySqlService
165165
```
166166

167167
1. Bind service to your app:
168168

169169
```shell
170-
cf bind-service myApp myMySqlService
170+
cf bind-service sampleApp sampleMySqlService
171171
```
172172

173173
1. Restage the app to pick up change:
174174

175175
```shell
176-
cf restage myApp
176+
cf restage sampleApp
177177
```
178178

179179
## Kubernetes

docs/docs/v4/connectors/postgresql.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -156,19 +156,19 @@ You can create and bind an instance to your application by using the Cloud Found
156156
1. Create PostgreSQL service:
157157

158158
```shell
159-
cf create-service postgres small myPostgreSqlService
159+
cf create-service postgres your-plan samplePostgreSqlService
160160
```
161161

162162
1. Bind service to your app:
163163

164164
```shell
165-
cf bind-service myApp myPostgreSqlService
165+
cf bind-service sampleApp samplePostgreSqlService
166166
```
167167

168168
1. Restage the app to pick up change:
169169

170170
```shell
171-
cf restage myApp
171+
cf restage sampleApp
172172
```
173173

174174
## Kubernetes

docs/docs/v4/connectors/rabbitmq.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,19 +96,19 @@ You can create and bind an instance to your application by using the Cloud Found
9696
1. Create RabbitMQ service:
9797

9898
```shell
99-
cf create-service p.rabbitmq rmq-single-node myRabbitMQService
99+
cf create-service p.rabbitmq your-plan sampleRabbitMQService
100100
```
101101

102102
1. Bind service to your app:
103103

104104
```shell
105-
cf bind-service myApp myRabbitMQService
105+
cf bind-service sampleApp sampleRabbitMQService
106106
```
107107

108108
1. Restage the app to pick up change:
109109

110110
```shell
111-
cf restage myApp
111+
cf restage sampleApp
112112
```
113113

114114
## Kubernetes

docs/docs/v4/connectors/redis.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -127,19 +127,19 @@ You can create and bind an instance to your application by using the Cloud Found
127127
1. Create Redis service:
128128

129129
```shell
130-
cf create-service p.redis vk-plan myRedisService
130+
cf create-service p.redis your-plan sampleRedisService
131131
```
132132

133133
1. Bind service to your app:
134134

135135
```shell
136-
cf bind-service myApp myRedisService
136+
cf bind-service sampleApp sampleRedisService
137137
```
138138

139139
1. Restage the app to pick up change:
140140

141141
```shell
142-
cf restage myApp
142+
cf restage sampleApp
143143
```
144144

145145
## Kubernetes

docs/docs/v4/management/prometheus.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ Install the metrics-registrar plugin and use it to register your endpoint:
155155

156156
```shell
157157
cf install-plugin -r CF-Community "metric-registrar"
158-
cf register-metrics-endpoint APP-NAME /actuator/prometheus --internal-port 8091
158+
cf register-metrics-endpoint sampleApp /actuator/prometheus --internal-port 8091
159159
```
160160

161161
> [!IMPORTANT]
@@ -167,8 +167,8 @@ cf register-metrics-endpoint APP-NAME /actuator/prometheus --internal-port 8091
167167
The result of using the metrics registrar plugin is a user-provided service, which can also be created and bound manually.
168168

169169
```shell
170-
cf create-user-provided-service APP-NAME -l secure-endpoint://:8091/actuator/prometheus
171-
cf bind-service APP-NAME SERVICE-NAME
170+
cf create-user-provided-service sampleService -l secure-endpoint://:8091/actuator/prometheus
171+
cf bind-service sampleApp sampleService
172172
```
173173

174174
## Sample Output

docs/docs/v4/security/jwt-bearer.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ For information about configuring service plans for use by developers, a platfor
165165
After you have identified the service plan to use, create a service instance:
166166

167167
```shell
168-
cf create-service p-identity SERVICE_PLAN_NAME MY_SERVICE_INSTANCE
168+
cf create-service p-identity your-plan sampleService
169169
```
170170

171171
#### Bind and configure with app manifest
@@ -197,13 +197,13 @@ Then you can configure the SSO binding with the web interface.
197197
1. Bind service to your app:
198198
199199
```shell
200-
cf bind-service MY_APPLICATION MY_SERVICE_INSTANCE
200+
cf bind-service sampleApp sampleService
201201
```
202202

203203
1. Restage the app to pick up change:
204204

205205
```shell
206-
cf restage MY_APPLICATION
206+
cf restage sampleApp
207207
```
208208

209209
For more information, see:
@@ -220,13 +220,13 @@ There is no service broker available to manage service instances or bindings for
220220
This command is an example of how the service instance can be created:
221221

222222
```shell
223-
cf cups MY_SERVICE_INSTANCE -p '{"auth_domain": "https://uaa.login.sys.cf-app.com","grant_types": [ "authorization_code", "client_credentials" ],"client_secret": "SOME_CLIENT_SECRET","client_id": "SOME_CLIENT_ID"}'
223+
cf cups sampleService -p '{"auth_domain": "https://uaa.login.sys.cf-app.com","grant_types": [ "authorization_code", "client_credentials" ],"client_secret": "SOME_CLIENT_SECRET","client_id": "SOME_CLIENT_ID"}'
224224
```
225225

226226
And to bind the service instance to the app:
227227

228228
```shell
229-
cf bind-service MY_APPLICATION MY_SERVICE_INSTANCE
229+
cf bind-service sampleApp sampleService
230230
```
231231

232232
For additional information, see the [UAA documentation](https://docs.cloudfoundry.org/concepts/architecture/uaa.html).

docs/docs/v4/security/redis-key-storage-provider.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -106,16 +106,16 @@ You can complete these steps using the Cloud Foundry command line.
106106
cf push sampleApp --buildpack dotnet_core_buildpack
107107
```
108108

109-
1. Create Redis service:
109+
1. Create Redis/Valkey service:
110110

111111
```shell
112-
cf create-service p-redis shared-vm sampleRedisService
112+
cf create-service p.redis your-plan sampleRedisDataProtectionService
113113
```
114114

115115
1. Bind service to your app:
116116

117117
```shell
118-
cf bind-service sampleApp sampleRedisService
118+
cf bind-service sampleApp sampleRedisDataProtectionService
119119
```
120120

121121
1. Restage the app to pick up change:

0 commit comments

Comments
 (0)