Skip to content

Commit e9621b4

Browse files
authored
Merge pull request #132 from marklogic/release/1.0.1
Release Kubernetes 1.0.1
2 parents 29cd949 + 798b0a5 commit e9621b4

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ persistence:
5959
```
6060
5. Install the MarkLogic Helm Chart with the above custom settings. The rest of the settings will default to the values as listed below in the [Parameters](#parameters) section.
6161
```
62-
helm install my-release marklogic/marklogic --version=1.0.0 --values values.yaml --namespace=marklogic
62+
helm install my-release marklogic/marklogic --values values.yaml --namespace=marklogic
6363
```
6464
Once the installation is complete and the pod is in a running state, the MarkLogic admin UI can be accessed using the port-forwarding command as below:
6565
```

charts/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ keywords:
1717
sources:
1818
- https://github.com/marklogic/marklogic-kubernetes
1919
- https://www.marklogic.com/
20-
version: 1.0.0
20+
version: 1.0.1

charts/templates/statefulset.yaml

+1-2
Original file line numberDiff line numberDiff line change
@@ -154,11 +154,10 @@ spec:
154154
- |
155155
MARKLOGIC_ADMIN_USERNAME="$(< /run/secrets/ml-secrets/username)"
156156
MARKLOGIC_ADMIN_PASSWORD="$(< /run/secrets/ml-secrets/password)"
157-
158-
pid=$(pgrep start.marklogic)
159157
160158
log () {
161159
local TIMESTAMP=$(date +"%Y-%m-%d %T.%3N")
160+
pid=$(pgrep start.marklogic)
162161
# Check to make sure pod doesn't terminate if PID value is empty for any reason
163162
# If PID value is empty postStart hook logs are not recorded
164163
if [ -n "$pid" ]; then

0 commit comments

Comments
 (0)