You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: _plugins/README.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -25,6 +25,7 @@ This renders the definition of the glossary term inside a `<div>`, preserving Ma
25
25
| --- | --- | --- |
26
26
|`term_id`| N/A (Required) | The `id` of the glossary term whose definition will be used. (This `id` is the same as the filename of the term, i.e. `_data/glossary/<ID>.yml`.) |
27
27
|`length`| "short" | Specifies which term definition should be used ("short" for the `short-definition`, "long" for `long-description`, "all" when both should be included). |
28
+
|`prepend`| "Service Catalog is" | A prefix which can be attached in front of a term's short definition (which is one or more sentence fragments). |
A *Service Broker*, as defined by the [Open Service Broker API spec](https://github.com/openservicebrokerapi/servicebroker/blob/v2.13/spec.md), is an endpoint for a set of Managed Services offered and maintained by a third-party, which could be a cloud provider such as AWS, GCP, or Azure.
11
11
Some examples of *Managed Services* are Microsoft Azure Cloud Queue, Amazon Simple Queue Service, and Google Cloud Pub/Sub, but they can be any software offering that can be used by an application.
@@ -55,7 +55,7 @@ Upon creation, the Service Catalog controller will create a Kubernetes `Secret`
55
55
56
56
### Authentication
57
57
58
-
Service Catalog supports these methods of authentication:
58
+
Service Catalog supports these methods of authentication:
@@ -118,7 +118,7 @@ The following is a sequence diagram illustrating the steps involved in listing M
118
118
119
119
### Provisioning a new instance
120
120
121
-
A {% glossary_tooltip text="Cluster Operator" term_id="cluster-operator" %} can initiate the provisioning of a new instance by creating a `ServiceInstance` resource.
121
+
A {% glossary_tooltip text="Cluster Operator" term_id="cluster-operator" %} can initiate the provisioning of a new instance by creating a `ServiceInstance` resource.
122
122
123
123
This is an example of a `ServiceInstance` resource:
@@ -148,7 +148,7 @@ The following sequence diagram illustrates the steps involved in provisioning a
148
148
149
149
### Binding to a Managed Service
150
150
151
-
After a new instance has been provisioned, a {% glossary_tooltip text="Cluster Operator" term_id="cluster-operator" %} must bind to the Managed Service to get the connection credentials and service account details necessary for the application to use the service. This is done by creating a `ServiceBinding` resource.
151
+
After a new instance has been provisioned, a {% glossary_tooltip text="Cluster Operator" term_id="cluster-operator" %} must bind to the Managed Service to get the connection credentials and service account details necessary for the application to use the service. This is done by creating a `ServiceBinding` resource.
152
152
153
153
The following is an example of a `ServiceBinding` resource:
154
154
@@ -162,7 +162,7 @@ spec:
162
162
instanceRef:
163
163
name: cloud-queue-instance
164
164
#####
165
-
# Additional information can be added here, such as a secretName or
165
+
# Additional information can be added here, such as a secretName or
166
166
# service account parameters, which may be used by the Service Broker.
Use [Helm](https://helm.sh/) to install Service Catalog on your Kubernetes cluster. Up to date information on this process can be found at the [kubernetes-incubator/service-catalog](https://github.com/kubernetes-incubator/service-catalog/blob/master/docs/install.md) repo.
Use the [Service Catalog Installer](https://github.com/GoogleCloudPlatform/k8s-service-catalog#installation) tool to easily install or uninstall Service Catalog on your Kubernetes cluster. This CLI tool is installed as `sc` in your local environment.
11
11
@@ -15,7 +15,7 @@ Use the [Service Catalog Installer](https://github.com/GoogleCloudPlatform/k8s-s
15
15
{% capture prerequisites %}
16
16
* Understand the key concepts of [Service Catalog](/docs/concepts/service-catalog/).
17
17
* Install [Go 1.6+](https://golang.org/dl/) and set the `GOPATH`.
18
-
* Install the [cfssl](https://github.com/cloudflare/cfssl) tool needed for generating SSL artifacts.
18
+
* Install the [cfssl](https://github.com/cloudflare/cfssl) tool needed for generating SSL artifacts.
19
19
* Service Catalog requires Kubernetes version 1.7+.
20
20
*[Install and setup kubectl](https://kubernetes.io/docs/tasks/tools/install-kubectl/) so that it is configured to connect to a Kubernetes v1.7+ cluster.
21
21
* The kubectl user must be bound to the *cluster-admin* role for it to install Service Catalog. To ensure that this is true, run the following command:
@@ -44,11 +44,11 @@ First, verify that all dependencies have been installed. Run:
44
44
sc check
45
45
```
46
46
47
-
If the check is successful, it should return:
47
+
If the check is successful, it should return:
48
48
49
49
```
50
50
Dependency check passed. You are good to go.
51
-
```
51
+
```
52
52
53
53
Next, run the install command and specify the `storageclass` that you want to use for the backup:
0 commit comments