Skip to content

Commit

Permalink
update readme (#42)
Browse files Browse the repository at this point in the history
  • Loading branch information
lwangbm committed Sep 23, 2021
1 parent 4de98e7 commit f175286
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Key benefits include:
From git root directory, run

```commandline
kubectl apply -f config/crd/bases
kubectl apply -k config/crd/bases
```


Expand All @@ -45,13 +45,13 @@ kubectl apply -f config/crd/bases
```commandline
kubectl create namespace morphling-system
kubectl apply -f manifests/configmap
kubectl apply -f manifests/controllers
kubectl apply -f manifests/pv
kubectl apply -f manifests/mysql-db
kubectl apply -f manifests/db-manager
kubectl apply -f manifests/ui
kubectl apply -f manifests/algorithm
kubectl apply -k manifests/configmap
kubectl apply -k manifests/controllers
kubectl apply -k manifests/pv
kubectl apply -k manifests/mysql-db
kubectl apply -k manifests/db-manager
kubectl apply -k manifests/ui
kubectl apply -k manifests/algorithm
```
By default, Morphling will be installed under `morphling-system` namespace.

Expand Down Expand Up @@ -117,7 +117,7 @@ Helm will install CRDs and other Morphling components under `morphling-system` n
helm uninstall morphling -n morphling-system
```

#### Delete all morphling CRDs
#### Delete all Morphling CRDs

```bash
kubectl get crd | grep morphling.kubedl.io | cut -d ' ' -f 1 | xargs kubectl delete crd
Expand All @@ -128,7 +128,7 @@ Morphling UI is built upon [Ant Design](https://ant.design/).

If you are installing Morphling with Yaml files, from the root directory, run
```bash
kubectl apply -f manifests/ui
kubectl apply -k manifests/ui
```

Or if you are installing Morphling with Helm chart, Morphling UI is automatically deployed.
Expand Down

0 comments on commit f175286

Please sign in to comment.