Skip to content

Commit

Permalink
diskover: fix typo (#2612)
Browse files Browse the repository at this point in the history
* diskover: fix typo

* fmt
  • Loading branch information
stavros-k authored Jun 25, 2024
1 parent 674d9e2 commit 204385f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion library/ix-dev/charts/diskoverdata/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description: Diskover is used to monitor size/volumes of distributed dataset.
annotations:
title: Diskover Data
type: application
version: 2.0.1
version: 2.0.2
apiVersion: v2
appVersion: "2.0.1"
kubeVersion: ">=1.16.0-0"
Expand Down
3 changes: 3 additions & 0 deletions library/ix-dev/charts/diskoverdata/migrations/migrate
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,9 @@ def migrate_common_lib(values):
return values

def migrate(values):
# Fix typo
if 'discoverConfig' in values.keys():
values['diskoverConfig'] = values.pop('discoverConfig')
# If this missing, we have already migrated
if not 'appVolumeMounts' in values.keys():
return values
Expand Down
2 changes: 1 addition & 1 deletion library/ix-dev/charts/diskoverdata/questions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ questions:
$ref:
- definitions/timezone

- variable: discoverConfig
- variable: diskoverConfig
label: ""
group: Diskover Data Configuration
schema:
Expand Down

0 comments on commit 204385f

Please sign in to comment.