Skip to content

Commit 8af9d28

Browse files
authored
Merge pull request #34 from Cryptophobia/master
chore(install-v2.sh): hephy google storage deis cli links
2 parents 4d010b5 + 9fa8304 commit 8af9d28

2 files changed

Lines changed: 38 additions & 10 deletions

File tree

README.md

Lines changed: 29 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,19 @@
11

2-
|![](https://upload.wikimedia.org/wikipedia/commons/thumb/1/17/Warning.svg/156px-Warning.svg.png) | Deis Workflow will soon no longer be maintained.<br />Please [read the announcement](https://deis.com/blog/2017/deis-workflow-final-release/) for more detail. |
2+
|![](https://upload.wikimedia.org/wikipedia/commons/thumb/4/4c/Anchor_pictogram_yellow.svg/156px-Anchor_pictogram_yellow.svg.png) | Hephy Workflow is the open source fork of Deis Workflow.<br />Please [go here](https://www.teamhephy.com/) for more detail. |
33
|---:|---|
4+
| 08/27/2018 | Team Hephy [blog][] comes online |
5+
| 08/20/2018 | Deis [#community slack][] goes dark |
6+
| 08/10/2018 | Hephy Workflow [v2.19.4][] fourth patch release |
7+
| 08/08/2018 | [Deis website][] goes dark, then redirects to Azure Kubernetes Service |
8+
| 08/01/2018 | Hephy Workflow [v2.19.3][] third patch release |
9+
| 07/17/2018 | Hephy Workflow [v2.19.2][] second patch release |
10+
| 07/12/2018 | Hephy Workflow [v2.19.1][] first patch release |
11+
| 06/29/2018 | Hephy Workflow [v2.19.0][] first release in the open source fork of Deis |
12+
| 06/16/2018 | Hephy Workflow [v2.19][] series is announced |
13+
| 03/01/2018 | End of Deis Workflow maintenance: critical patches no longer merged |
14+
| 12/11/2017 | Team Hephy [slack community][] invites first volunteers |
415
| 09/07/2017 | Deis Workflow [v2.18][] final release before entering maintenance mode |
5-
| 03/01/2018 | End of Workflow maintenance: critical patches no longer merged |
16+
| 09/06/2017 | Team Hephy [slack community][] comes online |
617

718
# Deis Client
819

@@ -157,3 +168,19 @@ To learn more about a command run `deis help <command>`.
157168
see [LICENSE](https://github.com/teamhephy/workflow-cli/blob/master/LICENSE)
158169

159170
[v2.18]: https://github.com/teamhephy/workflow/releases/tag/v2.18.0
171+
[k8s-home]: http://kubernetes.io
172+
[install-k8s]: http://kubernetes.io/gettingstarted/
173+
[mkdocs]: http://www.mkdocs.org/
174+
[issues]: https://github.com/teamhephy/workflow/issues
175+
[prs]: https://github.com/teamhephy/workflow/pulls
176+
[Deis website]: http://deis.com/
177+
[blog]: https://blog.teamhephy.info/blog/
178+
[#community slack]: https://slack.deis.io/
179+
[slack community]: https://slack.teamhephy.com/
180+
[v2.18]: https://github.com/teamhephy/workflow/releases/tag/v2.18.0
181+
[v2.19]: https://web.teamhephy.com
182+
[v2.19.0]: https://gist.github.com/Cryptophobia/24c204583b18b9fc74c629fb2b62dfa3/revisions
183+
[v2.19.1]: https://github.com/teamhephy/workflow/releases/tag/v2.19.1
184+
[v2.19.2]: https://github.com/teamhephy/workflow/releases/tag/v2.19.2
185+
[v2.19.3]: https://github.com/teamhephy/workflow/releases/tag/v2.19.3
186+
[v2.19.4]: https://github.com/teamhephy/workflow/releases/tag/v2.19.4

install-v2.sh

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
# Invoking this script:
44
#
55
# To install the latest stable version:
6-
# curl https://deis.io/deis-cli/install-v2.sh | sh
6+
# curl https://raw.githubusercontent.com/teamhephy/workflow-cli/master/install-v2.sh | sh
77
#
88
# To install a specific released version ($VERSION):
9-
# curl https://deis.io/deis-cli/install-v2.sh | sh -s $VERSION
9+
# curl https://raw.githubusercontent.com/teamhephy/workflow-cli/master/install-v2.sh | sh -s $VERSION
1010
#
1111
# - download deis cli binary
1212
# - making sure deis cli binary is executable
@@ -24,18 +24,18 @@ check_platform_arch() {
2424
if ! echo "${supported}" | tr ' ' '\n' | grep -q "${PLATFORM}-${ARCH}"; then
2525
cat <<EOF
2626
27-
The Deis Workflow CLI (deis) is not currently supported on ${PLATFORM}-${ARCH}.
27+
The Hephy Workflow CLI (deis) is not currently supported on ${PLATFORM}-${ARCH}.
2828
29-
See https://deis.com/workflow/ for more information.
29+
See https://github.com/teamhephy/workflow-cli for more information.
3030
3131
EOF
3232
fi
3333
}
3434

3535
PLATFORM="$(uname | tr '[:upper:]' '[:lower:]')"
3636
ARCH="$(uname -m)"
37-
# https://storage.googleapis.com/workflow-cli-release/v2.0.0/deis-v2.0.0-darwin-386
38-
DEIS_BIN_URL_BASE="https://storage.googleapis.com/workflow-cli-release"
37+
# https://storage.googleapis.com/hephy-workflow-cli-release/v2.18.0/deis-v2.18.0-darwin-386
38+
DEIS_BIN_URL_BASE="https://storage.googleapis.com/hephy-workflow-cli-release""
3939
4040
if [ "${ARCH}" = "x86_64" ]; then
4141
ARCH="amd64"
@@ -50,15 +50,16 @@ if [ "${VERSION}" != 'stable' ]; then
5050
fi
5151
5252
echo "Downloading ${DEIS_CLI} From Google Cloud Storage..."
53+
echo "Downloading binary from here: ${DEIS_BIN_URL_BASE}/${DEIS_CLI_PATH}
5354
curl -fsSL -o deis "${DEIS_BIN_URL_BASE}/${DEIS_CLI_PATH}"
5455

5556
chmod +x deis
5657

5758
cat <<EOF
5859
59-
The Deis Workflow CLI (deis) is now available in your current directory.
60+
The Hephy Workflow CLI (deis) is now available in your current directory.
6061
61-
To learn more about Deis Workflow, execute:
62+
To learn more about Hephy Workflow, execute:
6263
6364
$ ./deis --help
6465

0 commit comments

Comments
 (0)