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

Unique UUID #6

Merged
merged 4 commits into from
Nov 2, 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
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]
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Mention that -f values.yaml is necessary

```

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