A small refactoring

This commit is contained in:
2024-05-06 10:44:08 +02:00
parent 638e35b60d
commit 7d1effa22a
12 changed files with 47 additions and 21 deletions

View File

@ -0,0 +1,37 @@
package helmrelease
type Chart struct {
Name string
Version string
}
type Repo struct {
URL string
Type string
}
type PrettyConfig struct {
Key string
Path string
Value string
}
type Helm struct {
Release string
Chart Chart
Repo Repo
}
type Config struct {
Pretty []PrettyConfig
Raw string
}
type HelmRelease struct {
Helm Helm
Config Config
}
type PrettyConfigSchema struct {
Description string
Path string
}