Skip to content

Commit a042203

Browse files
sumanthravipatiSumanth Ravipati
andauthored
CLD-520: EA1 Documentation fixes (#17)
Co-authored-by: Sumanth Ravipati <[email protected]>
1 parent adbde38 commit a042203

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22

33
- [Introduction](#introduction)
44
- [Prerequisites](#prerequisites)
5-
- [Set up the required tools](#set-up-the-required-tools)
5+
- [Set Up the Required Tools](#set-up-the-required-tools)
66
- [Helm](#helm)
77
- [Kubectl](#kubectl)
8-
- [Set up the Kubernetes Cluster](#set-up-the-kubernetes-cluster)
8+
- [Set Up the Kubernetes Cluster](#set-up-the-kubernetes-cluster)
99
- [Local Development MiniKube](#local-development-minikube)
1010
- [Production Workload: AWS EKS](#production-workload-aws-eks)
1111
- [Install eksctl](#install-eksctl)
12-
- [Using eksctl to provision Kubernetes cluster on EKS](#using-eksctl-to-provision-kubernetes-cluster-on-eks)
12+
- [Using eksctl to Provision Kubernetes Cluster on EKS](#using-eksctl-to-provision-kubernetes-cluster-on-eks)
1313
- [Suggestions for Naming](#suggestions-for-naming)
1414
- [Install MarkLogic Helm Chart](#install-marklogic-helm-chart)
1515
- [Add MarkLogic Repo](#add-marklogic-repo)
@@ -32,15 +32,15 @@
3232

3333
This tutorial describes how to set up Kubernetes development environment with AWS EKS and MarkLogic Server. It covers these tasks:
3434
- Set up the prerequisites necessary for setting up MarkLogic Server in Kubernetes
35-
- How to setup Kubernetes cluster and install MarkLogic Server on Minikube
36-
- How to setup Kubernetes cluster and install MarkLogic Server on AWS EKS using eksctl
35+
- How to set up Kubernetes cluster and install MarkLogic Server on Minikube
36+
- How to set up Kubernetes cluster and install MarkLogic Server on AWS EKS using eksctl
3737
- Access the MarkLogic Server cluster
3838
- How to clean up your environment
3939
- List of parameters used for configuration
4040

4141
# Prerequisites
4242

43-
## Set up the required tools
43+
## Set Up the Required Tools
4444

4545
### Helm
4646

@@ -51,7 +51,7 @@ To install Helm, follow the steps described in: https://helm.sh/docs/intro/insta
5151
Verify the installation with this command:
5252

5353
```
54-
helm -h
54+
helm -h
5555
```
5656

5757
If Helm is installed correctly, you will see the Helm user manual.
@@ -64,32 +64,32 @@ Kubectl is a command line tool that serves as a client, to connect to a Kubernet
6464

6565
To install Kubectl, follow the steps at: https://kubernetes.io/docs/tasks/tools/
6666

67-
To verify the Kubectl installation, use this command:
67+
To verify the Kubectl installation, use this command:
6868

6969
```
70-
kubectl -h
70+
kubectl -h
7171
```
7272
If Kubectl is installed correctly, you will see the the Kubectl user manual.
7373

7474
If kubectl is not installed correctly, you will see the error: `command not found: kubectl`
7575

76-
## Set up the Kubernetes Cluster
76+
## Set Up the Kubernetes Cluster
7777

7878
### Local Development MiniKube
7979

8080
For local development, you will want to set up MiniKube. See the set up instructions here: [MiniKube Setup Guide](docs/Local_Development_Tutorial.md)
8181

8282
### Production Workload: AWS EKS
8383

84-
For production workload development, you will want to use a cloud platform.
84+
For production workload development, you will want to use a cloud platform.
8585

8686
EKS is a managed Kubernetes platform provided by AWS. The eksctl tool is a simple way to bring up a Kubernetes cluster on EKS.
8787

8888
#### Install eksctl
8989

9090
To install eksctl, follow the steps described here: https://docs.aws.amazon.com/eks/latest/userguide/eksctl.html
9191

92-
#### Using eksctl to provision Kubernetes cluster on EKS
92+
#### Using eksctl to Provision Kubernetes Cluster on EKS
9393

9494
The following eksctl code can be used to create a Kubernetes cluster in EKS. You will need to replace CLUSTER_NAME, KUBERNETES_VERSION, REGION, NODEGROUP_NAME, NODE_TYPE and NUMBER_OF_NODES based on your configuration.
9595

docs/Local_Development_Tutorial.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ minikube Ready control-plane,master 1d v1.23.3
5454
## Installing a Single MarkLogic Host to Minikube
5555
- Push the image used for MarkLogic Server to the Minikube:
5656
`minikube image load marklogicdb/marklogic-db:latest`
57-
- Add the helm repository
57+
- Add the Helm repository
5858
`helm repo add marklogic https://marklogic.github.io/marklogic-kubernetes/`
5959
Additionally create a `values.yaml` file for your installation, like the one found in the repository under `/charts`: https://marklogic.github.io/marklogic-kubernetes/. The `values.yaml` file controls configuration for MarkLogic Server running in kubernetes.
6060
Run `helm install RELEASE_NAME marklogic/marklogic --version=1.0.0-ea1 --values values.yaml` where the `RELEASE_NAME` can be any name you want to use to identify this deployment.

0 commit comments

Comments
 (0)