@@ -11,11 +11,11 @@ deprecated and may be removed at any time.
11
11
If you are running a Kubernetes cluster running version 1.7 or later, please
12
12
see [ walkthrough-1.7.md] ( ./walkthrough-1.7.md ) .
13
13
14
- This document assumes that you've installed Service Catalog onto your cluster.
14
+ __ Note: This document assumes that you've installed Service Catalog onto your cluster.
15
15
If you haven't, please see the
16
- [ installation instructions for 1.6] ( ./install-1.6.md ) .
16
+ [ installation instructions for 1.6] ( ./install-1.6.md ) .__
17
17
18
- # Step 1 - Installing the UPS ServiceBroker
18
+ # Step 1 - Installing the UPS Service Broker Server
19
19
20
20
In order to effectively demonstrate the service catalog, we will require a
21
21
sample broker server. To proceed, we will deploy the [ User Provided Service
@@ -37,7 +37,7 @@ To install with defaults:
37
37
helm install charts/ups-broker --name ups-broker --namespace ups-broker
38
38
```
39
39
40
- # Step 2 - Creating a ServiceBroker Resource
40
+ # Step 2 - Creating a ` ServiceBroker ` Resource
41
41
42
42
Next, we'll register a broker server with the catalog by creating a new
43
43
[ ` ServiceBroker ` ] ( ../contrib/examples/walkthrough/ups-broker.yaml ) resource.
@@ -99,7 +99,7 @@ Notice that the `status` field has been set to reflect that the broker server's
99
99
catalog of service offerings has been successfully added to our cluster's
100
100
service catalog.
101
101
102
- # Step 3 - Viewing ServiceClasses
102
+ # Step 3 - Viewing `ServiceClass`es
103
103
104
104
The controller created a `ServiceClass` for each service that the UPS broker
105
105
provides. We can view the `ServiceClass` resources available in the cluster by
@@ -145,7 +145,7 @@ plans:
145
145
externalID: 86064792-7ea2-467b-af93-ac9694d96d52
146
146
` ` `
147
147
148
- # Step 4 - Provisioning a New ServiceInstance
148
+ # Step 4 - Creating a New ` ServiceInstance`
149
149
150
150
Now that a `ServiceClass` named `user-provided-service` exists within our
151
151
cluster's service catalog, we can provision an instance of that. We do so by
@@ -204,7 +204,7 @@ status:
204
204
type: Ready
205
205
` ` `
206
206
207
- # Step 5 - ServiceInstanceCredential to the ServiceInstance
207
+ # Step 5 - Requesting a ` ServiceInstanceCredential` to use the ` ServiceInstance`
208
208
209
209
Now that our `ServiceInstance` has been created, we can bind to it. To accomplish this,
210
210
we will create a [`ServiceInstanceCredential`](../contrib/examples/walkthrough/ups-instance-credential.yaml)
@@ -277,9 +277,9 @@ ups-instance-credential Opaque 2
277
277
278
278
Notice that a new `Secret` named `ups-instance-credential` has been created.
279
279
280
- # Step 6 - Unbinding from the ServiceInstance
280
+ # Step 6 - Deleting the `ServiceInstanceCredential`
281
281
282
- Now, let's unbind from the instance. To do this, we simply *delete* the
282
+ Now, let's unbind from the provisioned instance. To do this, we simply *delete* the
283
283
`ServiceInstanceCredential` resource that we previously created :
284
284
285
285
` ` ` console
@@ -295,16 +295,16 @@ NAME TYPE DATA AGE
295
295
default-token-3k61z kubernetes.io/service-account-token 3 30m
296
296
` ` `
297
297
298
- # Step 7 - Deprovisioning the ServiceInstance
298
+ # Step 7 - Deleting the ` ServiceInstance`
299
299
300
- Now, we can deprovision the instance. To do this, we simply *delete* the
300
+ Now, we can deprovision the instance. To do this, we simply *delete* the
301
301
`ServiceInstance` resource that we previously created :
302
302
303
303
` ` ` console
304
304
kubectl --context=service-catalog delete -n test-ns instances ups-instance
305
305
` ` `
306
306
307
- # Step 8 - Deleting the ServiceBroker
307
+ # Step 8 - Deleting the ` ServiceBroker`
308
308
309
309
Next, we should remove the broker server, and the services it offers, from the catalog. We can do
310
310
so by simply deleting the broker :
0 commit comments