@@ -243,16 +243,33 @@ For simplicity, in this README, we have used `owdev` as the release name and
243243You can use a different name and/or namespace simply by changing the commands
244244used below.
245245
246- **NOTE:** Clone the repository https://github.com/apache/openwhisk-deploy-kube.git and use to Helm chart available under the `helm/openwhisk` folder.
246+ **NOTE:** The commands below assume Helm v3.2.0 or higher. Verfiy your local Helm version with the command `helm version`.
247+
248+ # ## Deploying Released Charts from Helm Repository
249+
250+ The OpenWhisk project maintains a Helm repository at `https://openwhisk.apache.org/charts`.
251+ You may install officially released versions of OpenWhisk from this repository :
252+
253+ ` ` `
254+ helm repo add openwhisk https://openwhisk.apache.org/charts
255+ helm repo update
256+ helm install owdev openwhisk/openwhisk -n openwhisk --create-namespace -f mycluster.yaml
257+ ` ` `
258+
259+ # ## Deploying from Git
260+
261+ To deploy directly from sources, either download the
262+ [latest source release](https://github.com/apache/openwhisk-deploy-kube/releases) or
263+ ` git clone https://github.com/apache/openwhisk-deploy-kube.git` and use the Helm chart
264+ from the `helm/openwhisk` folder of the sourc tree.
247265
248- Deployment can be done by using the following single command :
249266` ` ` shell
250267helm install owdev ./helm/openwhisk -n openwhisk --create-namespace -f mycluster.yaml
251268` ` `
252269
253- **NOTE:** The above command will only work for Helm v3.2.0 or higher versions. Verfiy your local Helm version with the command `helm version`.
270+ # ## Deploying to OKD/OpenShift
254271
255- Deploying to OKD/OpenShift uses the command sequence :
272+ Deploying to OKD/OpenShift currently requires a two command sequence :
256273` ` ` shell
257274helm template owdev ./helm/openwhisk -n openwhisk -f mycluster.yaml > owdev.yaml
258275oc create -f owdev.yaml
@@ -262,6 +279,8 @@ used to create the `Route` resource specified in the generated `owdev.yaml`.
262279We recommend generating to a file to make it easier to undeploy OpenWhisk later
263280by simply doing `oc delete -f owdev.yaml`
264281
282+ # ## Checking status
283+
265284You can use the command `helm status owdev -n openwhisk` to get a summary
266285of the various Kubernetes artifacts that make up your OpenWhisk
267286deployment. Once the pod name containing the word `install-packages` is in the `Completed` state,
0 commit comments