@@ -950,10 +950,10 @@ animals:
950
950
` )
951
951
952
952
descriptions := map [string ]helm.ChartValueDescription {
953
- "animals.birdCount" : {Description : "(int) the number of birds we have" },
954
- "animals.birds" : {Description : "(list) the list of birds we have" },
953
+ "animals.birdCount" : {ValueType : intType , Description : "the number of birds we have" },
954
+ "animals.birds" : {ValueType : listType , Description : "the list of birds we have" },
955
955
"animals.nonWeirdCats" : {Description : "the cats that we have that are not weird" },
956
- "animals.undescribedCount" : {Description : "(int) " },
956
+ "animals.undescribedCount" : {ValueType : intType , Description : "" },
957
957
}
958
958
959
959
valuesRows , err := getSortedValuesTableRows (helmValues , descriptions )
@@ -999,8 +999,8 @@ animals:
999
999
` )
1000
1000
1001
1001
descriptions := map [string ]helm.ChartValueDescription {
1002
- "animals.birdCount" : {Description : "(int) the number of birds we have" , Default : "some" },
1003
- "animals.birds" : {Description : "(list) the list of birds we have" , Default : "explicit" },
1002
+ "animals.birdCount" : {ValueType : intType , Description : "the number of birds we have" , Default : "some" },
1003
+ "animals.birds" : {ValueType : listType , Description : "the list of birds we have" , Default : "explicit" },
1004
1004
"animals.nonWeirdCats" : {Description : "the cats that we have that are not weird" , Default : "default" },
1005
1005
}
1006
1006
0 commit comments