Skip to content

Commit

Permalink
Added license update procedure
Browse files Browse the repository at this point in the history
  • Loading branch information
nk-ontotext committed Jan 13, 2022
1 parent 97be74f commit 7326620
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,19 @@ kubectl create secret generic graphdb-license --from-file graphdb.license
**Note**: Secret names can differ from the given examples in the [values.yaml](values.yaml), but their configurations should be updated
to refer to the correct ones. Note that the licenses can be set for all masters/workers instances and also per instance. Please setup correctly according to the licensing agreements.

#### Updating an expired GraphDB license

When the helm chart is installed the license will be provisioned through the `graphdb-license`.
When a license expires you'll have to update the secret, so each new GraphDB instance can be provisioned with the new license.
In order NOT to restart your current GraphDB instances, you can copy your new license named `graphdb.license` in your GraphDB pods in folder `/opt/graphdb/home/conf`.
It's important to name your file exactly `graphdb.license`!

```bash
kubectl delete secret graphdb-license
kubectl create secret generic graphdb-license --from-file graphdb.license
kubectl cp graphdb.license graphdb-master-1-0:/opt/graphdb/home/conf
```

### Quick Start

The Helm chart includes an example repository configuration TTLs.
Expand Down

0 comments on commit 7326620

Please sign in to comment.