Skip to content

Commit

Permalink
helm md generator: Remove obsolete code
Browse files Browse the repository at this point in the history
Commit a426011 moved global helm values
to top-level.
  • Loading branch information
gogolok authored and danail-branekov committed Oct 14, 2024
1 parent 6c23d69 commit 3e20a21
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions scripts/helmdoc/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,6 @@ func printDocForSchema(schema map[string]any, indentLevel int) {
indentStr := strings.Repeat(" ", indentLevel)
names := slices.Collect(maps.Keys(schema))
sort.Slice(names, func(a, b int) bool {
if names[a] == "global" {
return true
}
if names[b] == "global" {
return false
}
return names[a] < names[b]
})

Expand Down

0 comments on commit 3e20a21

Please sign in to comment.