Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

updating the stardog.properties configmap #64

Merged
merged 7 commits into from
Nov 12, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Unreleased

* Added the ability to add additional settings to the configmap of the stardog configmap
* Add Stardog server start arguments to the values file (#66)
* Provide parameters for setting the origin of the busybox image which is used
as a part of the Stardog pod initialization (#60)
Expand Down
1 change: 1 addition & 0 deletions charts/stardog/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ Configuration Parameters
| `busybox.image.tag` | The Docker image tag for busybox image (used as a part of Stardog initialization) |
| `busybox.image.username` | The Docker registry username for busybox image registry (used as a part of Stardog initialization) |
| `busybox.image.password` | The Docker registry password for the busybox image registry (used as a part of Stardog initialization) |
| `additionalStardogProperties` | Allow adding additional settings to stardog.properties file |

The default values are specified in `values.yaml` as well as the required values for the ZooKeeper chart.

Expand Down
1 change: 1 addition & 0 deletions charts/stardog/templates/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,4 @@ data:
pack.zookeeper.address={{ if .Values.zookeeper.enabled }}{{- template "zkservers" . }}{{ else }}{{ .Values.zookeeper.addresses }}{{ end }}
pack.node.join.retry.count=15
pack.node.join.retry.delay=1m
{{- .Values.additionalStardogProperties | nindent 4 }}
7 changes: 6 additions & 1 deletion charts/stardog/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,12 @@ readinessProbe:
periodSeconds: 5
timeoutSeconds: 3

# Add additional settings to the stardog config file. e.g.
# additionalStardogProperties: |
# logging.slow_query.enabled=true
# logging.slow_query.time=10s
additionalStardogProperties: |

# The busybox image is used as light weight init container as a part of
# stardog initialization.
busybox:
Expand Down Expand Up @@ -165,4 +171,3 @@ zookeeper:
# failureThreshold: 6
# successThreshold: 1
# probeCommandTimeout: 2