Skip to content

Commit

Permalink
Update for stp240 and 141 (#50)
Browse files Browse the repository at this point in the history
* tm - updated chart to use new image 0.4.42

* Added missing env vars
  • Loading branch information
markjrouse authored Mar 19, 2024
1 parent 45d0dba commit b55038c
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 8 deletions.
4 changes: 2 additions & 2 deletions charts/testmanager/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
apiVersion: v2
name: testmanager
appVersion: 0.4.40
appVersion: 0.4.42
description: A generated Helm Chart for Soniclabs T&M testmanager
version: 1.0.14
version: 1.0.15
type: application
maintainers:
- name: cdecatapult
Expand Down
8 changes: 5 additions & 3 deletions charts/testmanager/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,10 @@
| `config.debug` | Whether or not to enable debug mode for the application | `False` |
| `config.logLevel` | The log level to use for the application | `debug` |
| `config.rtcPort` | The port of the Viavi RTC | `5099` |
| `config.protocolsFilePath` | The location of the Protocols File | `./` |
| `config.tmaPath` | The path on the "Control Host" to use to execute the TMA. | `C:/Program Files (x86)/VIAVI/TM500/5G NR - NLA 6.16.0/Test Mobile Application/` |
| `config.protocolsFilePath` | The location of the Protocols File | `./tmp` |
| `config.viaviPollIntervalSeconds` | The Viavi polling interval in seconds. | `10` |
| `config.viaviKpiStartDelaySeconds` | The Viavi start delay in seconds. | `30` |
| `config.tmaPath` | The path on the "Control Host" to use to execute the TMA. | `C:/Program Files (x86)/VIAVI/TM500/5G NR - NLA 6.21.0/Test Mobile Application/` |
| `config.sshKey` | The SSH key to use for accessing ORAN components | `blahblah
blahblahblah
blahblahblahblah
Expand Down Expand Up @@ -47,7 +49,7 @@ blahblahblahblah
| ------------------- | -------------------------------------------------- | ---------------------------------------------- |
| `image.repository` | The repository to use for the Test Manager image | `ghcr.io/cdecatapult/soniclabs-testmanager-ts` |
| `image.pullPolicy` | The pull policy to use for the Test Manager image | `Always` |
| `image.tag` | The tag to use for the Test Manager image | `v0.4.40` |
| `image.tag` | The tag to use for the Test Manager image | `v0.4.42` |
| `image.pullSecrets` | The pull secrets to use for the Test Manager image | `["soniclabs"]` |

### TestManager Ingress parameters
Expand Down
4 changes: 4 additions & 0 deletions charts/testmanager/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,10 @@ spec:
value: {{ .Values.config.pcapStorage.path | quote }}
- name: PROTOCOLS_FILE_PATH
value: {{ .Values.config.protocolsFilePath | quote }}
- name: VIAVI_POLL_INTERVAL_SECONDS
value: {{ .Values.config.viaviPollIntervalSeconds | quote }}
- name: VIAVI_KPI_START_DELAY_SECONDS
value: {{ .Values.config.viaviKpiStartDelaySeconds | quote }}
- name: DB_USERNAME
valueFrom:
secretKeyRef:
Expand Down
10 changes: 7 additions & 3 deletions charts/testmanager/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,13 @@ config:
## @param config.rtcPort The port of the Viavi RTC
rtcPort: 5099
## @param config.protocolsFilePath The location of the Protocols File
protocolsFilePath: ./
protocolsFilePath: ./tmp
## @param config.viaviPollIntervalSeconds The Viavi polling interval in seconds.
viaviPollIntervalSeconds: 10
## @param config.viaviKpiStartDelaySeconds The Viavi start delay in seconds.
viaviKpiStartDelaySeconds: 30
## @param config.tmaPath The path on the "Control Host" to use to execute the TMA.
tmaPath: 'C:/Program Files (x86)/VIAVI/TM500/5G NR - NLA 6.16.0/Test Mobile Application/'
tmaPath: 'C:/Program Files (x86)/VIAVI/TM500/5G NR - NLA 6.21.0/Test Mobile Application/'
## @param config.sshKey The SSH key to use for accessing ORAN components
sshKey: |
blahblah
Expand Down Expand Up @@ -81,7 +85,7 @@ image:
## @param image.pullPolicy The pull policy to use for the Test Manager image
pullPolicy: Always
## @param image.tag The tag to use for the Test Manager image
tag: v0.4.40
tag: v0.4.42
## @param image.pullSecrets The pull secrets to use for the Test Manager image
pullSecrets: ['soniclabs']

Expand Down

0 comments on commit b55038c

Please sign in to comment.