Skip to content

Commit

Permalink
Change control-plane field to managed
Browse files Browse the repository at this point in the history
  • Loading branch information
MichalKalke committed Jul 2, 2024
1 parent aa72a51 commit 8cfec58
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion internal/communitymodules/modules.go
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ func ManagedModules(client cmdcommon.KubeClientConfig, cfg cmdcommon.KymaConfig)
for _, name := range moduleNames {
managed[name] = row{
Name: name,
Managed: "Managed",
Managed: "Yes",
}
}
return managed, nil
Expand Down
2 changes: 1 addition & 1 deletion internal/communitymodules/render.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
func RenderTableForCollective(raw bool, moduleMap moduleMap) {
renderTable(raw,
convertRowToCollective(moduleMap),
[]string{"NAME", "REPOSITORY", "VERSION INSTALLED", "CONTROL-PLANE"})
[]string{"NAME", "REPOSITORY", "VERSION INSTALLED", "MANAGED"})
}

func convertRowToCollective(moduleMap moduleMap) [][]string {
Expand Down

0 comments on commit 8cfec58

Please sign in to comment.