Skip to content

Commit 4367a01

Browse files
committed
Big refactorization
- reduce complexity - use better tools to format the code - add more tests - and too many things to list here We are rewriting for V3, so these commits are sometimes big and not fully detailed. Of course, further work will be more documented.
1 parent d98268f commit 4367a01

26 files changed

+576
-507
lines changed

cmd/katenary/main.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ import (
99
"os"
1010
"strings"
1111

12-
"katenary/generator"
13-
"katenary/utils"
14-
1512
"github.com/compose-spec/compose-go/cli"
1613
"github.com/spf13/cobra"
14+
15+
"katenary/generator"
16+
"katenary/utils"
1717
)
1818

1919
const longHelp = `Katenary is a tool to convert compose files to Helm Charts.

doc/docs/packages/cmd/katenary.md

-12
This file was deleted.

doc/docs/packages/generator.md

+60-52
Large diffs are not rendered by default.

doc/docs/packages/generator/extrafiles.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ func NotesFile(services []string) string
1717
NotesFile returns the content of the note.txt file.
1818

1919
<a name="ReadMeFile"></a>
20-
## func [ReadMeFile](<https://github.com/metal3d/katenary/blob/develop/generator/extrafiles/readme.go#L25>)
20+
## func [ReadMeFile](<https://github.com/metal3d/katenary/blob/develop/generator/extrafiles/readme.go#L24>)
2121

2222
```go
2323
func ReadMeFile(charname, description string, values map[string]any) string

doc/docs/packages/generator/labelStructs.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ func PortsFrom(data string) (Ports, error)
158158
PortsFrom returns a Ports from the given string.
159159

160160
<a name="Probe"></a>
161-
## type [Probe](<https://github.com/metal3d/katenary/blob/develop/generator/labelStructs/probes.go#L8-L11>)
161+
## type [Probe](<https://github.com/metal3d/katenary/blob/develop/generator/labelStructs/probes.go#L11-L14>)
162162

163163

164164

@@ -170,7 +170,7 @@ type Probe struct {
170170
```
171171

172172
<a name="ProbeFrom"></a>
173-
### func [ProbeFrom](<https://github.com/metal3d/katenary/blob/develop/generator/labelStructs/probes.go#L13>)
173+
### func [ProbeFrom](<https://github.com/metal3d/katenary/blob/develop/generator/labelStructs/probes.go#L16>)
174174

175175
```go
176176
func ProbeFrom(data string) (*Probe, error)

doc/docs/packages/utils.md

+34-16
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,34 @@ import "katenary/utils"
88

99
Utils package provides some utility functions used in katenary. It defines some constants and functions used in the whole project.
1010

11-
## func [CountStartingSpaces](<https://github.com/metal3d/katenary/blob/develop/utils/utils.go#L31>)
11+
## func [Confirm](<https://github.com/metal3d/katenary/blob/develop/utils/utils.go#L167>)
12+
13+
```go
14+
func Confirm(question string, icon ...Icon) bool
15+
```
16+
17+
Confirm asks a question and returns true if the answer is y.
18+
19+
<a name="CountStartingSpaces"></a>
20+
## func [CountStartingSpaces](<https://github.com/metal3d/katenary/blob/develop/utils/utils.go#L33>)
1221

1322
```go
1423
func CountStartingSpaces(line string) int
1524
```
1625

1726
CountStartingSpaces counts the number of spaces at the beginning of a string.
1827

28+
<a name="EncodeBasicYaml"></a>
29+
## func [EncodeBasicYaml](<https://github.com/metal3d/katenary/blob/develop/utils/utils.go#L179>)
30+
31+
```go
32+
func EncodeBasicYaml(data any) ([]byte, error)
33+
```
34+
35+
EncodeBasicYaml encodes a basic yaml from an interface.
36+
1937
<a name="GetContainerByName"></a>
20-
## func [GetContainerByName](<https://github.com/metal3d/katenary/blob/develop/utils/utils.go#L82>)
38+
## func [GetContainerByName](<https://github.com/metal3d/katenary/blob/develop/utils/utils.go#L84>)
2139

2240
```go
2341
func GetContainerByName(name string, containers []corev1.Container) (*corev1.Container, int)
@@ -26,7 +44,7 @@ func GetContainerByName(name string, containers []corev1.Container) (*corev1.Con
2644
GetContainerByName returns a container by name and its index in the array. It returns nil, \-1 if not found.
2745

2846
<a name="GetKind"></a>
29-
## func [GetKind](<https://github.com/metal3d/katenary/blob/develop/utils/utils.go#L44>)
47+
## func [GetKind](<https://github.com/metal3d/katenary/blob/develop/utils/utils.go#L46>)
3048

3149
```go
3250
func GetKind(path string) (kind string)
@@ -35,7 +53,7 @@ func GetKind(path string) (kind string)
3553
GetKind returns the kind of the resource from the file path.
3654

3755
<a name="GetServiceNameByPort"></a>
38-
## func [GetServiceNameByPort](<https://github.com/metal3d/katenary/blob/develop/utils/utils.go#L72>)
56+
## func [GetServiceNameByPort](<https://github.com/metal3d/katenary/blob/develop/utils/utils.go#L74>)
3957

4058
```go
4159
func GetServiceNameByPort(port int) string
@@ -44,7 +62,7 @@ func GetServiceNameByPort(port int) string
4462
GetServiceNameByPort returns the service name for a port. It the service name is not found, it returns an empty string.
4563

4664
<a name="GetValuesFromLabel"></a>
47-
## func [GetValuesFromLabel](<https://github.com/metal3d/katenary/blob/develop/utils/utils.go#L122>)
65+
## func [GetValuesFromLabel](<https://github.com/metal3d/katenary/blob/develop/utils/utils.go#L124>)
4866

4967
```go
5068
func GetValuesFromLabel(service types.ServiceConfig, LabelValues string) map[string]*EnvConfig
@@ -62,7 +80,7 @@ func HashComposefiles(files []string) (string, error)
6280
HashComposefiles returns a hash of the compose files.
6381

6482
<a name="Int32Ptr"></a>
65-
## func [Int32Ptr](<https://github.com/metal3d/katenary/blob/develop/utils/utils.go#L25>)
83+
## func [Int32Ptr](<https://github.com/metal3d/katenary/blob/develop/utils/utils.go#L27>)
6684

6785
```go
6886
func Int32Ptr(i int32) *int32
@@ -71,7 +89,7 @@ func Int32Ptr(i int32) *int32
7189
Int32Ptr returns a pointer to an int32.
7290

7391
<a name="MapKeys"></a>
74-
## func [MapKeys](<https://github.com/metal3d/katenary/blob/develop/utils/utils.go#L156>)
92+
## func [MapKeys](<https://github.com/metal3d/katenary/blob/develop/utils/utils.go#L158>)
7593

7694
```go
7795
func MapKeys(m map[string]interface{}) []string
@@ -80,7 +98,7 @@ func MapKeys(m map[string]interface{}) []string
8098

8199

82100
<a name="PathToName"></a>
83-
## func [PathToName](<https://github.com/metal3d/katenary/blob/develop/utils/utils.go#L101>)
101+
## func [PathToName](<https://github.com/metal3d/katenary/blob/develop/utils/utils.go#L103>)
84102

85103
```go
86104
func PathToName(path string) string
@@ -89,7 +107,7 @@ func PathToName(path string) string
89107
PathToName converts a path to a kubernetes complient name.
90108

91109
<a name="StrPtr"></a>
92-
## func [StrPtr](<https://github.com/metal3d/katenary/blob/develop/utils/utils.go#L28>)
110+
## func [StrPtr](<https://github.com/metal3d/katenary/blob/develop/utils/utils.go#L30>)
93111

94112
```go
95113
func StrPtr(s string) *string
@@ -98,7 +116,7 @@ func StrPtr(s string) *string
98116
StrPtr returns a pointer to a string.
99117

100118
<a name="TplName"></a>
101-
## func [TplName](<https://github.com/metal3d/katenary/blob/develop/utils/utils.go#L17>)
119+
## func [TplName](<https://github.com/metal3d/katenary/blob/develop/utils/utils.go#L19>)
102120

103121
```go
104122
func TplName(serviceName, appname string, suffix ...string) string
@@ -107,7 +125,7 @@ func TplName(serviceName, appname string, suffix ...string) string
107125
TplName returns the name of the kubernetes resource as a template string. It is used in the templates and defined in \_helper.tpl file.
108126

109127
<a name="TplValue"></a>
110-
## func [TplValue](<https://github.com/metal3d/katenary/blob/develop/utils/utils.go#L92>)
128+
## func [TplValue](<https://github.com/metal3d/katenary/blob/develop/utils/utils.go#L94>)
111129

112130
```go
113131
func TplValue(serviceName, variable string, pipes ...string) string
@@ -125,7 +143,7 @@ func Warn(msg ...interface{})
125143
Warn prints a warning message
126144

127145
<a name="WordWrap"></a>
128-
## func [WordWrap](<https://github.com/metal3d/katenary/blob/develop/utils/utils.go#L152>)
146+
## func [WordWrap](<https://github.com/metal3d/katenary/blob/develop/utils/utils.go#L154>)
129147

130148
```go
131149
func WordWrap(text string, lineWidth int) string
@@ -134,7 +152,7 @@ func WordWrap(text string, lineWidth int) string
134152
WordWrap wraps a string to a given line width. Warning: it may break the string. You need to check the result.
135153

136154
<a name="Wrap"></a>
137-
## func [Wrap](<https://github.com/metal3d/katenary/blob/develop/utils/utils.go#L61>)
155+
## func [Wrap](<https://github.com/metal3d/katenary/blob/develop/utils/utils.go#L63>)
138156

139157
```go
140158
func Wrap(src, above, below string) string
@@ -143,7 +161,7 @@ func Wrap(src, above, below string) string
143161
Wrap wraps a string with a string above and below. It will respect the indentation of the src string.
144162

145163
<a name="WrapBytes"></a>
146-
## func [WrapBytes](<https://github.com/metal3d/katenary/blob/develop/utils/utils.go#L67>)
164+
## func [WrapBytes](<https://github.com/metal3d/katenary/blob/develop/utils/utils.go#L69>)
147165

148166
```go
149167
func WrapBytes(src, above, below []byte) []byte
@@ -152,14 +170,14 @@ func WrapBytes(src, above, below []byte) []byte
152170
WrapBytes wraps a byte array with a byte array above and below. It will respect the indentation of the src string.
153171

154172
<a name="EnvConfig"></a>
155-
## type [EnvConfig](<https://github.com/metal3d/katenary/blob/develop/utils/utils.go#L116-L119>)
173+
## type [EnvConfig](<https://github.com/metal3d/katenary/blob/develop/utils/utils.go#L118-L121>)
156174

157175
EnvConfig is a struct to hold the description of an environment variable.
158176

159177
```go
160178
type EnvConfig struct {
161-
Description string
162179
Service types.ServiceConfig
180+
Description string
163181
}
164182
```
165183

doc/docs/statics/main.css

-5
Original file line numberDiff line numberDiff line change
@@ -77,11 +77,6 @@ h3[id*="katenaryio"] {
7777
}
7878

7979
/*Zoomable images*/
80-
81-
/*[data-md-color-scheme="slate"] #logo {
82-
background-image: url("logo-bright.svg");
83-
}*/
84-
8580
.zoomable svg {
8681
background-color: var(--md-default-bg-color);
8782
padding: 1rem;

generator/chart.go

+80-17
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,46 @@
11
package generator
22

3-
import "katenary/generator/labelStructs"
3+
import (
4+
"fmt"
5+
"os"
6+
"path/filepath"
7+
"strings"
8+
9+
"katenary/generator/labelStructs"
10+
"katenary/utils"
11+
)
12+
13+
// ConvertOptions are the options to convert a compose project to a helm chart.
14+
type ConvertOptions struct {
15+
AppVersion *string
16+
OutputDir string
17+
ChartVersion string
18+
Profiles []string
19+
Force bool
20+
HelmUpdate bool
21+
}
422

523
// ChartTemplate is a template of a chart. It contains the content of the template and the name of the service.
624
// This is used internally to generate the templates.
7-
//
8-
// TODO: maybe we can set it private.
925
type ChartTemplate struct {
10-
Content []byte
1126
Servicename string
27+
Content []byte
1228
}
1329

1430
// HelmChart is a Helm Chart representation. It contains all the
1531
// tempaltes, values, versions, helpers...
1632
type HelmChart struct {
33+
Templates map[string]*ChartTemplate `yaml:"-"`
34+
Values map[string]any `yaml:"-"`
35+
VolumeMounts map[string]any `yaml:"-"`
36+
composeHash *string `yaml:"-"`
1737
Name string `yaml:"name"`
1838
ApiVersion string `yaml:"apiVersion"`
1939
Version string `yaml:"version"`
2040
AppVersion string `yaml:"appVersion"`
2141
Description string `yaml:"description"`
42+
Helper string `yaml:"-"`
2243
Dependencies []labelStructs.Dependency `yaml:"dependencies,omitempty"`
23-
Templates map[string]*ChartTemplate `yaml:"-"` // do not export to yaml
24-
Helper string `yaml:"-"` // do not export to yaml
25-
Values map[string]any `yaml:"-"` // do not export to yaml
26-
VolumeMounts map[string]any `yaml:"-"` // do not export to yaml
27-
composeHash *string `yaml:"-"` // do not export to yaml
2844
}
2945

3046
// NewChart creates a new empty chart with the given name.
@@ -42,12 +58,59 @@ func NewChart(name string) *HelmChart {
4258
}
4359
}
4460

45-
// ConvertOptions are the options to convert a compose project to a helm chart.
46-
type ConvertOptions struct {
47-
Force bool // Force the chart directory deletion if it already exists.
48-
OutputDir string // The output directory of the chart.
49-
Profiles []string // Profile to use for the conversion.
50-
HelmUpdate bool // If true, the "helm dep update" command will be run after the chart generation.
51-
AppVersion *string // Set the chart "appVersion" field. If nil, the version will be set to 0.1.0.
52-
ChartVersion string // Set the chart "version" field.
61+
// SaveTemplates the templates of the chart to the given directory.
62+
func (chart *HelmChart) SaveTemplates(templateDir string) {
63+
for name, template := range chart.Templates {
64+
t := template.Content
65+
t = removeNewlinesInsideBrackets(t)
66+
t = removeUnwantedLines(t)
67+
t = addModeline(t)
68+
69+
kind := utils.GetKind(name)
70+
var icon utils.Icon
71+
switch kind {
72+
case "deployment":
73+
icon = utils.IconPackage
74+
case "service":
75+
icon = utils.IconPlug
76+
case "ingress":
77+
icon = utils.IconWorld
78+
case "volumeclaim":
79+
icon = utils.IconCabinet
80+
case "configmap":
81+
icon = utils.IconConfig
82+
case "secret":
83+
icon = utils.IconSecret
84+
default:
85+
icon = utils.IconInfo
86+
}
87+
88+
servicename := template.Servicename
89+
if err := os.MkdirAll(filepath.Join(templateDir, servicename), 0o755); err != nil {
90+
fmt.Println(utils.IconFailure, err)
91+
os.Exit(1)
92+
}
93+
fmt.Println(icon, "Creating", kind, servicename)
94+
// if the name is a path, create the directory
95+
if strings.Contains(name, string(filepath.Separator)) {
96+
name = filepath.Join(templateDir, name)
97+
err := os.MkdirAll(filepath.Dir(name), 0o755)
98+
if err != nil {
99+
fmt.Println(utils.IconFailure, err)
100+
os.Exit(1)
101+
}
102+
} else {
103+
// remove the serivce name from the template name
104+
name = strings.Replace(name, servicename+".", "", 1)
105+
name = filepath.Join(templateDir, servicename, name)
106+
}
107+
f, err := os.Create(name)
108+
if err != nil {
109+
fmt.Println(utils.IconFailure, err)
110+
os.Exit(1)
111+
}
112+
113+
f.Write(t)
114+
f.Close()
115+
}
53116
}

0 commit comments

Comments
 (0)