Skip to content

Commit b63d8e4

Browse files
committed
doc(readme): Explain the use of the yaml/json schema
And set heading level to 2
1 parent 9766dac commit b63d8e4

File tree

1 file changed

+75
-7
lines changed

1 file changed

+75
-7
lines changed

README.md

+75-7
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ and Helm Chart creation.
1717
💡 Effortless Efficiency: You only need to add labels when it's necessary to precise things.
1818
Then call `katenary convert` and let the magic happen.
1919

20-
# What ?
20+
## What ?
2121

2222
Katenary is a tool to help to transform `docker-compose` files to a working Helm Chart for Kubernetes.
2323

@@ -31,7 +31,7 @@ share it with the community.
3131

3232
The main developer is [Patrice FERLET](https://github.com/metal3d).
3333

34-
# Install
34+
## Install
3535

3636
You can download the binaries from the [Release](https://github.com/metal3d/katenary/releases) section. Copy the binary
3737
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:
4545
sh <(curl -sSL https://raw.githubusercontent.com/metal3d/katenary/master/install.sh)
4646
```
4747

48-
# Or, build yourself
48+
## Or, build yourself
4949

5050
If you've got `podman` or `docker`, you can build `katenary` by using:
5151

@@ -77,7 +77,7 @@ make build GO=local GOOS=linux GOARCH=arm64
7777

7878
Then place the `katenary` binary file inside your PATH.
7979

80-
# Tips
80+
## Tips
8181

8282
We strongly recommend adding the completion call to you SHELL using the common `bashrc`, or whatever the profile file
8383
you use.
@@ -100,7 +100,7 @@ katenary completion fish | source
100100
# powershell (as we don't provide any support on Windows yet, please avoid this...)
101101
```
102102

103-
# Usage
103+
## Usage
104104

105105
```text
106106
Katenary is a tool to convert compose files to Helm Charts.
@@ -184,7 +184,7 @@ services:
184184
- MARIADB_PASSWORD
185185
```
186186
187-
# Labels
187+
## Labels
188188
189189
These labels could be found by `katenary help-labels`, and can be placed as labels inside your docker-compose file:
190190

@@ -197,6 +197,7 @@ katenary.v3/cronjob: object Create a cronjob from the service.
197197
katenary.v3/dependencies: list of objects Add Helm dependencies to the service.
198198
katenary.v3/description: string Description of the service
199199
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
200201
katenary.v3/health-check: object Health check to be added to the deployment.
201202
katenary.v3/ignore: bool Ignore the service
202203
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.
206207
katenary.v3/same-pod: string Move the same-pod deployment to the target deployment.
207208
katenary.v3/secrets: list of string Env vars to be set as secrets.
208209
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.
209211
```
210212
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…
212280

213281
Katenary is the stylized name of the project that comes from the "catenary" word.
214282

0 commit comments

Comments
 (0)