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
{{ message }}
This repository was archived by the owner on Apr 13, 2020. It is now read-only.
Copy file name to clipboardExpand all lines: guides/project-service-management-guide.md
+68-2
Original file line number
Diff line number
Diff line change
@@ -20,8 +20,8 @@ This document describes the workflow for deploying a set of services
20
20
configured to sync from the single Materialized Manifest Repositories, and
21
21
multiple Project repositories can be pointed to the single High Level
22
22
Definition Repository.
23
-
- Step 5 can be repeated each time you need to onboard a service to your Bedrock
24
-
automated infrastructure.
23
+
- Step 5 can be repeated each time you need to onboard a service to your
24
+
Bedrxock automated infrastructure.
25
25
- Step 6 can be run as many times as required to add a service revision to a
26
26
Bedrock project.
27
27
@@ -251,6 +251,72 @@ application repositories
251
251
**NOTE**`spk service` command documentation can be found
252
252
[here](/guides/service-management.md).
253
253
254
+
#### Helm Configuration for SPK
255
+
256
+
`spk service create` allows a user to configure a service a number fo ways with
257
+
a backing helm chart.
258
+
259
+
Presently, there are are a number of options for `spk service create` documented
260
+
below:
261
+
262
+
```
263
+
-c, --helm-chart-chart <helm-chart> bedrock helm chart name. --helm-chart-* and --helm-config-* are exclusive; you may only use one. (default: "")
264
+
-r, --helm-chart-repository <helm-repository> bedrock helm chart repository. --helm-chart-* and --helm-config-* are exclusive; you may only use one. (default: "")
265
+
266
+
-g, --helm-config-git <helm-git> bedrock helm chart configuration git repository. --helm-chart-* and --helm-config-* are exclusive; you may only use one. (default: "")
267
+
-b, --helm-config-branch <helm-branch> bedrock custom helm chart configuration branch. --helm-chart-* and --helm-config-* are exclusive; you may only use one. (default: "")
268
+
-p, --helm-config-path <helm-path> bedrock custom helm chart configuration path. --helm-chart-* and --helm-config-* are exclusive; you may only use one. (default: "")
269
+
```
270
+
271
+
As noted by the the documentation text, `helm-chart-*` and `helm-config-*` are
272
+
both mutually exclusive configurations ie: you can _only_ use one set of
273
+
configurations or the other.
274
+
275
+
This section intends on documenting the various use cases for both sets of
276
+
mutually exclusive configurations.
277
+
278
+
##### Helm Charts in a well-known Helm Repository
279
+
280
+
A Helm Repository is a well known set of helm charts conforming to the
0 commit comments