From 5d71202c9f9db7293bb49a6a865d702e9010a7ae Mon Sep 17 00:00:00 2001 From: Kingdon Barrett Date: Sun, 17 Feb 2019 09:00:29 -0500 Subject: [PATCH] docs(workflow): s/Deis/Hephy/,/charts.deis/hephy/ Update some terminology and correct broken references to charts.deis.com which is out-of-service. --- src/_includes/install-workflow.md | 10 ++++---- src/installing-workflow/chart-provenance.md | 10 ++++---- .../configuring-object-storage.md | 2 +- src/installing-workflow/index.md | 24 +++++++++---------- .../provider/azure-acs/install-azure-acs.md | 14 +++++------ .../provider/minikube/install-minikube.md | 14 +++++------ 6 files changed, 37 insertions(+), 37 deletions(-) diff --git a/src/_includes/install-workflow.md b/src/_includes/install-workflow.md index 5bd4f81c9..665d540e7 100644 --- a/src/_includes/install-workflow.md +++ b/src/_includes/install-workflow.md @@ -10,22 +10,22 @@ Server: &version.Version{SemVer:"v2.5.0", GitCommit:"012cb0ac1a1b2f888144ef5a67b Ensure the `kubectl` client is installed and can connect to your Kubernetes cluster. -## Add the Deis Chart Repository +## Add the Hephy Chart Repository -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. +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. Add this repository to Helm: ``` -$ helm repo add deis https://charts.deis.com/workflow +$ helm repo add hephy https://charts.teamhephy.com/ ``` -## Install Deis Workflow +## Install Hephy Workflow Now that Helm is installed and the repository has been added, install Workflow by running: ``` -$ helm install deis/workflow --namespace deis +$ helm install hephy/workflow --namespace deis ``` Helm will install a variety of Kubernetes resources in the `deis` namespace. diff --git a/src/installing-workflow/chart-provenance.md b/src/installing-workflow/chart-provenance.md index 4e3262163..3c51eecd8 100644 --- a/src/installing-workflow/chart-provenance.md +++ b/src/installing-workflow/chart-provenance.md @@ -31,10 +31,10 @@ $ curl https://keybase.io/deis/key.asc | gpg --import Charts signed with this key can then be verified when fetched: ``` -$ helm repo add deis https://charts.deis.com/workflow -"deis" has been added to your repositories +$ helm repo add hephy https://charts.teamhephy.com/ +"hephy" has been added to your repositories -$ helm fetch --verify deis/workflow --version v2.17.0 +$ helm fetch --verify hephy/workflow --version v2.17.0 Verification: &{0xc420704c80 sha256:a2a140dca075a2eabe20422f1aa5bc1ce210b18a326472d6b2708e1a93afebea workflow-v2.17.0.tgz} ``` @@ -43,13 +43,13 @@ One can then inspect the fetched `workflow-v2.17.0.tgz.prov` provenance file. If the chart was not signed, the command above would result in: ``` -Error: Failed to fetch provenance "https://charts.deis.com/workflow/workflow-v2.17.0.tgz.prov" +Error: Failed to fetch provenance "https://charts.teamhephy.com/workflow-v2.17.0.tgz.prov" ``` Alternatively, the chart can also be verified at install time: ``` -$ helm install --verify deis/workflow --namespace deis +$ helm install --verify hephy/workflow --namespace deis NAME: exiled-mink LAST DEPLOYED: Wed Aug 9 08:22:16 2017 NAMESPACE: deis diff --git a/src/installing-workflow/configuring-object-storage.md b/src/installing-workflow/configuring-object-storage.md index 1d502be88..d13bccf5f 100644 --- a/src/installing-workflow/configuring-object-storage.md +++ b/src/installing-workflow/configuring-object-storage.md @@ -29,7 +29,7 @@ If you are using AWS S3 and your Kubernetes nodes are configured with appropriat ### Step 3: Add Deis Repo -If you haven't already added the Helm repo, do so with `helm repo add deis https://charts.deis.com/workflow` +If you haven't already added the Helm repo, do so with `helm repo add hephy https://charts.teamhephy.com/` ### Step 4: Configure Workflow Chart diff --git a/src/installing-workflow/index.md b/src/installing-workflow/index.md index 3fe0f58aa..9ed7278d2 100644 --- a/src/installing-workflow/index.md +++ b/src/installing-workflow/index.md @@ -1,13 +1,13 @@ -# Installing Deis Workflow +# Installing Hephy Workflow This document is aimed at those who have already provisioned a [Kubernetes v1.3.4+][] cluster -and want to install Deis Workflow. If help is required getting started with Kubernetes and -Deis Workflow, follow the [quickstart guide](../quickstart/index.md) for assistance. +and want to install Hephy Workflow. If help is required getting started with Kubernetes and +Hephy Workflow, follow the [quickstart guide](../quickstart/index.md) for assistance. ## Prerequisites 1. Verify the [Kubernetes system requirements](system-requirements.md) -1. Install [Helm and Deis Workflow CLI](../quickstart/install-cli-tools.md) tools +1. Install [Helm and Hephy Workflow CLI](../quickstart/install-cli-tools.md) tools ## Check Your Setup @@ -36,7 +36,7 @@ If `helm` is already installed in cluster without sufficient rights, simply add ## Choose Your Deployment Strategy -Deis Workflow includes everything it needs to run out of the box. However, these defaults are aimed at simplicity rather than +Hephy Workflow includes everything it needs to run out of the box. However, these defaults are aimed at simplicity rather than production readiness. Production and staging deployments of Workflow should, at a minimum, use off-cluster storage which is used by Workflow components to store and backup critical data. Should an operator need to completely re-install 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 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. -## Add the Deis Chart Repository +## Add the Hephy Chart Repository -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. +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. Add this repository to Helm: ``` -$ helm repo add deis https://charts.deis.com/workflow +$ helm repo add hephy https://charts.teamhephy.com/ ``` -## Install Deis Workflow +## Install Hephy Workflow Now that Helm is installed and the repository has been added, install Workflow by running: ``` -$ helm install deis/workflow --namespace deis +$ helm install hephy/workflow --namespace deis ``` 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 deis-workflow-manager-2528409207-jkz2r 1/1 Running 0 4m ``` -Once all of the pods are in the `READY` state, Deis Workflow is up and running! +Once all of the pods are in the `READY` state, Hephy Workflow is up and running! After installing Workflow, [register a user and deploy an application](../quickstart/deploy-an-app.md). [Kubernetes v1.3.4+]: system-requirements.md#kubernetes-versions [helm]: https://github.com/kubernetes/helm/blob/master/docs/install.md -[valuesfile]: https://charts.deis.com/workflow/values-v2.17.0.yaml +[valuesfile]: https://charts.teamhephy.com/workflow/values-v2.17.0.yaml diff --git a/src/quickstart/provider/azure-acs/install-azure-acs.md b/src/quickstart/provider/azure-acs/install-azure-acs.md index 9864655da..68cf25d78 100644 --- a/src/quickstart/provider/azure-acs/install-azure-acs.md +++ b/src/quickstart/provider/azure-acs/install-azure-acs.md @@ -1,4 +1,4 @@ -# Install Deis Workflow on Azure Container Service +# Install Hephy Workflow on Azure Container Service ## Check Your Setup @@ -17,14 +17,14 @@ helm init Ensure the `kubectl` client is installed and can connect to your Kubernetes cluster. -## Add the Deis Chart Repository +## Add the Hephy Chart Repository -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. +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. Add this repository to Helm: ``` -$ helm repo add deis https://charts.deis.com/workflow +$ helm repo add hephy https://charts.teamhephy.com/ ``` ## Create New Azure Storage Account @@ -39,12 +39,12 @@ $ export AZURE_SA_KEY=`az storage account keys list -n $AZURE_SA_NAME -g $AZURE_ > 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. -## Install Deis Workflow +## Install Hephy Workflow Now that Helm is installed and the repository has been added, install Workflow by running: ``` -$ 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 +$ 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 ``` Helm will install a variety of Kubernetes resources in the `deis` namespace. @@ -81,7 +81,7 @@ deis-router-k1ond 1/1 Running 0 5m deis-workflow-manager-68nu6 1/1 Running 0 5m ``` -Once all of the pods are in the `READY` state, Deis Workflow is up and running! +Once all of the pods are in the `READY` state, Hephy Workflow is up and running! Next, [configure dns](dns.md) so you can register your first user and deploy an application. diff --git a/src/quickstart/provider/minikube/install-minikube.md b/src/quickstart/provider/minikube/install-minikube.md index b52b8bdad..8cb1ed7ca 100644 --- a/src/quickstart/provider/minikube/install-minikube.md +++ b/src/quickstart/provider/minikube/install-minikube.md @@ -1,4 +1,4 @@ -# Install Deis Workflow on Minikube +# Install Hephy Workflow on Minikube ## Check Your Setup @@ -12,22 +12,22 @@ Server: &version.Version{SemVer:"v2.5.0", GitCommit:"012cb0ac1a1b2f888144ef5a67b Ensure the `kubectl` client is installed and can connect to your Kubernetes cluster. -## Add the Deis Chart Repository +## Add the Hephy Chart Repository -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. +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. Add this repository to Helm: ``` -$ helm repo add deis https://charts.deis.com/workflow +$ helm repo add hephy https://charts.teamhephy.com/ ``` -## Install Deis Workflow +## Install Hephy Workflow Now that Helm is installed and the repository has been added, install Workflow by running: ``` -$ helm install deis/workflow --namespace deis --set router.host_port.enabled=true +$ helm install hephy/workflow --namespace deis --set router.host_port.enabled=true ``` Helm will install a variety of Kubernetes resources in the `deis` namespace. @@ -64,6 +64,6 @@ deis-router-k1ond 1/1 Running 0 5m deis-workflow-manager-68nu6 1/1 Running 0 5m ``` -Once all of the pods are in the `READY` state, Deis Workflow is up and running! +Once all of the pods are in the `READY` state, Hephy Workflow is up and running! Next, [configure dns](dns.md) so you can register your first user and deploy an application.