Skip to content

Commit 5eceb4c

Browse files
Daniel WasserlaufDaniel Wasserlauf
authored andcommitted
feature/cld-421: bulleted list
1 parent 3059899 commit 5eceb4c

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

docs/Local_Development_Tutorial.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@ This tutorial serves as a guide for local development setup with Minikube and Ma
2222
## Prerequisites
2323
The following assumes you are running this tutorial from a desktop environment, mobile environments will likely experience problems and may not work
2424
- [Docker](https://docs.docker.com/engine/install/)
25-
-- Subscribe and pulldown the latest image from: https://hub.docker.com/_/marklogic
25+
- Subscribe and pulldown the latest image from: https://hub.docker.com/_/marklogic
2626
```sh
2727
# Something similar to this, with the latest version tag, which can be found on the dockerhub link above
2828
docker pull store/marklogicdb/marklogic-server:10.0-9-centos-1.0.0-ea4
2929
```
3030
- [KubeCTL](https://kubernetes.io/docs/tasks/tools/)
3131
- [HELM](https://helm.sh/docs/intro/install/)
32-
-- Clone or download the chart repository: https://github.com/marklogic/marklogic-kubernetes
32+
- Clone or download the chart repository: https://github.com/marklogic/marklogic-kubernetes
3333
- [Minikube](https://k8s-docs.netlify.app/en/docs/tasks/tools/install-minikube/)
3434
- If running on Mac OSX: [Virtual Box](https://www.virtualbox.org/)
3535
- A supported [Web Browser](https://developer.marklogic.com/products/support-matrix/)
@@ -40,7 +40,7 @@ Below is the procedure for setting up Minikube, installing MarkLogic, and verify
4040

4141
## Setting Up minikube
4242
- Start minikube: `minikube start --driver=virtualbox`
43-
-- If running in Linux: `minikube start --driver=docker`
43+
- If running in Linux: `minikube start --driver=docker`
4444
To verify the minikube started correctly run the following command:
4545
```sh
4646
kubectl get nodes
@@ -54,16 +54,16 @@ minikube Ready control-plane,master 1d v1.23.3
5454
- Enable Addons: `minikube addons enable ingress` for ingress
5555
## Installing a Single MarkLogic Host to minikube
5656
- Push the image used for ML to the VM: `minikube image load store/marklogicdb/marklogic-server:10.0-9-centos-1.0.0-ea4`
57-
-- The above Image ID: `store/marklogicdb/marklogic-server:10.0-9-centos-1.0.0-ea4` is whatever the latest image is, to find the latest id go to https://hub.docker.com/_/marklogic
57+
- The above Image ID: `store/marklogicdb/marklogic-server:10.0-9-centos-1.0.0-ea4` is whatever the latest image is, to find the latest id go to https://hub.docker.com/_/marklogic
5858
- Navigate to where you downloaded or cloned the MarkLogic helm repository
59-
-- Verify the image loaded to minikube above matches the `repository` and `tag` in the `values.yaml`
59+
- Verify the image loaded to minikube above matches the `repository` and `tag` in the `values.yaml`
6060
```YAML
6161
image:
6262
repository: store/marklogicdb/marklogic-server
6363
tag: 10.0-9-centos-1.0.0-ea4
6464
```
65-
-- Navigate to the `/charts` folder
66-
-- Run `helm install RELEASE_NAME .` Where the `RELEASE_NAME` can be anything you want to identify this deployment EX: `helm install marklogic-local-dev-env .`
65+
- Navigate to the `/charts` folder
66+
- Run `helm install RELEASE_NAME .` Where the `RELEASE_NAME` can be anything you want to identify this deployment EX: `helm install marklogic-local-dev-env .`
6767
## Installing Multiple MarkLogic Hosts to Minikube
6868
TODO
6969

@@ -82,10 +82,10 @@ It may take a minute or two.
8282
```sh
8383
kubectl port-forward marklogic-0 8001 8000 7997
8484
```
85-
-- If you want to forward other ports just append them to the command separated by a space
85+
- If you want to forward other ports just append them to the command separated by a space
8686

8787
- Finally access your browser and navigate to `localhost:8001` and you should see the MarkLogic Server Admin Interface
88-
-- If you're unable to see the MarkLogic Server Admin Interface interface proceed to the debugging section to gather more information on the cluster and potential errors.
88+
- If you're unable to see the MarkLogic Server Admin Interface interface proceed to the debugging section to gather more information on the cluster and potential errors.
8989

9090
- Proceed to the [Cleanup](##Cleanup) section in order to teardown the cluster when finished
9191

0 commit comments

Comments
 (0)