Skip to content
This repository has been archived by the owner on Aug 2, 2023. It is now read-only.

Update installing-kabanero-foundation.adoc #249

Merged
merged 2 commits into from
Jan 3, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions ref/general/installation/installing-kabanero-foundation.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
:page-doc-number: 1.0
:sectanchors:

Kabanero version 0.3 has been tested on OpenShift Container Platform (OCP) 4.2. There is intent to expand testing to additional distributions, including upstream Kubernetes, in the future.
Kabanero version 0.4 has been tested on OpenShift Container Platform (OCP) 4.2. There is intent to expand testing to additional distributions, including upstream Kubernetes, in the future.

The Kabanero Open Project intends to build on open source distributions of Kubernetes; however, the current distribution of The Origin Community Distribution of Kubernetes (OKD) is lagging the commercial distributions. Due to a focus on building leading-edge capabilities and leveraging new features across the integrated open frameworks, the Kabanero Open Project is temporarily building on version 4 capabilities of the commercial distributions. When there is a comparable release of OKD, the Kabanero Open Project will return to it.

Expand All @@ -22,7 +22,7 @@ Kabanero uses Operator Lifecycle Manager (OLM) to manage its prerequisites. Sev
=== Scripted installation

. Obtain the installation script for the release of Kabanero that you wish to install.
* `curl -s -O -L https://github.com/kabanero-io/kabanero-operator/releases/download/0.3.1/install.sh`
* `curl -s -O -L https://github.com/kabanero-io/kabanero-operator/releases/download/0.4.0/install.sh`

. Review the `install.sh` script for any optional components that can be enabled by setting the required environment variable, or by editing the value in the script directly. Optional components are listed at the top of the script, below the section titled `Optional components`.

Expand All @@ -43,7 +43,7 @@ Kabanero uses Operator Lifecycle Manager (OLM) to manage its prerequisites. Sev

. Install the Appsody operator using the instructions to link:https://docs.openshift.com/container-platform/4.2/operators/olm-adding-operators-to-cluster.html[add an operator to your cluster]. Select the `certified-operators` catalog and the `beta` channel. This operator should be installed at the cluster scope.

. Install the OLM CatalogSource containing the Kabanero operator. The following YAML can be used, after substituting the required version (the example uses version 0.3.1):
. Install the OLM CatalogSource containing the Kabanero operator. The following YAML can be used, after substituting the required version (the example uses version 0.4.0):
+
[source,yaml]
----
Expand All @@ -54,14 +54,14 @@ metadata:
namespace: openshift-marketplace
spec:
sourceType: grpc
image: kabanero/kabanero-operator-registry:0.3.1
image: kabanero/kabanero-operator-registry:0.4.0
----

. Create the `kabanero` namespace using `oc new-project kabanero`

. Install the Che operator using the instructions to link:https://docs.openshift.com/container-platform/4.2/operators/olm-adding-operators-to-cluster.html[add an operator to your cluster]. Select the `community-operators` catalog and the `stable` channel. This operator should be installed to the `kabanero` namespace.

. Install the Kabanero operator using the instructions to link:https://docs.openshift.com/container-platform/4.2/operators/olm-adding-operators-to-cluster.html[add an operator to your cluster]. Select the `kabanero-catalog` catalog and the `release-0.3` channel. This operator should be installed to the `kabanero` namespace.
. Install the Kabanero operator using the instructions to link:https://docs.openshift.com/container-platform/4.2/operators/olm-adding-operators-to-cluster.html[add an operator to your cluster]. Select the `kabanero-catalog` catalog and the `release-0.4` channel. This operator should be installed to the `kabanero` namespace.

. As a `cluster-admin`, or as a user with `create` and `update` authority to the `kabaneros.kabanero.io` kind, create a `Kabanero` custom resource (CR) instance. A sample `oc apply` command which applies the default instance for this release of Kabanero, including the default collections, is shown when the `install.sh` script finishes running. You can modify the CR instance to include the URL of a custom collection and the GitHub information necessary to administer that collection. For more information on customizing the CR instance, see link:/docs/ref/general/configuration/kabanero-cr-config.html[the Kabanero CR configuration reference].

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ The sample uninstallation script will completely remove all dependencies from th
== Uninstallation

. Obtain the uninstallation script for the release of Kabanero that you wish to install.
* `curl -s -O -L https://github.com/kabanero-io/kabanero-operator/releases/download/0.3.1/uninstall.sh`
* `curl -s -O -L https://github.com/kabanero-io/kabanero-operator/releases/download/0.4.0/uninstall.sh`

. As a `cluster-admin`, execute the sample uninstallation script:
+
Expand Down