From 44ebdc39922bf64073dc767c2a7ddaa2a2c626b1 Mon Sep 17 00:00:00 2001 From: SNiemann15 <63098666+SNiemann15@users.noreply.github.com> Date: Wed, 16 Sep 2020 14:46:01 +0200 Subject: [PATCH] odo installation instructions for IBM Z updated urls --- .../developer_cli_odo/installing-odo.adoc | 2 + .../developer_cli_odo/understanding-odo.adoc | 34 ++++++--------- ...-odo-installing-odo-on-linux-on-ibm-z.adoc | 43 +++++++++++++++++++ 3 files changed, 57 insertions(+), 22 deletions(-) create mode 100644 modules/developer-cli-odo-installing-odo-on-linux-on-ibm-z.adoc diff --git a/cli_reference/developer_cli_odo/installing-odo.adoc b/cli_reference/developer_cli_odo/installing-odo.adoc index bd788419b0..2bfa92e3a5 100644 --- a/cli_reference/developer_cli_odo/installing-odo.adoc +++ b/cli_reference/developer_cli_odo/installing-odo.adoc @@ -16,6 +16,8 @@ You can also find the URL to the latest binaries from the {product-title} web co include::modules/developer-cli-odo-installing-odo-on-linux.adoc[leveloffset=+1] +include::modules/developer-cli-odo-installing-odo-on-linux-on-ibm-z.adoc[leveloffset=+1] + include::modules/developer-cli-odo-installing-odo-on-windows.adoc[leveloffset=+1] include::modules/developer-cli-odo-installing-odo-on-macos.adoc[leveloffset=+1] diff --git a/cli_reference/developer_cli_odo/understanding-odo.adoc b/cli_reference/developer_cli_odo/understanding-odo.adoc index 454ae893de..4333289a56 100644 --- a/cli_reference/developer_cli_odo/understanding-odo.adoc +++ b/cli_reference/developer_cli_odo/understanding-odo.adoc @@ -40,46 +40,36 @@ In `{odo-title}`, services are provisioned from the OpenShift Service Catalog an [id="odo-supported-languages-and-images"] === Officially supported languages and corresponding container images -.Supported languages, container images, and package managers +.Supported languages, container images, package managers, and platforms [options="header"] |=== -|Language |Container image |Package manager +|Language |Container image |Package manager |Platform |*Node.js* -|https://registry.centos.org/centos/nodejs-10-centos7/latest[centos/nodejs-10-centos7] -|NPM - -| -|https://hub.docker.com/r/centos/nodejs-12-centos7[centos/nodejs-12-centos7] -|NPM - -| -|https://catalog.redhat.com/software/containers/rhscl/nodejs-12-rhel7/[rhscl/nodejs-12-rhel7] -|NPM - -| -|https://www.github.com/bucharest-gold/centos7-s2i-nodejs[bucharestgold/centos7-s2i-nodejs] -|NPM - -| -|https://access.redhat.com/containers/#/registry.access.redhat.com/rhscl/nodejs-8-rhel7[rhscl/nodejs-8-rhel7] -|NPM - -| |https://access.redhat.com/containers/#/registry.access.redhat.com/rhscl/nodejs-10-rhel7[rhscl/nodejs-10-rhel7] |NPM +|amd64, s390x + +| +|https://access.redhat.com/containers/#/registry.access.redhat.com/rhscl/nodejs-12-rhel7[rhscl/nodejs-12-rhel7] +|NPM +|amd64, s390x |*Java* |https://access.redhat.com/containers/#/registry.access.redhat.com/redhat-openjdk-18/openjdk18-openshift[redhat-openjdk-18/openjdk18-openshift] |Maven, Gradle +|amd64, s390x | |https://access.redhat.com/containers/#/registry.access.redhat.com/openjdk/openjdk-11-rhel8[openjdk/openjdk-11-rhel8] |Maven, Gradle +|amd64, s390x | |https://access.redhat.com/containers/#/registry.access.redhat.com/openjdk/openjdk-11-rhel7[openjdk/openjdk-11-rhel7] |Maven, Gradle +|amd64, s390x |=== + [id="odo-listing-available-images"] ==== Listing available container images diff --git a/modules/developer-cli-odo-installing-odo-on-linux-on-ibm-z.adoc b/modules/developer-cli-odo-installing-odo-on-linux-on-ibm-z.adoc new file mode 100644 index 0000000000..55fadc9572 --- /dev/null +++ b/modules/developer-cli-odo-installing-odo-on-linux-on-ibm-z.adoc @@ -0,0 +1,43 @@ +// Module included in the following assemblies: +// +// * cli_reference/developer_cli_odo/installing-odo.adoc + +[id="installing-odo-on-linux-on-ibm-z"] + += Installing {odo-title} on Linux on IBM Z and LinuxONE + +== Binary installation + +.Procedure + +. Obtain the binary: ++ +[source,terminal] +---- +# curl -L https://mirror.openshift.com/pub/openshift-v4/clients/odo/latest/odo-linux-s390x -o /usr/local/bin/odo +---- + +. Change the permissions on the file: ++ +[source,terminal] +---- +# chmod +x /usr/local/bin/odo +---- + +== Tarball installation + +.Procedure + +. Obtain the tarball: ++ +[source,terminal] +---- +# sh -c 'curl -L https://mirror.openshift.com/pub/openshift-v4/clients/odo/latest/odo-linux-s390x.tar.gz | gzip -d > /usr/local/bin/odo' +---- + +. Change the permissions on the file: ++ +[source,terminal] +---- +# chmod +x /usr/local/bin/odo +----