Skip to content

Commit

Permalink
Unique UUID (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
thardtke-tt authored Nov 2, 2021
1 parent f4ebb09 commit c96a216
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,17 @@ This repository hosts the official **[TraceTronic](https://www.tracetronic.de/)
[Helm](https://helm.sh) must be installed and initialized to use the charts.
Please refer to Helm's [documentation](https://helm.sh/docs/) to get started.

Once Helm is set up properly, add the repository as follows:
Once Helm is set up properly, you could access provided charts as follows:

```bash
$ helm repo add tracetronic https://tracetronic.github.io/helm-charts
$ helm search repo tracetronic
$ helm install [RELEASE_NAME] tracetronic/[CHART_NAME]
```

The provided charts are specific for each TraceTronic product and its values often need an individual configuration. Further information could be found within the respective chart area:
- [TEST-GUIDE](https://github.com/tracetronic/helm-charts/blob/main/charts/test-guide/README.md)

## Contribution

We encourage you to contribute to **TraceTronic Helm Charts** using the [issue tracker](https://github.com/tracetronic/helm-charts/issues/new/choose) to suggest feature requests and report bugs.
Expand Down
2 changes: 1 addition & 1 deletion charts/test-guide/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
apiVersion: v2
version: 0.1.0
version: 0.2.0
type: application
name: test-guide
description: TEST-GUIDE is a database application for the overview, analysis and follow-up processing of test procedures, which has been specially developed for use in the automotive sector.
Expand Down
2 changes: 1 addition & 1 deletion charts/test-guide/templates/config-file.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ stringData:
autoConfig.prop: |
# Base settings
base.url={{ include "test-guide.baseUrl" . }}
base.uuid=1
base.uuid={{ .Values.baseSettings.uuid }}
# Admin profile
serveradmin.name={{ .Values.serveradmin.name }}
Expand Down
5 changes: 5 additions & 0 deletions charts/test-guide/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,11 @@ license:
type: file
key: ""

# Configure Base settings
baseSettings:
# Default needs to be set to individual value
uuid: 1

serviceAccount:
# Specifies whether a service account should be created
create: true
Expand Down

0 comments on commit c96a216

Please sign in to comment.