Skip to content

Commit 501254a

Browse files
Support Latest test.guide Versions (#40)
1 parent 9becc34 commit 501254a

File tree

3 files changed

+26
-11
lines changed

3 files changed

+26
-11
lines changed

charts/test-guide/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
apiVersion: v2
2-
version: 0.6.0
2+
version: 0.7.0
33
type: application
44
name: test-guide
55
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.

charts/test-guide/README.md

+21-6
Original file line numberDiff line numberDiff line change
@@ -50,15 +50,30 @@ data:
5050

5151
## Migration
5252

53+
### To 0.7.0
54+
55+
This version supports a configurable test.guide application directory which must match the used image. Since test.guide
56+
provides [UBI9](https://catalog.redhat.com/software/base-images) images the default configuration for the
57+
following values have changed.
58+
59+
#### values.yaml
60+
61+
| Change | Name | Description | Default Value | Value to reuse existing clusters |
62+
| -------------------- | -------------------------- | --------------------------------------------------- | ------------------------------------- | ------------------------------------ |
63+
| Change default value | `baseSettings.tgWorkspace` | support for test.guide workspace path configuration | `/var/testguide/` | `/home/tg_user/` |
64+
| Change default value | `db.url` | adjust path to match the official test.guide image | `/var/testguide/TTS-TM/TT-DB` | `/home/tg_user/TTS-TM/TT-DB` |
65+
| Change default value | `dbMonitoring.url` | adjust path to match the official test.guide image | `/var/testguide/TTS-TM/TT-Monitoring` | `/home/tg_user/TTS-TM/TT-Monitoring` |
66+
| Change default value | `dbArtifact.url` | adjust path to match the official test.guide image | `/var/testguide/TTS-TM/TT-Artifact` | `/home/tg_user/TTS-TM/TT-Artifact` |
67+
5368
### To 0.4.0
5469

5570
This version supports a configurable test.guide application directory which must match the used image.
5671

5772
#### values.yaml
5873

59-
| Change | Name | Description | Default Value | Value to reuse existing clusters |
60-
| ------ | ---- | ----------- | ------------- | -------------------------------- |
61-
| Add value | `baseSettings.tgWorkspace` | support for test.guide workspace path configuration | `/home/tg_user/` | `/app/`|
62-
| Change default value | `db.url` | adjust path to match the official test.guide image | `/home/tg_user/TTS-TM/TT-DB` | `/app/TTS-TM/TT-DB`|
63-
| Change default value | `dbMonitoring.url` | adjust path to match the official test.guide image | `/home/tg_user/TTS-TM/TT-Monitoring` | `/app/TTS-TM/TT-Monitoring`|
64-
| Change default value | `dbArtifact.url` | adjust path to match the official test.guide image | `/home/tg_user/TTS-TM/TT-Artifact` | `/app/TTS-TM/TT-Artifact`|
74+
| Change | Name | Description | Default Value | Value to reuse existing clusters |
75+
| -------------------- | -------------------------- | --------------------------------------------------- | ------------------------------------ | -------------------------------- |
76+
| Add value | `baseSettings.tgWorkspace` | support for test.guide workspace path configuration | `/home/tg_user/` | `/app/` |
77+
| Change default value | `db.url` | adjust path to match the official test.guide image | `/home/tg_user/TTS-TM/TT-DB` | `/app/TTS-TM/TT-DB` |
78+
| Change default value | `dbMonitoring.url` | adjust path to match the official test.guide image | `/home/tg_user/TTS-TM/TT-Monitoring` | `/app/TTS-TM/TT-Monitoring` |
79+
| Change default value | `dbArtifact.url` | adjust path to match the official test.guide image | `/home/tg_user/TTS-TM/TT-Artifact` | `/app/TTS-TM/TT-Artifact` |

charts/test-guide/values.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ baseSettings:
1717
# Default needs to be set to individual value
1818
uuid: 1
1919
# parent folder of test.guide workspace
20-
tgWorkspace: /home/tg_user/
20+
tgWorkspace: /var/testguide/
2121

2222
# Configure admin credentials
2323
serveradmin:
@@ -44,7 +44,7 @@ secrets:
4444
db:
4545
driver: H2
4646
# If the database is stored apart from the test.guide workspace database persistence must be handled separately.
47-
url: jdbc:h2:/home/tg_user/TTS-TM/TT-DB
47+
url: jdbc:h2:/var/testguide/TTS-TM/TT-DB
4848
# Default plain text values if no configured secret is present
4949
user: ATX
5050
password: ATX
@@ -53,7 +53,7 @@ db:
5353
dbMonitoring:
5454
driver: H2
5555
# If the database is stored apart from the test.guide workspace database persistence must be handled separately.
56-
url: jdbc:h2:/home/tg_user/TTS-TM/TT-DB-Monitoring
56+
url: jdbc:h2:/var/testguide/TTS-TM/TT-DB-Monitoring
5757
# Default plain text values if no configured secret is present
5858
user: ATX
5959
password: ATX
@@ -62,7 +62,7 @@ dbMonitoring:
6262
dbArtifact:
6363
driver: H2
6464
# If the database is stored apart from the test.guide workspace database persistence must be handled separately.
65-
url: jdbc:h2:/home/tg_user/TTS-TM/TT-Artifact
65+
url: jdbc:h2:/var/testguide/TTS-TM/TT-Artifact
6666
# Default values if no configured secret is present
6767
user: ATX
6868
password: ATX

0 commit comments

Comments
 (0)