@@ -17,7 +17,7 @@ and Helm Chart creation.
17
17
💡 Effortless Efficiency: You only need to add labels when it's necessary to precise things.
18
18
Then call ` katenary convert ` and let the magic happen.
19
19
20
- # What ?
20
+ ## What ?
21
21
22
22
Katenary is a tool to help to transform ` docker-compose ` files to a working Helm Chart for Kubernetes.
23
23
@@ -31,7 +31,7 @@ share it with the community.
31
31
32
32
The main developer is [ Patrice FERLET] ( https://github.com/metal3d ) .
33
33
34
- # Install
34
+ ## Install
35
35
36
36
You can download the binaries from the [ Release] ( https://github.com/metal3d/katenary/releases ) section. Copy the binary
37
37
and rename it to ` katenary ` . Place the binary inside your ` PATH ` . You should now be able to call the ` katenary ` command.
@@ -45,7 +45,7 @@ You can use this commands on Linux:
45
45
sh <( curl -sSL https://raw.githubusercontent.com/metal3d/katenary/master/install.sh)
46
46
```
47
47
48
- # Or, build yourself
48
+ ## Or, build yourself
49
49
50
50
If you've got ` podman ` or ` docker ` , you can build ` katenary ` by using:
51
51
@@ -77,7 +77,7 @@ make build GO=local GOOS=linux GOARCH=arm64
77
77
78
78
Then place the ` katenary ` binary file inside your PATH.
79
79
80
- # Tips
80
+ ## Tips
81
81
82
82
We strongly recommend adding the completion call to you SHELL using the common ` bashrc ` , or whatever the profile file
83
83
you use.
@@ -100,7 +100,7 @@ katenary completion fish | source
100
100
# powershell (as we don't provide any support on Windows yet, please avoid this...)
101
101
```
102
102
103
- # Usage
103
+ ## Usage
104
104
105
105
``` text
106
106
Katenary is a tool to convert compose files to Helm Charts.
@@ -184,7 +184,7 @@ services:
184
184
- MARIADB_PASSWORD
185
185
` ` `
186
186
187
- # Labels
187
+ ## Labels
188
188
189
189
These labels could be found by ` katenary help-labels`, and can be placed as labels inside your docker-compose file:
190
190
@@ -197,6 +197,7 @@ katenary.v3/cronjob: object Create a cronjob from the service.
197
197
katenary.v3/dependencies : list of objects Add Helm dependencies to the service.
198
198
katenary.v3/description : string Description of the service
199
199
katenary.v3/env-from : list of strings Add environment variables from antoher service.
200
+ katenary.v3/exchange-volumes : list of objects Add exchange volumes (empty directory on the node) to share data
200
201
katenary.v3/health-check : object Health check to be added to the deployment.
201
202
katenary.v3/ignore : bool Ignore the service
202
203
katenary.v3/ingress : object Ingress rules to be added to the service.
@@ -206,9 +207,76 @@ katenary.v3/ports: list of uint32 Ports to be added to the service.
206
207
katenary.v3/same-pod : string Move the same-pod deployment to the target deployment.
207
208
katenary.v3/secrets : list of string Env vars to be set as secrets.
208
209
katenary.v3/values : list of string or map Environment variables to be added to the values.yaml
210
+ katenary.v3/values-from : map[string]string Add values from another service.
209
211
` ` `
210
212
211
- # What a name…
213
+ ## Katenary.yaml file and schema validation
214
+
215
+ Instead of using labels inside the docker-compose file, you can use a ` katenary.yaml` file to define the labels. This
216
+ file is simpler to read and maintain, but you need to keep it up-to-date with the docker-compose file.
217
+
218
+ For example, instead of using this :
219
+
220
+ ` ` ` yaml
221
+ services:
222
+ web:
223
+ image: nginx:latest
224
+ katenary.v3/ingress: |-
225
+ hostname: myapp.example.com
226
+ port: 80
227
+ ` ` `
228
+
229
+ You can remove the labels, and use a kanetary.yaml file :
230
+
231
+ ` ` ` yaml
232
+ web:
233
+ ingress:
234
+ hostname: myapp.example.com
235
+ port: 80
236
+ ` ` `
237
+
238
+ To validate the `katenary.yaml` file, you can use the JSON schema using the "master" raw content :
239
+
240
+ ` https://raw.githubusercontent.com/metal3d/katenary/refs/heads/master/katenary.json`
241
+
242
+ It's easy to configure in LazyVim, create a Lua file in your plugins directory :
243
+
244
+ ` ` ` lua
245
+ -- yaml.lua
246
+
247
+ return {
248
+ {
249
+ "neovim/nvim-lspconfig",
250
+ opts = {
251
+ servers = {
252
+ yamlls = {
253
+ settings = {
254
+ yaml = {
255
+ schemas = {
256
+ ["https://raw.githubusercontent.com/metal3d/katenary/refs/heads/master/katenary.json"] = "katenary.yaml",
257
+ },
258
+ },
259
+ },
260
+ },
261
+ },
262
+ },
263
+ },
264
+ }
265
+ ` ` `
266
+
267
+ Use this address to validate the `katenary.yaml` file in VSCode :
268
+
269
+ ` ` ` json
270
+ {
271
+ "yaml.schemas": {
272
+ "https://raw.githubusercontent.com/metal3d/katenary/refs/heads/master/katenary.json": "katenary.yaml"
273
+ }
274
+ }
275
+ ` ` `
276
+
277
+ You can, of course, replace the `refs/heads/master` with a specific tag or branch.
278
+
279
+ # # What a name…
212
280
213
281
Katenary is the stylized name of the project that comes from the "catenary" word.
214
282
0 commit comments