Changing logo, fix doc, catchy text...

This commit is contained in:
2024-04-04 09:50:17 +02:00
parent fc67cb668d
commit 50169c8fbc
13 changed files with 294 additions and 18 deletions

View File

@@ -36,8 +36,10 @@ The generation is made by using a `HelmChart` object:
```golang
chart := NewChart(appName string)
``` Then, some processes are made to detect the "main app verion" (tag for the main service image), bootstrapping
declared ports in labels, managing links to bind containers in one pods...
```
Then, some processes are made to detect the "main app verion" (tag for the main service image), bootstrapping declared
ports in labels, managing links to bind containers in one pods...
Then, a loop basically makes this:
@@ -54,7 +56,7 @@ for _, service := range project.Services {
**A lot** of string manipulations are made by each `Yaml()` methods. This is where you find the complex and impacting
operations. The `Yaml` methods **don't return a valid YAML content**. This is a Helm Chart Yaml content with template
conditions, vamues and calls to helper templates.
conditions, values and calls to helper templates.
> The `Yaml()` methods, in each object, need contribution, help, fixes, enhancements... They work, but there is a lot of
> complexity. Please, create issues, pull-requests and conversation in the GitHub repository.