Skip to content

Commit

Permalink
Merge pull request #132 from marklogic/release/1.0.1
Browse files Browse the repository at this point in the history
Release Kubernetes 1.0.1
  • Loading branch information
pengzhouml committed May 9, 2023
2 parents 29cd949 + 798b0a5 commit e9621b4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ persistence:
```
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.
```
helm install my-release marklogic/marklogic --version=1.0.0 --values values.yaml --namespace=marklogic
helm install my-release marklogic/marklogic --values values.yaml --namespace=marklogic
```
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:
```
Expand Down
2 changes: 1 addition & 1 deletion charts/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ keywords:
sources:
- https://github.com/marklogic/marklogic-kubernetes
- https://www.marklogic.com/
version: 1.0.0
version: 1.0.1
3 changes: 1 addition & 2 deletions charts/templates/statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -154,11 +154,10 @@ spec:
- |
MARKLOGIC_ADMIN_USERNAME="$(< /run/secrets/ml-secrets/username)"
MARKLOGIC_ADMIN_PASSWORD="$(< /run/secrets/ml-secrets/password)"
pid=$(pgrep start.marklogic)
log () {
local TIMESTAMP=$(date +"%Y-%m-%d %T.%3N")
pid=$(pgrep start.marklogic)
# Check to make sure pod doesn't terminate if PID value is empty for any reason
# If PID value is empty postStart hook logs are not recorded
if [ -n "$pid" ]; then
Expand Down

0 comments on commit e9621b4

Please sign in to comment.