Skip to content

Commit 201b430

Browse files
Daniel WasserlaufDaniel Wasserlauf
authored andcommitted
feature/cld-421: added repository instead of cloning
1 parent 070bf95 commit 201b430

File tree

1 file changed

+5
-10
lines changed

1 file changed

+5
-10
lines changed

docs/Local_Development_Tutorial.md

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -59,16 +59,11 @@ minikube Ready control-plane,master 1d v1.23.3
5959
- Push the image used for MarkLogic Server to the VM:
6060
`minikube image load store/marklogicdb/marklogic-server:10.0-9-centos-1.0.0-ea4`
6161
The image ID used in the example is `store/marklogicdb/marklogic-server:10.0-9-centos-1.0.0-ea4`, which may not be the latest image. To find the latest ID go to https://hub.docker.com/_/marklogic
62-
- Navigate to where you downloaded or cloned the MarkLogic Helm repository.
63-
Verify that the image loaded to Minikube with the comand above matches the `repository` and `tag` in the `values.yaml`.
64-
```YAML
65-
image:
66-
repository: store/marklogicdb/marklogic-server
67-
tag: 10.0-9-centos-1.0.0-ea4
68-
```
69-
Navigate to the `/charts` folder in your local directory.
70-
Run `helm install RELEASE_NAME .` where the `RELEASE_NAME` can be any name you want to use to identify this deployment.
71-
For example: `helm install marklogic-local-dev-env .`
62+
- Add the helm repository
63+
`helm repo add marklogic https://github.com/marklogic/marklogic-kubernetes`
64+
Additionally create a `values.yaml` file for your installation, like the one found in the repository under `/charts`: https://github.com/marklogic/marklogic-kubernetes/. The `values.yaml` file controls configuration for MarkLogic Server running in kubernetes.
65+
Run `helm install RELEASE_NAME marklogic/marklogic --version=1.0.0-ea1 -f values.yaml` where the `RELEASE_NAME` can be any name you want to use to identify this deployment.
66+
For example: `helm install marklogic-local-dev-env marklogic/marklogic --version=1.0.0-ea1`
7267
## Installing Multiple MarkLogic Hosts to Minikube
7368
To create a MarkLogic cluster in Minikube, change the `replicaCount` in the `values.yaml` file to 3, or any other odd number to avoid the [split brain problem](https://help.marklogic.com/Knowledgebase/Article/View/119/0/start-up-quorum-and-forest-level-failover). Then follow the procedure outlined in the [Installing a Single MarkLogic Host to Minikube](##Installing-a-Single-MarkLogic-Host-to-Minikube) section.
7469

0 commit comments

Comments
 (0)