Skip to content

Commit c3aea78

Browse files
authored
stardog: Fix nil pointer exception with default values (#508)
Signed-off-by: Manuel Hutter <[email protected]>
1 parent fb575c9 commit c3aea78

File tree

4 files changed

+19
-18
lines changed

4 files changed

+19
-18
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ helm repo add appuio https://charts.appuio.ch
3030
| [![chart downloads](https://img.shields.io/github/downloads/appuio/charts/secret-1.1.0/total)](https://github.com/appuio/charts/releases/tag/secret-1.1.0) | [secret](appuio/secret/README.md) |
3131
| [![chart downloads](https://img.shields.io/github/downloads/appuio/charts/signalilo-0.12.1/total)](https://github.com/appuio/charts/releases/tag/signalilo-0.12.1) | [signalilo](appuio/signalilo/README.md) |
3232
| [![chart downloads](https://img.shields.io/github/downloads/appuio/charts/snappass-1.0.0/total)](https://github.com/appuio/charts/releases/tag/snappass-1.0.0) | [snappass](appuio/snappass/README.md) |
33-
| [![chart downloads](https://img.shields.io/github/downloads/appuio/charts/stardog-0.26.1/total)](https://github.com/appuio/charts/releases/tag/stardog-0.26.1) | [stardog](appuio/stardog/README.md) |
33+
| [![chart downloads](https://img.shields.io/github/downloads/appuio/charts/stardog-0.26.2/total)](https://github.com/appuio/charts/releases/tag/stardog-0.26.2) | [stardog](appuio/stardog/README.md) |
3434
| [![chart downloads](https://img.shields.io/github/downloads/appuio/charts/stardog-userrole-operator-0.3.0/total)](https://github.com/appuio/charts/releases/tag/stardog-userrole-operator-0.3.0) | [stardog-userrole-operator](appuio/stardog-userrole-operator/README.md) |
3535
| [![chart downloads](https://img.shields.io/github/downloads/appuio/charts/trifid-2.0.2/total)](https://github.com/appuio/charts/releases/tag/trifid-2.0.2) | [trifid](appuio/trifid/README.md) |
3636

appuio/stardog/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
apiVersion: v1
22
name: stardog
3-
version: 0.26.1
3+
version: 0.26.2
44
appVersion: 10.1.0
55
description: Stardog is the world’s leading knowledge graph platform for the enterprise. Stardog makes it fast and easy to turn enterprise data into knowledge.
66
home: "https://www.stardog.com/"

appuio/stardog/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# stardog
22

3-
![Version: 0.26.1](https://img.shields.io/badge/Version-0.26.1-informational?style=flat-square) ![AppVersion: 10.1.0](https://img.shields.io/badge/AppVersion-10.1.0-informational?style=flat-square)
3+
![Version: 0.26.2](https://img.shields.io/badge/Version-0.26.2-informational?style=flat-square) ![AppVersion: 10.1.0](https://img.shields.io/badge/AppVersion-10.1.0-informational?style=flat-square)
44

55
Stardog is the world’s leading knowledge graph platform for the enterprise. Stardog makes it fast and easy to turn enterprise data into knowledge.
66

appuio/stardog/values.yaml

+16-15
Original file line numberDiff line numberDiff line change
@@ -24,26 +24,27 @@ stardog:
2424
# - name: nameOfTheUser
2525
# password: passwordForTheUser
2626
disabledUsers:
27-
- anonymous
27+
- anonymous
2828
databases:
2929
# - name: stardog
3030
# options:
3131
# - name: search.enabled
3232
# value: "true"
3333
roles:
34-
- name: superuser
35-
grants:
36-
- action: all
37-
object: "*:*"
38-
users:
34+
- name: superuser
35+
grants:
36+
- action: all
37+
object: "*:*"
38+
users:
3939
existingLicenseSecret: stardog-license
4040
# Custom Stardog config (string value)
4141
config: |
42-
javaArgs: -Xmx3g -Xms1g -XX:MaxDirectMemorySize=3g
42+
javaArgs: -Xmx3g -Xms1g -XX:MaxDirectMemorySize=3g
4343
backup:
44-
databases: # List of databases to backup
45-
# - name: myDB
46-
# schedule: "18 03 * * *" # in UTC
44+
# List of databases to backup
45+
databases: []
46+
# - name: myDB
47+
# schedule: "18 03 * * *" # in UTC
4748
s3Region: eu-central-1
4849
s3Endpoint:
4950
s3BucketName:
@@ -83,11 +84,11 @@ persistence:
8384
metrics:
8485
enabled: false
8586
prometheusOperator: false
86-
serviceMonitor:
87-
# Scrape interval and timeout.
88-
# Interval may not be smaller than timeout.
89-
# interval: 10s
90-
# timeout: 10s
87+
serviceMonitor: {}
88+
# Scrape interval and timeout.
89+
# Interval may not be smaller than timeout.
90+
# interval: 10s
91+
# timeout: 10s
9192
stardogRules:
9293
extraLabels: null
9394
zookeeperRules:

0 commit comments

Comments
 (0)