1
0
mirror of https://github.com/openshift/openshift-docs.git synced 2026-02-06 06:46:26 +01:00

odo installation instructions for IBM Z updated urls

This commit is contained in:
SNiemann15
2020-09-16 14:46:01 +02:00
parent a40aee2614
commit d79ea4ee87
3 changed files with 57 additions and 22 deletions

View File

@@ -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]

View File

@@ -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

View File

@@ -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
----