@@ -8,16 +8,34 @@ import "katenary/utils"
8
8
9
9
Utils package provides some utility functions used in katenary. It defines some constants and functions used in the whole project.
10
10
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>)
12
21
13
22
```go
14
23
func CountStartingSpaces(line string) int
15
24
```
16
25
17
26
CountStartingSpaces counts the number of spaces at the beginning of a string.
18
27
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
+
19
37
<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 >)
21
39
22
40
```go
23
41
func GetContainerByName(name string, containers []corev1.Container) (*corev1.Container, int)
@@ -26,7 +44,7 @@ func GetContainerByName(name string, containers []corev1.Container) (*corev1.Con
26
44
GetContainerByName returns a container by name and its index in the array. It returns nil, \-1 if not found.
27
45
28
46
<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 >)
30
48
31
49
```go
32
50
func GetKind(path string) (kind string)
@@ -35,7 +53,7 @@ func GetKind(path string) (kind string)
35
53
GetKind returns the kind of the resource from the file path.
36
54
37
55
<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 >)
39
57
40
58
```go
41
59
func GetServiceNameByPort(port int) string
@@ -44,7 +62,7 @@ func GetServiceNameByPort(port int) string
44
62
GetServiceNameByPort returns the service name for a port. It the service name is not found, it returns an empty string.
45
63
46
64
<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 >)
48
66
49
67
```go
50
68
func GetValuesFromLabel(service types.ServiceConfig, LabelValues string) map[string]*EnvConfig
@@ -62,7 +80,7 @@ func HashComposefiles(files []string) (string, error)
62
80
HashComposefiles returns a hash of the compose files.
63
81
64
82
<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 >)
66
84
67
85
```go
68
86
func Int32Ptr(i int32) *int32
@@ -71,7 +89,7 @@ func Int32Ptr(i int32) *int32
71
89
Int32Ptr returns a pointer to an int32.
72
90
73
91
<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 >)
75
93
76
94
```go
77
95
func MapKeys(m map[string]interface{}) []string
@@ -80,7 +98,7 @@ func MapKeys(m map[string]interface{}) []string
80
98
81
99
82
100
<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 > )
84
102
85
103
``` go
86
104
func PathToName (path string ) string
@@ -89,7 +107,7 @@ func PathToName(path string) string
89
107
PathToName converts a path to a kubernetes complient name.
90
108
91
109
<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 >)
93
111
94
112
```go
95
113
func StrPtr(s string) *string
@@ -98,7 +116,7 @@ func StrPtr(s string) *string
98
116
StrPtr returns a pointer to a string.
99
117
100
118
<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 >)
102
120
103
121
```go
104
122
func TplName(serviceName, appname string, suffix ...string) string
@@ -107,7 +125,7 @@ func TplName(serviceName, appname string, suffix ...string) string
107
125
TplName returns the name of the kubernetes resource as a template string. It is used in the templates and defined in \_helper.tpl file.
108
126
109
127
<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 >)
111
129
112
130
```go
113
131
func TplValue(serviceName, variable string, pipes ...string) string
@@ -125,7 +143,7 @@ func Warn(msg ...interface{})
125
143
Warn prints a warning message
126
144
127
145
<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 > )
129
147
130
148
``` go
131
149
func WordWrap (text string , lineWidth int ) string
@@ -134,7 +152,7 @@ func WordWrap(text string, lineWidth int) string
134
152
WordWrap wraps a string to a given line width. Warning: it may break the string. You need to check the result.
135
153
136
154
<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 >)
138
156
139
157
```go
140
158
func Wrap(src, above, below string) string
@@ -143,7 +161,7 @@ func Wrap(src, above, below string) string
143
161
Wrap wraps a string with a string above and below. It will respect the indentation of the src string.
144
162
145
163
<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 >)
147
165
148
166
```go
149
167
func WrapBytes(src, above, below []byte) []byte
@@ -152,14 +170,14 @@ func WrapBytes(src, above, below []byte) []byte
152
170
WrapBytes wraps a byte array with a byte array above and below. It will respect the indentation of the src string.
153
171
154
172
<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 >)
156
174
157
175
EnvConfig is a struct to hold the description of an environment variable.
158
176
159
177
```go
160
178
type EnvConfig struct {
161
- Description string
162
179
Service types.ServiceConfig
180
+ Description string
163
181
}
164
182
```
165
183
0 commit comments