Skip to content

Commit 3dd19e6

Browse files
committed
docs(v2.1.0): Updates docs for latest release
1 parent 7bbb8a1 commit 3dd19e6

11 files changed

Lines changed: 73 additions & 73 deletions

File tree

_scripts/deploy.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
cd "$(dirname "$0")" || exit 1
77

8-
export IMAGE_PREFIX=deisci VERSION=v2.0.0
8+
export IMAGE_PREFIX=deisci VERSION=v2.1.0
99
docker login -e="$DOCKER_EMAIL" -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD"
1010
DEIS_REGISTRY='' make -C .. docker-build docker-push
1111
docker login -e="$QUAY_EMAIL" -u="$QUAY_USERNAME" -p="$QUAY_PASSWORD" quay.io

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ The helm classic chart for Deis Workflow can be easily configured to connect Wor
1717
* Note: Depending on your chosen object storage you may need to provide globally unique bucket names.
1818
* Note: If you provide credentials with sufficient access to the underlying storage, Workflow components will create the buckets if they do not exist.
1919
* **Step 2:** If applicable, generate credentials that have write access to the storage buckets created in Step 1
20-
* **Step 3:** If you haven't already fetched the helm classic chart, do so with `helmc fetch deis/workflow-v2.0.0`
20+
* **Step 3:** If you haven't already fetched the helm classic chart, do so with `helmc fetch deis/workflow-v2.1.0`
2121
* **Step 4:** Update storage details either by setting the appropriate environment variables or by modifying the template file `tpl/generate_params.toml`
2222
* **1.** Using environment variables:
2323
* Set `STORAGE_TYPE` to `s3`, `azure` or `gcs`, then set the following environment variables accordingly.
@@ -41,14 +41,14 @@ The helm classic chart for Deis Workflow can be easily configured to connect Wor
4141
```
4242

4343
* **2.** Using template file `tpl/generate_params.toml`:
44-
* Open the helm classic chart with `helmc edit workflow-v2.0.0` and look for the template file `tpl/generate_params.toml`
44+
* Open the helm classic chart with `helmc edit workflow-v2.1.0` and look for the template file `tpl/generate_params.toml`
4545
* Update the `storage` parameter to reference the storage platform you are using: `s3`, `azure`, `gcs`
4646
* Update the values in the section which corresponds to your storage type, including region, bucket names and access credentials
4747
* Note: you do not need to base64 encode any of these values as Helm Classic will handle encoding automatically
48-
* **Step 5:** Save your changes and re-generate the helm classic chart by running `helmc generate -x manifests workflow-v2.0.0`
48+
* **Step 5:** Save your changes and re-generate the helm classic chart by running `helmc generate -x manifests workflow-v2.1.0`
4949
* **Step 6:** Check the generated file in your manifests directory, you should see `deis-objectstorage-secret.yaml`
5050

51-
You are now ready to `helmc install workflow-v2.0.0` using your desired object storage.
51+
You are now ready to `helmc install workflow-v2.1.0` using your desired object storage.
5252

5353
## Object Storage Configuration and Credentials
5454

src/installing-workflow/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,10 @@ $ helmc repo add deis https://github.com/deis/charts
5454
Now that you have Helm Classic installed and have added the Deis Chart Repository, install Workflow by running:
5555

5656
```
57-
$ helmc fetch deis/workflow-v2.0.0 # fetches the chart into a
57+
$ helmc fetch deis/workflow-v2.1.0 # fetches the chart into a
5858
# local workspace
59-
$ helmc generate -x manifests workflow-v2.0.0 # generates various secrets
60-
$ helmc install workflow-v2.0.0 # injects resources into
59+
$ helmc generate -x manifests workflow-v2.1.0 # generates various secrets
60+
$ helmc install workflow-v2.1.0 # injects resources into
6161
# your cluster
6262
```
6363

src/managing-workflow/component-configuration.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ or service. Helm is heavily influenced by [Homebrew](http://brew.sh/), including
55
[formula model](https://github.com/Homebrew/homebrew-core). A Helm chart is to Helm as a Formula
66
is to Homebrew.
77

8-
When you run `helmc fetch deis/workflow-v2.0.0`, you can customize the chart with
9-
`helmc edit workflow-v2.0.0`. To customize the respective component, edit
8+
When you run `helmc fetch deis/workflow-v2.1.0`, you can customize the chart with
9+
`helmc edit workflow-v2.1.0`. To customize the respective component, edit
1010
`manifests/deis-<component>-rc.yaml` and modify the `env` section of the component to tune these
1111
settings.
1212

src/managing-workflow/upgrading-workflow.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -67,27 +67,27 @@ $ kubectl --namespace=deis get secret database-creds -o yaml > ~/active-deis-dat
6767
$ kubectl --namespace=deis get secret builder-ssh-private-keys -o yaml > ~/active-deis-builder-secret-ssh-private-keys.yaml
6868
6969
# fetch new chart
70-
$ helmc fetch deis/workflow-v2.0.0
70+
$ helmc fetch deis/workflow-v2.1.0
7171
7272
# update your off-cluster storage configuration
73-
$ $EDITOR $(helmc home)/workspace/charts/workflow-v2.0.0/tpl/generate_params.toml
73+
$ $EDITOR $(helmc home)/workspace/charts/workflow-v2.1.0/tpl/generate_params.toml
7474
7575
# generate new templates
76-
$ helmc generate -x manifests workflow-v2.0.0
76+
$ helmc generate -x manifests workflow-v2.1.0
7777
7878
# copy your active database secrets into the helmc workspace
7979
$ cp ~/active-deis-database-secret-creds.yaml \
80-
$(helmc home)/workspace/charts/workflow-v2.0.0/manifests/deis-database-secret-creds.yaml
80+
$(helmc home)/workspace/charts/workflow-v2.1.0/manifests/deis-database-secret-creds.yaml
8181
8282
# copy your active builder ssh keys into the helmc workspace
8383
$ cp ~/active-deis-builder-secret-ssh-private-keys.yaml \
84-
$(helmc home)/workspace/charts/workflow-v2.0.0/manifests/deis-builder-secret-ssh-private-keys.yaml
84+
$(helmc home)/workspace/charts/workflow-v2.1.0/manifests/deis-builder-secret-ssh-private-keys.yaml
8585
8686
# uninstall workflow
87-
$ helmc uninstall workflow-rc2 -n deis
87+
$ helmc uninstall workflow-v2.0.0 -n deis
8888
89-
# install workflow v2.0.0
90-
$ helmc install workflow-v2.0.0
89+
# install workflow v2.1.0
90+
$ helmc install workflow-v2.1.0
9191
```
9292

9393
Make sure to copy the existing `deis-database-secret-creds.yaml` manifest into the new chart

src/quickstart/install-cli-tools.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ should move it somewhere in your $PATH:
1515
Check your work by running `deis version`:
1616

1717
$ deis version
18-
2.0.0
18+
2.1.0
1919

2020
## Helm Classic Installation
2121

src/quickstart/provider/aws/install-aws.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,10 @@ $ helmc repo add deis https://github.com/deis/charts
4242
Now that you have Helm Classic installed and have added the Deis Chart Repository, install Workflow by running:
4343

4444
```
45-
$ helmc fetch deis/workflow-v2.0.0 # fetches the chart into a
45+
$ helmc fetch deis/workflow-v2.1.0 # fetches the chart into a
4646
# local workspace
47-
$ helmc generate -x manifests workflow-v2.0.0 # generates various secrets
48-
$ helmc install workflow-v2.0.0 # injects resources into
47+
$ helmc generate -x manifests workflow-v2.1.0 # generates various secrets
48+
$ helmc install workflow-v2.1.0 # injects resources into
4949
# your cluster
5050
```
5151

src/quickstart/provider/gke/install-gke.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,10 @@ $ helmc repo add deis https://github.com/deis/charts
4040
Now that you have Helm installed and have added the Deis Chart Repository, install Workflow by running:
4141

4242
```
43-
$ helmc fetch deis/workflow-v2.0.0 # fetches the chart into a
43+
$ helmc fetch deis/workflow-v2.1.0 # fetches the chart into a
4444
# local workspace
45-
$ helmc generate -x manifests workflow-v2.0.0 # generates various secrets
46-
$ helmc install workflow-v2.0.0 # injects resources into
45+
$ helmc generate -x manifests workflow-v2.1.0 # generates various secrets
46+
$ helmc install workflow-v2.1.0 # injects resources into
4747
# your cluster
4848
```
4949

src/quickstart/provider/vagrant/install-vagrant.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,10 @@ $ helmc repo add deis https://github.com/deis/charts
4040
Now that you have Helm installed and have added the Deis Chart Repository, install Workflow by running:
4141

4242
```
43-
$ helmc fetch deis/workflow-v2.0.0 # fetches the chart into a
43+
$ helmc fetch deis/workflow-v2.1.0 # fetches the chart into a
4444
# local workspace
45-
$ helmc generate -x manifests workflow-v2.0.0 # generates various secrets
46-
$ helmc install workflow-v2.0.0 # injects resources into
45+
$ helmc generate -x manifests workflow-v2.1.0 # generates various secrets
46+
$ helmc install workflow-v2.1.0 # injects resources into
4747
# your cluster
4848
```
4949

0 commit comments

Comments
 (0)