Skip to content

Commit 0c45940

Browse files
Daniel WasserlaufDaniel Wasserlauf
authored andcommitted
feature/cld-421: docs update for values.yaml and -it in kubectl exec command
1 parent 201b430 commit 0c45940

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/Local_Development_Tutorial.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ minikube Ready control-plane,master 1d v1.23.3
6363
`helm repo add marklogic https://github.com/marklogic/marklogic-kubernetes`
6464
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.
6565
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`
66+
For example: `helm install marklogic-local-dev-env marklogic/marklogic --version=1.0.0-ea1 -f values.yaml`
6767
## Installing Multiple MarkLogic Hosts to Minikube
6868
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.
6969

@@ -141,13 +141,13 @@ Example output:
141141
Run the following command to see the logs for a specific pod :
142142

143143
```sh
144-
kubectl exec --stdin --tty {POD_NAME} -- /bin/bash
144+
kubectl exec -it {POD_NAME} -- /bin/bash
145145
```
146146
The `{POD_NAME}` can be found with the `kubectl get pods` command.
147147

148148
For example:
149149
```sh
150-
> kubectl exec --stdin --tty marklogic-0 -- /bin/bash
150+
> kubectl exec -it marklogic-0 -- /bin/bash
151151
[marklogic_user@marklogic-0 /]$
152152
```
153153

0 commit comments

Comments
 (0)