Skip to content
This repository was archived by the owner on Jan 3, 2023. It is now read-only.
Open
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
17 changes: 9 additions & 8 deletions cloud-pak-for-data-install.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,25 +69,26 @@ helm install . --name analytics-zoo --namespace zen --set addon.openUrl=http://a
```
2. For user who will install analytics zoo add-on,

a. SSH to access node of the Cloud Pak for Data cluster
```
ssh root@<cloud-pak-for-data-cluster-master-node>
```
b. Clone the github repository intel-analytics/zoo-icpd to receive a copy of the helmchart. Browse to the helm charts directory.
a. Clone the github repository intel-analytics/zoo-icpd to receive a copy of the helmchart. Browse to the helm charts directory.
```bash
git clone https://github.com/intel-analytics/zoo-icpd.git
cd zoo-icpd/helmchart/analytics-zoo
```
c. Get the internal name of the Red Hat OpenShift registry service:
b. Get the internal name of the Red Hat OpenShift registry service:
```bash
oc registry info
```
The command returns a registry service similar to docker-registry.default.svc:5000

d. Install the helmchart archive by pulling from internal registry:
c. Install the helmchart archive by pulling from internal registry:
Helm v1-2
```bash
helm install . --name analytics-zoo --namespace zen --set addon.openUrl=http://analytics-zoo-addon-zen.<public_host_name_of_the_cluster>/tree?token=1234qwer --set Image=docker-registry.default.svc:5000/zen/analytics-zoo --tls
```
Helm v3
```
helm upgrade --install --namespace zen --set addon.openUrl=http://analytics-zoo-addon-zen.<public_host_name_of_the_cluster>/tree?token=1234qwer analytics-zoo .
```

### **Verify Analytics Zoo depolyment**
Run the following kubectl commands to verify the deployment.
Expand Down Expand Up @@ -120,4 +121,4 @@ To get the detail information of how to use analytics zoo, please check [Analyti
To uninstall/delete the analytics-zoo deployment:
```bash
helm delete --purge analytics-zoo --tls
```
```
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
apiVersion: apps/v1beta2
apiVersion: apps/v1
kind: Deployment
metadata:
name: {{ template "analytics-zoo-fullname" . }}
Expand Down