Skip to content

Commit 5d71202

Browse files
author
Kingdon Barrett
committed
docs(workflow): s/Deis/Hephy/,/charts.deis/hephy/
Update some terminology and correct broken references to charts.deis.com which is out-of-service.
1 parent c9cac62 commit 5d71202

6 files changed

Lines changed: 37 additions & 37 deletions

File tree

src/_includes/install-workflow.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,22 +10,22 @@ Server: &version.Version{SemVer:"v2.5.0", GitCommit:"012cb0ac1a1b2f888144ef5a67b
1010

1111
Ensure the `kubectl` client is installed and can connect to your Kubernetes cluster.
1212

13-
## Add the Deis Chart Repository
13+
## Add the Hephy Chart Repository
1414

15-
The Deis Chart Repository contains everything needed to install Deis Workflow onto a Kubernetes cluster, with a single `helm install deis/workflow --namespace deis` command.
15+
The Team Hephy Chart Repository contains everything needed to install Hephy Workflow onto a Kubernetes cluster, with a single `helm install hephy/workflow --namespace deis` command.
1616

1717
Add this repository to Helm:
1818

1919
```
20-
$ helm repo add deis https://charts.deis.com/workflow
20+
$ helm repo add hephy https://charts.teamhephy.com/
2121
```
2222

23-
## Install Deis Workflow
23+
## Install Hephy Workflow
2424

2525
Now that Helm is installed and the repository has been added, install Workflow by running:
2626

2727
```
28-
$ helm install deis/workflow --namespace deis
28+
$ helm install hephy/workflow --namespace deis
2929
```
3030

3131
Helm will install a variety of Kubernetes resources in the `deis` namespace.

src/installing-workflow/chart-provenance.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ $ curl https://keybase.io/deis/key.asc | gpg --import
3131
Charts signed with this key can then be verified when fetched:
3232

3333
```
34-
$ helm repo add deis https://charts.deis.com/workflow
35-
"deis" has been added to your repositories
34+
$ helm repo add hephy https://charts.teamhephy.com/
35+
"hephy" has been added to your repositories
3636
37-
$ helm fetch --verify deis/workflow --version v2.17.0
37+
$ helm fetch --verify hephy/workflow --version v2.17.0
3838
Verification: &{0xc420704c80 sha256:a2a140dca075a2eabe20422f1aa5bc1ce210b18a326472d6b2708e1a93afebea workflow-v2.17.0.tgz}
3939
```
4040

@@ -43,13 +43,13 @@ One can then inspect the fetched `workflow-v2.17.0.tgz.prov` provenance file.
4343
If the chart was not signed, the command above would result in:
4444

4545
```
46-
Error: Failed to fetch provenance "https://charts.deis.com/workflow/workflow-v2.17.0.tgz.prov"
46+
Error: Failed to fetch provenance "https://charts.teamhephy.com/workflow-v2.17.0.tgz.prov"
4747
```
4848

4949
Alternatively, the chart can also be verified at install time:
5050

5151
```
52-
$ helm install --verify deis/workflow --namespace deis
52+
$ helm install --verify hephy/workflow --namespace deis
5353
NAME: exiled-mink
5454
LAST DEPLOYED: Wed Aug 9 08:22:16 2017
5555
NAMESPACE: deis

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ If you are using AWS S3 and your Kubernetes nodes are configured with appropriat
2929

3030
### Step 3: Add Deis Repo
3131

32-
If you haven't already added the Helm repo, do so with `helm repo add deis https://charts.deis.com/workflow`
32+
If you haven't already added the Helm repo, do so with `helm repo add hephy https://charts.teamhephy.com/`
3333

3434
### Step 4: Configure Workflow Chart
3535

src/installing-workflow/index.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
# Installing Deis Workflow
1+
# Installing Hephy Workflow
22

33
This document is aimed at those who have already provisioned a [Kubernetes v1.3.4+][] cluster
4-
and want to install Deis Workflow. If help is required getting started with Kubernetes and
5-
Deis Workflow, follow the [quickstart guide](../quickstart/index.md) for assistance.
4+
and want to install Hephy Workflow. If help is required getting started with Kubernetes and
5+
Hephy Workflow, follow the [quickstart guide](../quickstart/index.md) for assistance.
66

77
## Prerequisites
88

99
1. Verify the [Kubernetes system requirements](system-requirements.md)
10-
1. Install [Helm and Deis Workflow CLI](../quickstart/install-cli-tools.md) tools
10+
1. Install [Helm and Hephy Workflow CLI](../quickstart/install-cli-tools.md) tools
1111

1212
## Check Your Setup
1313

@@ -36,7 +36,7 @@ If `helm` is already installed in cluster without sufficient rights, simply add
3636

3737
## Choose Your Deployment Strategy
3838

39-
Deis Workflow includes everything it needs to run out of the box. However, these defaults are aimed at simplicity rather than
39+
Hephy Workflow includes everything it needs to run out of the box. However, these defaults are aimed at simplicity rather than
4040
production readiness. Production and staging deployments of Workflow should, at a minimum, use off-cluster storage
4141
which is used by Workflow components to store and backup critical data. Should an operator need to completely re-install
4242
Workflow, the required components can recover from off-cluster storage. See the documentation for [configuring object
@@ -52,22 +52,22 @@ More rigorous installations would benefit from using outside sources for the fol
5252

5353
Workflow now offers [experimental native ingress](experimental-native-ingress.md) to take advantage of native Kubernetes routing. Any compatible Kubernetes ingress controller can be used in place of Workflow's nginx-based deis-router. Follow [this guide](experimental-native-ingress.md) to enable experimental native ingress.
5454

55-
## Add the Deis Chart Repository
55+
## Add the Hephy Chart Repository
5656

57-
The Deis Chart Repository contains everything needed to install Deis Workflow onto a Kubernetes cluster, with a single `helm install deis/workflow --namespace deis` command.
57+
The Team Hephy Chart Repository contains everything needed to install Hephy Workflow onto a Kubernetes cluster, with a single `helm install hephy/workflow --namespace deis` command.
5858

5959
Add this repository to Helm:
6060

6161
```
62-
$ helm repo add deis https://charts.deis.com/workflow
62+
$ helm repo add hephy https://charts.teamhephy.com/
6363
```
6464

65-
## Install Deis Workflow
65+
## Install Hephy Workflow
6666

6767
Now that Helm is installed and the repository has been added, install Workflow by running:
6868

6969
```
70-
$ helm install deis/workflow --namespace deis
70+
$ helm install hephy/workflow --namespace deis
7171
```
7272

7373
Helm will install a variety of Kubernetes resources in the `deis` namespace.
@@ -109,10 +109,10 @@ deis-router-2126433040-6sl6z 1/1 Running 0 4m
109109
deis-workflow-manager-2528409207-jkz2r 1/1 Running 0 4m
110110
```
111111

112-
Once all of the pods are in the `READY` state, Deis Workflow is up and running!
112+
Once all of the pods are in the `READY` state, Hephy Workflow is up and running!
113113

114114
After installing Workflow, [register a user and deploy an application](../quickstart/deploy-an-app.md).
115115

116116
[Kubernetes v1.3.4+]: system-requirements.md#kubernetes-versions
117117
[helm]: https://github.com/kubernetes/helm/blob/master/docs/install.md
118-
[valuesfile]: https://charts.deis.com/workflow/values-v2.17.0.yaml
118+
[valuesfile]: https://charts.teamhephy.com/workflow/values-v2.17.0.yaml

src/quickstart/provider/azure-acs/install-azure-acs.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Install Deis Workflow on Azure Container Service
1+
# Install Hephy Workflow on Azure Container Service
22

33
## Check Your Setup
44

@@ -17,14 +17,14 @@ helm init
1717

1818
Ensure the `kubectl` client is installed and can connect to your Kubernetes cluster.
1919

20-
## Add the Deis Chart Repository
20+
## Add the Hephy Chart Repository
2121

22-
The Deis Chart Repository contains everything needed to install Deis Workflow onto a Kubernetes cluster, with a single `helm install deis/workflow --namespace deis` command.
22+
The Team Hephy Chart Repository contains everything needed to install Hephy Workflow onto a Kubernetes cluster, with a single `helm install hephy/workflow --namespace deis` command.
2323

2424
Add this repository to Helm:
2525

2626
```
27-
$ helm repo add deis https://charts.deis.com/workflow
27+
$ helm repo add hephy https://charts.teamhephy.com/
2828
```
2929

3030
## Create New Azure Storage Account
@@ -39,12 +39,12 @@ $ export AZURE_SA_KEY=`az storage account keys list -n $AZURE_SA_NAME -g $AZURE_
3939

4040
> Note: Premium Storage skus are not supported yet due to [lack of block blob storage support](https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/using-blob-service-operations-with-azure-premium-storage) required for the deis database to function.
4141
42-
## Install Deis Workflow
42+
## Install Hephy Workflow
4343

4444
Now that Helm is installed and the repository has been added, install Workflow by running:
4545

4646
```
47-
$ helm install deis/workflow --namespace=deis --set global.storage=azure,azure.accountname=$AZURE_SA_NAME,azure.accountkey=$AZURE_SA_KEY,azure.registry_container=registry,azure.database_container=database,azure.builder_container=builder
47+
$ helm install hephy/workflow --namespace=deis --set global.storage=azure,azure.accountname=$AZURE_SA_NAME,azure.accountkey=$AZURE_SA_KEY,azure.registry_container=registry,azure.database_container=database,azure.builder_container=builder
4848
```
4949

5050
Helm will install a variety of Kubernetes resources in the `deis` namespace.
@@ -81,7 +81,7 @@ deis-router-k1ond 1/1 Running 0 5m
8181
deis-workflow-manager-68nu6 1/1 Running 0 5m
8282
```
8383

84-
Once all of the pods are in the `READY` state, Deis Workflow is up and running!
84+
Once all of the pods are in the `READY` state, Hephy Workflow is up and running!
8585

8686
Next, [configure dns](dns.md) so you can register your first user and deploy an application.
8787

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

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Install Deis Workflow on Minikube
1+
# Install Hephy Workflow on Minikube
22

33
## Check Your Setup
44

@@ -12,22 +12,22 @@ Server: &version.Version{SemVer:"v2.5.0", GitCommit:"012cb0ac1a1b2f888144ef5a67b
1212

1313
Ensure the `kubectl` client is installed and can connect to your Kubernetes cluster.
1414

15-
## Add the Deis Chart Repository
15+
## Add the Hephy Chart Repository
1616

17-
The Deis Chart Repository contains everything needed to install Deis Workflow onto a Kubernetes cluster, with a single `helm install deis/workflow --namespace deis` command.
17+
The Team Hephy Chart Repository contains everything needed to install Hephy Workflow onto a Kubernetes cluster, with a single `helm install hephy/workflow --namespace deis` command.
1818

1919
Add this repository to Helm:
2020

2121
```
22-
$ helm repo add deis https://charts.deis.com/workflow
22+
$ helm repo add hephy https://charts.teamhephy.com/
2323
```
2424

25-
## Install Deis Workflow
25+
## Install Hephy Workflow
2626

2727
Now that Helm is installed and the repository has been added, install Workflow by running:
2828

2929
```
30-
$ helm install deis/workflow --namespace deis --set router.host_port.enabled=true
30+
$ helm install hephy/workflow --namespace deis --set router.host_port.enabled=true
3131
```
3232

3333
Helm will install a variety of Kubernetes resources in the `deis` namespace.
@@ -64,6 +64,6 @@ deis-router-k1ond 1/1 Running 0 5m
6464
deis-workflow-manager-68nu6 1/1 Running 0 5m
6565
```
6666

67-
Once all of the pods are in the `READY` state, Deis Workflow is up and running!
67+
Once all of the pods are in the `READY` state, Hephy Workflow is up and running!
6868

6969
Next, [configure dns](dns.md) so you can register your first user and deploy an application.

0 commit comments

Comments
 (0)