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

GDB-10778 Fix GraphDB configuration examples #128

Merged
merged 1 commit into from
Sep 17, 2024
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
4 changes: 2 additions & 2 deletions examples/configuring/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,13 +83,13 @@ It also supports GraphDB properties in the form of `-Dproperty=value`

```yaml
configuration:
javaArguments: "-Xms4G -Xmx4G"
javaArguments: "-Xms4G -Xmx4G -Dgraphdb.external-url=example.com"
```

## Extra Environment Variables from a source

This section explains how to configure GraphDB with environment variables
using existing Kubernetes ConfigMaps and Secrets. This approach
using an existing Kubernetes ConfigMap or an existing Secrets. This approach
ensures that additional configurations are injected alongside existing
ones without mixing different contexts.

Expand Down
5 changes: 3 additions & 2 deletions examples/configuring/resources.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ kind: Secret
metadata:
name: custom-graphdb-secret-properties
data:
graphdb-secrets.properties: {{ "graphdb.connector.keystorePass: xxxx" | b64enc | quote }}
graphdb-secrets.properties: <base64-encoded secret properties>

---
apiVersion: v1
Expand All @@ -37,4 +37,5 @@ kind: Secret
metadata:
name: connector-secret-properties
data:
graphdb.gpt.token: {{ "<secret-token>" | b64enc | quote }}
graphdb.gpt.token: <base64-encoded secret token>

Loading