Skip to content

Commit

Permalink
now uses camelcase
Browse files Browse the repository at this point in the history
  • Loading branch information
facchettos committed Aug 14, 2024
1 parent 9f03c09 commit ff2d81e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions pkg/cli/describe_helm.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,17 @@ import (
)

type DescribeOutput struct {
Distro string `json:"Distro"`
Version string `json:"Version"`
BackingStore string `json:"Backing Store"`
ImageTags ImageTag `json:"Image tags"`
Distro string `json:"distro"`
Version string `json:"version"`
BackingStore string `json:"backingStore"`
ImageTags ImageTag `json:"imageTags"`
}

type ImageTag struct {
APIServer string `json:"apiServer,omitempty"`
Syncer string `json:"syncer,omitempty"`
Scheduler string `json:"scheduler,omitempty"`
ControllerManager string `json:"controllerManger,omitempty"`
ControllerManager string `json:"controllerManager,omitempty"`
}

func DescribeHelm(ctx context.Context, flags *flags.GlobalFlags, output io.Writer, name, format string) error {
Expand Down

0 comments on commit ff2d81e

Please sign in to comment.