Skip to content

Commit

Permalink
Support Latest test.guide Versions (#40)
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Oct 11, 2024
1 parent 9becc34 commit 501254a
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 11 deletions.
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.6.0
version: 0.7.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
27 changes: 21 additions & 6 deletions charts/test-guide/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,15 +50,30 @@ data:

## Migration

### To 0.7.0

This version supports a configurable test.guide application directory which must match the used image. Since test.guide
provides [UBI9](https://catalog.redhat.com/software/base-images) images the default configuration for the
following values have changed.

#### values.yaml

| Change | Name | Description | Default Value | Value to reuse existing clusters |
| -------------------- | -------------------------- | --------------------------------------------------- | ------------------------------------- | ------------------------------------ |
| Change default value | `baseSettings.tgWorkspace` | support for test.guide workspace path configuration | `/var/testguide/` | `/home/tg_user/` |
| 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` |
| 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` |
| 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` |

### To 0.4.0

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

#### values.yaml

| Change | Name | Description | Default Value | Value to reuse existing clusters |
| ------ | ---- | ----------- | ------------- | -------------------------------- |
| Add value | `baseSettings.tgWorkspace` | support for test.guide workspace path configuration | `/home/tg_user/` | `/app/`|
| 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`|
| 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`|
| 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`|
| Change | Name | Description | Default Value | Value to reuse existing clusters |
| -------------------- | -------------------------- | --------------------------------------------------- | ------------------------------------ | -------------------------------- |
| Add value | `baseSettings.tgWorkspace` | support for test.guide workspace path configuration | `/home/tg_user/` | `/app/` |
| 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` |
| 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` |
| 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` |
8 changes: 4 additions & 4 deletions charts/test-guide/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ baseSettings:
# Default needs to be set to individual value
uuid: 1
# parent folder of test.guide workspace
tgWorkspace: /home/tg_user/
tgWorkspace: /var/testguide/

# Configure admin credentials
serveradmin:
Expand All @@ -44,7 +44,7 @@ secrets:
db:
driver: H2
# If the database is stored apart from the test.guide workspace database persistence must be handled separately.
url: jdbc:h2:/home/tg_user/TTS-TM/TT-DB
url: jdbc:h2:/var/testguide/TTS-TM/TT-DB
# Default plain text values if no configured secret is present
user: ATX
password: ATX
Expand All @@ -53,7 +53,7 @@ db:
dbMonitoring:
driver: H2
# If the database is stored apart from the test.guide workspace database persistence must be handled separately.
url: jdbc:h2:/home/tg_user/TTS-TM/TT-DB-Monitoring
url: jdbc:h2:/var/testguide/TTS-TM/TT-DB-Monitoring
# Default plain text values if no configured secret is present
user: ATX
password: ATX
Expand All @@ -62,7 +62,7 @@ dbMonitoring:
dbArtifact:
driver: H2
# If the database is stored apart from the test.guide workspace database persistence must be handled separately.
url: jdbc:h2:/home/tg_user/TTS-TM/TT-Artifact
url: jdbc:h2:/var/testguide/TTS-TM/TT-Artifact
# Default values if no configured secret is present
user: ATX
password: ATX
Expand Down

0 comments on commit 501254a

Please sign in to comment.