Skip to content

Commit 4cfa9d5

Browse files
authored
docs(*): rm no longer needed pipe to sed (#817)
1 parent a2c6b14 commit 4cfa9d5

4 files changed

Lines changed: 6 additions & 5 deletions

File tree

src/installing-workflow/configuring-object-storage.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Every component that relies on object storage uses two inputs for configuration:
1111
1. Component-specific environment variables (e.g. `BUILDER_STORAGE` and `REGISTRY_STORAGE`)
1212
2. Access credentials stored as a Kubernetes secret named `objectstorage-keyfile`
1313

14-
The helm chart for Deis Workflow can be easily configured to connect Workflow components to off-cluster object storage. Deis Workflow currently supports Google Compute Storage, Amazon S3, Azure Blob Storage and OpenStack Swift Storage.
14+
The helm chart for Deis Workflow can be easily configured to connect Workflow components to off-cluster object storage. Deis Workflow currently supports Google Compute Storage, Amazon S3, [Azure Blob Storage][] and OpenStack Swift Storage.
1515

1616
### Step 1: Create storage buckets
1717

@@ -35,7 +35,7 @@ If you haven't already added the Helm repo, do so with `helm repo add deis https
3535

3636
Operators should configure object storage by editing the Helm values file before running `helm install`. To do so:
3737

38-
* Fetch the Helm values by running `helm inspect values deis/workflow | sed -n '1!p' > values.yaml`
38+
* Fetch the Helm values by running `helm inspect values deis/workflow > values.yaml`
3939
* Update the `global/storage` parameter to reference the platform you are using, e.g. `s3`, `azure`, `gcs`, or `swift`
4040
* Find the corresponding section for your storage type and provide appropriate values including region, bucket names, and access credentials.
4141
* Save your changes.
@@ -51,3 +51,4 @@ You are now ready to run `helm install deis/workflow --namespace deis -f values.
5151

5252
[minio]: ../understanding-workflow/components.md#object-storage
5353
[aws-iam]: http://docs.aws.amazon.com/IAM/latest/UserGuide/introduction.html
54+
[Azure Blob Storage]: https://azure.microsoft.com/en-us/services/storage/blobs/

src/installing-workflow/configuring-postgres.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ $ psql -h <host> -p <port> -d postgres -U <"postgres" or your own username>
3131

3232
The Helm chart for Deis Workflow can be easily configured to connect the Workflow controller component to an off-cluster PostgreSQL database.
3333

34-
* **Step 1:** If you haven't already fetched the values, do so with `helm inspect values deis/workflow | sed -n '1!p' > values.yaml`
34+
* **Step 1:** If you haven't already fetched the values, do so with `helm inspect values deis/workflow > values.yaml`
3535
* **Step 2:** Update database connection details by modifying `values.yaml`:
3636
* Update the `database_location` parameter to `off-cluster`.
3737
* Update the values in the `[database]` configuration section to properly reflect all connection details.

src/installing-workflow/configuring-registry.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Deis Workflow currently supports:
2323

2424
## Configuration
2525

26-
1. If you haven't already fetched the values file, do so with `helm inspect values deis/workflow | sed -n '1!p' > values.yaml`
26+
1. If you haven't already fetched the values file, do so with `helm inspect values deis/workflow > values.yaml`
2727
1. Update registry location details by modifying the values file:
2828
* Update the `registry_location` parameter to reference the registry location you are using: `off-cluster`, `ecr`, `gcr`
2929
* Update the values in the section which corresponds to your registry location type.

src/managing-workflow/tuning-component-settings.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Helm Charts are a set of Kubernetes manifests that reflect best practices for de
44
application or service on Kubernetes.
55

66
After you add the Deis Chart Repository, you can customize the chart using
7-
`helm inspect values deis/workflow | sed -n '1!p' > values.yaml` before using `helm install` to complete the
7+
`helm inspect values deis/workflow > values.yaml` before using `helm install` to complete the
88
installation.
99

1010
There are a few ways to customize the respective component:

0 commit comments

Comments
 (0)