Skip to content

Commit 6b301f3

Browse files
authored
Merge pull request #86 from metal3d/develop
Add "values-from" and more tests
2 parents 5f20585 + 9181c38 commit 6b301f3

15 files changed

+520
-85
lines changed

doc/docs/labels.md

+39
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ Katenary will try to Unmarshal these labels.
2424
| `katenary.v3/same-pod` | Move the same-pod deployment to the target deployment. | string |
2525
| `katenary.v3/secrets` | Env vars to be set as secrets. | list of string |
2626
| `katenary.v3/values` | Environment variables to be added to the values.yaml | list of string or map |
27+
| `katenary.v3/values-from` | Add values from another service. | map[string]string |
2728

2829
<!-- STOP_LABEL_DOC : do not remove this tag !-->
2930

@@ -438,4 +439,42 @@ labels:
438439
```
439440

440441

442+
### katenary.v3/values-from
443+
444+
Add values from another service.
445+
446+
**Type**: `map[string]string`
447+
448+
This label allows adding values from another service to the current service.
449+
It avoid duplicating values, environment or secrets that should be the same.
450+
451+
The key is the value to be added, and the value is the "key" to fetch in the
452+
form `service_name.environment_name`.
453+
454+
**Example:**
455+
456+
```yaml
457+
database:
458+
image: mariadb:10.5
459+
environment:
460+
MARIADB_USER: myuser
461+
MARIADB_PASSWORD: mypassword
462+
labels:
463+
# it can be a secret
464+
katenary.v3/secrets: |-
465+
- DB_PASSWORD
466+
php:
467+
image: php:7.4-fpm
468+
environment:
469+
# it's duplicated in docker / podman
470+
DB_USER: myuser
471+
DB_PASSWORD: mypassword
472+
labels:
473+
# removes the duplicated, use the configMap and secrets from "database"
474+
katenary.v3/values-from: |-
475+
DB_USER: database.MARIADB_USER
476+
DB_PASSWORD: database.MARIADB_PASSWORD
477+
```
478+
479+
441480
<!-- STOP_DETAILED_DOC : do not remove this tag !-->

doc/docs/packages/generator.md

+31-40
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import "katenary/generator"
88

99
The generator package generates kubernetes objects from a "compose" file and transforms them into a helm chart.
1010

11-
The generator package is the core of katenary. It is responsible for generating kubernetes objects from a compose file and transforming them into a helm chart. Convertion manipulates Yaml representation of kubernetes object to add conditions, labels, annotations, etc. to the objects. It also create the values to be set to the values.yaml file.
11+
The generator package is the core of katenary. It is responsible for generating kubernetes objects from a compose file and transforming them into a helm chart. Conversion manipulates Yaml representation of kubernetes object to add conditions, labels, annotations, etc. to the objects. It also create the values to be set to the values.yaml file.
1212

1313
The generate.Convert\(\) create an HelmChart object and call "Generate\(\)" method to convert from a compose file to a helm chart. It saves the helm chart in the given directory.
1414

@@ -98,7 +98,7 @@ func UnWrapTPL(in []byte) []byte
9898
UnWrapTPL removes the line wrapping from a template.
9999

100100
<a name="ChartTemplate"></a>
101-
## type [ChartTemplate](<https://github.com/metal3d/katenary/blob/develop/generator/chart.go#L18-L21>)
101+
## type [ChartTemplate](<https://github.com/metal3d/katenary/blob/develop/generator/chart.go#L19-L22>)
102102

103103
ChartTemplate is a template of a chart. It contains the content of the template and the name of the service. This is used internally to generate the templates.
104104

@@ -110,7 +110,7 @@ type ChartTemplate struct {
110110
```
111111

112112
<a name="ConfigMap"></a>
113-
## type [ConfigMap](<https://github.com/metal3d/katenary/blob/develop/generator/configMap.go#L46-L51>)
113+
## type [ConfigMap](<https://github.com/metal3d/katenary/blob/develop/generator/configMap.go#L35-L40>)
114114

115115
ConfigMap is a kubernetes ConfigMap. Implements the DataMap interface.
116116

@@ -122,7 +122,7 @@ type ConfigMap struct {
122122
```
123123

124124
<a name="NewConfigMap"></a>
125-
### func [NewConfigMap](<https://github.com/metal3d/katenary/blob/develop/generator/configMap.go#L55>)
125+
### func [NewConfigMap](<https://github.com/metal3d/katenary/blob/develop/generator/configMap.go#L44>)
126126

127127
```go
128128
func NewConfigMap(service types.ServiceConfig, appName string, forFile bool) *ConfigMap
@@ -131,7 +131,7 @@ func NewConfigMap(service types.ServiceConfig, appName string, forFile bool) *Co
131131
NewConfigMap creates a new ConfigMap from a compose service. The appName is the name of the application taken from the project name. The ConfigMap is filled by environment variables and labels "map\-env".
132132

133133
<a name="NewConfigMapFromDirectory"></a>
134-
### func [NewConfigMapFromDirectory](<https://github.com/metal3d/katenary/blob/develop/generator/configMap.go#L128>)
134+
### func [NewConfigMapFromDirectory](<https://github.com/metal3d/katenary/blob/develop/generator/configMap.go#L117>)
135135

136136
```go
137137
func NewConfigMapFromDirectory(service types.ServiceConfig, appName, path string) *ConfigMap
@@ -140,7 +140,7 @@ func NewConfigMapFromDirectory(service types.ServiceConfig, appName, path string
140140
NewConfigMapFromDirectory creates a new ConfigMap from a compose service. This path is the path to the file or directory. If the path is a directory, all files in the directory are added to the ConfigMap. Each subdirectory are ignored. Note that the Generate\(\) function will create the subdirectories ConfigMaps.
141141

142142
<a name="ConfigMap.AddData"></a>
143-
### func \(\*ConfigMap\) [AddData](<https://github.com/metal3d/katenary/blob/develop/generator/configMap.go#L159>)
143+
### func \(\*ConfigMap\) [AddData](<https://github.com/metal3d/katenary/blob/develop/generator/configMap.go#L148>)
144144

145145
```go
146146
func (c *ConfigMap) AddData(key, value string)
@@ -149,7 +149,7 @@ func (c *ConfigMap) AddData(key, value string)
149149
AddData adds a key value pair to the configmap. Append or overwrite the value if the key already exists.
150150

151151
<a name="ConfigMap.AppendDir"></a>
152-
### func \(\*ConfigMap\) [AppendDir](<https://github.com/metal3d/katenary/blob/develop/generator/configMap.go#L165>)
152+
### func \(\*ConfigMap\) [AppendDir](<https://github.com/metal3d/katenary/blob/develop/generator/configMap.go#L154>)
153153

154154
```go
155155
func (c *ConfigMap) AppendDir(path string)
@@ -158,7 +158,7 @@ func (c *ConfigMap) AppendDir(path string)
158158
AddFile adds files from given path to the configmap. It is not recursive, to add all files in a directory, you need to call this function for each subdirectory.
159159

160160
<a name="ConfigMap.AppendFile"></a>
161-
### func \(\*ConfigMap\) [AppendFile](<https://github.com/metal3d/katenary/blob/develop/generator/configMap.go#L200>)
161+
### func \(\*ConfigMap\) [AppendFile](<https://github.com/metal3d/katenary/blob/develop/generator/configMap.go#L189>)
162162

163163
```go
164164
func (c *ConfigMap) AppendFile(path string)
@@ -167,7 +167,7 @@ func (c *ConfigMap) AppendFile(path string)
167167

168168

169169
<a name="ConfigMap.Filename"></a>
170-
### func \(\*ConfigMap\) [Filename](<https://github.com/metal3d/katenary/blob/develop/generator/configMap.go#L218>)
170+
### func \(\*ConfigMap\) [Filename](<https://github.com/metal3d/katenary/blob/develop/generator/configMap.go#L207>)
171171

172172
```go
173173
func (c *ConfigMap) Filename() string
@@ -176,7 +176,7 @@ func (c *ConfigMap) Filename() string
176176
Filename returns the filename of the configmap. If the configmap is used for files, the filename contains the path.
177177

178178
<a name="ConfigMap.SetData"></a>
179-
### func \(\*ConfigMap\) [SetData](<https://github.com/metal3d/katenary/blob/develop/generator/configMap.go#L228>)
179+
### func \(\*ConfigMap\) [SetData](<https://github.com/metal3d/katenary/blob/develop/generator/configMap.go#L217>)
180180

181181
```go
182182
func (c *ConfigMap) SetData(data map[string]string)
@@ -185,7 +185,7 @@ func (c *ConfigMap) SetData(data map[string]string)
185185
SetData sets the data of the configmap. It replaces the entire data.
186186

187187
<a name="ConfigMap.Yaml"></a>
188-
### func \(\*ConfigMap\) [Yaml](<https://github.com/metal3d/katenary/blob/develop/generator/configMap.go#L233>)
188+
### func \(\*ConfigMap\) [Yaml](<https://github.com/metal3d/katenary/blob/develop/generator/configMap.go#L222>)
189189

190190
```go
191191
func (c *ConfigMap) Yaml() ([]byte, error)
@@ -205,7 +205,7 @@ type ConfigMapMount struct {
205205
```
206206

207207
<a name="ConvertOptions"></a>
208-
## type [ConvertOptions](<https://github.com/metal3d/katenary/blob/develop/generator/chart.go#L24-L33>)
208+
## type [ConvertOptions](<https://github.com/metal3d/katenary/blob/develop/generator/chart.go#L25-L34>)
209209

210210
ConvertOptions are the options to convert a compose project to a helm chart.
211211

@@ -282,17 +282,8 @@ type DataMap interface {
282282
}
283283
```
284284

285-
<a name="NewFileMap"></a>
286-
### func [NewFileMap](<https://github.com/metal3d/katenary/blob/develop/generator/configMap.go#L28>)
287-
288-
```go
289-
func NewFileMap(service types.ServiceConfig, appName, kind string) DataMap
290-
```
291-
292-
NewFileMap creates a new DataMap from a compose service. The appName is the name of the application taken from the project name.
293-
294285
<a name="Deployment"></a>
295-
## type [Deployment](<https://github.com/metal3d/katenary/blob/develop/generator/deployment.go#L34-L43>)
286+
## type [Deployment](<https://github.com/metal3d/katenary/blob/develop/generator/deployment.go#L34-L44>)
296287

297288
Deployment is a kubernetes Deployment.
298289

@@ -304,7 +295,7 @@ type Deployment struct {
304295
```
305296

306297
<a name="NewDeployment"></a>
307-
### func [NewDeployment](<https://github.com/metal3d/katenary/blob/develop/generator/deployment.go#L47>)
298+
### func [NewDeployment](<https://github.com/metal3d/katenary/blob/develop/generator/deployment.go#L48>)
308299

309300
```go
310301
func NewDeployment(service types.ServiceConfig, chart *HelmChart) *Deployment
@@ -313,7 +304,7 @@ func NewDeployment(service types.ServiceConfig, chart *HelmChart) *Deployment
313304
NewDeployment creates a new Deployment from a compose service. The appName is the name of the application taken from the project name. It also creates the Values map that will be used to create the values.yaml file.
314305

315306
<a name="Deployment.AddContainer"></a>
316-
### func \(\*Deployment\) [AddContainer](<https://github.com/metal3d/katenary/blob/develop/generator/deployment.go#L113>)
307+
### func \(\*Deployment\) [AddContainer](<https://github.com/metal3d/katenary/blob/develop/generator/deployment.go#L115>)
317308

318309
```go
319310
func (d *Deployment) AddContainer(service types.ServiceConfig)
@@ -322,7 +313,7 @@ func (d *Deployment) AddContainer(service types.ServiceConfig)
322313
AddContainer adds a container to the deployment.
323314

324315
<a name="Deployment.AddHealthCheck"></a>
325-
### func \(\*Deployment\) [AddHealthCheck](<https://github.com/metal3d/katenary/blob/develop/generator/deployment.go#L158>)
316+
### func \(\*Deployment\) [AddHealthCheck](<https://github.com/metal3d/katenary/blob/develop/generator/deployment.go#L160>)
326317

327318
```go
328319
func (d *Deployment) AddHealthCheck(service types.ServiceConfig, container *corev1.Container)
@@ -331,7 +322,7 @@ func (d *Deployment) AddHealthCheck(service types.ServiceConfig, container *core
331322

332323

333324
<a name="Deployment.AddIngress"></a>
334-
### func \(\*Deployment\) [AddIngress](<https://github.com/metal3d/katenary/blob/develop/generator/deployment.go#L187>)
325+
### func \(\*Deployment\) [AddIngress](<https://github.com/metal3d/katenary/blob/develop/generator/deployment.go#L189>)
335326

336327
```go
337328
func (d *Deployment) AddIngress(service types.ServiceConfig, appName string) *Ingress
@@ -340,7 +331,7 @@ func (d *Deployment) AddIngress(service types.ServiceConfig, appName string) *In
340331
AddIngress adds an ingress to the deployment. It creates the ingress object.
341332

342333
<a name="Deployment.AddLegacyVolume"></a>
343-
### func \(\*Deployment\) [AddLegacyVolume](<https://github.com/metal3d/katenary/blob/develop/generator/deployment.go#L217>)
334+
### func \(\*Deployment\) [AddLegacyVolume](<https://github.com/metal3d/katenary/blob/develop/generator/deployment.go#L219>)
344335

345336
```go
346337
func (d *Deployment) AddLegacyVolume(name, kind string)
@@ -349,7 +340,7 @@ func (d *Deployment) AddLegacyVolume(name, kind string)
349340

350341

351342
<a name="Deployment.AddVolumes"></a>
352-
### func \(\*Deployment\) [AddVolumes](<https://github.com/metal3d/katenary/blob/develop/generator/deployment.go#L193>)
343+
### func \(\*Deployment\) [AddVolumes](<https://github.com/metal3d/katenary/blob/develop/generator/deployment.go#L195>)
353344

354345
```go
355346
func (d *Deployment) AddVolumes(service types.ServiceConfig, appName string)
@@ -358,7 +349,7 @@ func (d *Deployment) AddVolumes(service types.ServiceConfig, appName string)
358349
AddVolumes adds a volume to the deployment. It does not create the PVC, it only adds the volumes to the deployment. If the volume is a bind volume it will warn the user that it is not supported yet.
359350

360351
<a name="Deployment.BindFrom"></a>
361-
### func \(\*Deployment\) [BindFrom](<https://github.com/metal3d/katenary/blob/develop/generator/deployment.go#L238>)
352+
### func \(\*Deployment\) [BindFrom](<https://github.com/metal3d/katenary/blob/develop/generator/deployment.go#L240>)
362353

363354
```go
364355
func (d *Deployment) BindFrom(service types.ServiceConfig, binded *Deployment)
@@ -367,7 +358,7 @@ func (d *Deployment) BindFrom(service types.ServiceConfig, binded *Deployment)
367358

368359

369360
<a name="Deployment.BindMapFilesToContainer"></a>
370-
### func \(\*Deployment\) [BindMapFilesToContainer](<https://github.com/metal3d/katenary/blob/develop/generator/deployment.go#L375>)
361+
### func \(\*Deployment\) [BindMapFilesToContainer](<https://github.com/metal3d/katenary/blob/develop/generator/deployment.go#L377>)
371362

372363
```go
373364
func (d *Deployment) BindMapFilesToContainer(service types.ServiceConfig, secrets []string, appName string) (*corev1.Container, int)
@@ -376,7 +367,7 @@ func (d *Deployment) BindMapFilesToContainer(service types.ServiceConfig, secret
376367

377368

378369
<a name="Deployment.DependsOn"></a>
379-
### func \(\*Deployment\) [DependsOn](<https://github.com/metal3d/katenary/blob/develop/generator/deployment.go#L266>)
370+
### func \(\*Deployment\) [DependsOn](<https://github.com/metal3d/katenary/blob/develop/generator/deployment.go#L268>)
380371

381372
```go
382373
func (d *Deployment) DependsOn(to *Deployment, servicename string) error
@@ -385,7 +376,7 @@ func (d *Deployment) DependsOn(to *Deployment, servicename string) error
385376
DependsOn adds a initContainer to the deployment that will wait for the service to be up.
386377

387378
<a name="Deployment.Filename"></a>
388-
### func \(\*Deployment\) [Filename](<https://github.com/metal3d/katenary/blob/develop/generator/deployment.go#L297>)
379+
### func \(\*Deployment\) [Filename](<https://github.com/metal3d/katenary/blob/develop/generator/deployment.go#L299>)
389380

390381
```go
391382
func (d *Deployment) Filename() string
@@ -394,7 +385,7 @@ func (d *Deployment) Filename() string
394385
Filename returns the filename of the deployment.
395386

396387
<a name="Deployment.MountExchangeVolumes"></a>
397-
### func \(\*Deployment\) [MountExchangeVolumes](<https://github.com/metal3d/katenary/blob/develop/generator/deployment.go#L426>)
388+
### func \(\*Deployment\) [MountExchangeVolumes](<https://github.com/metal3d/katenary/blob/develop/generator/deployment.go#L428>)
398389

399390
```go
400391
func (d *Deployment) MountExchangeVolumes()
@@ -403,7 +394,7 @@ func (d *Deployment) MountExchangeVolumes()
403394

404395

405396
<a name="Deployment.SetEnvFrom"></a>
406-
### func \(\*Deployment\) [SetEnvFrom](<https://github.com/metal3d/katenary/blob/develop/generator/deployment.go#L302>)
397+
### func \(\*Deployment\) [SetEnvFrom](<https://github.com/metal3d/katenary/blob/develop/generator/deployment.go#L304>)
407398

408399
```go
409400
func (d *Deployment) SetEnvFrom(service types.ServiceConfig, appName string, samePod ...bool)
@@ -412,7 +403,7 @@ func (d *Deployment) SetEnvFrom(service types.ServiceConfig, appName string, sam
412403
SetEnvFrom sets the environment variables to a configmap. The configmap is created.
413404

414405
<a name="Deployment.Yaml"></a>
415-
### func \(\*Deployment\) [Yaml](<https://github.com/metal3d/katenary/blob/develop/generator/deployment.go#L450>)
406+
### func \(\*Deployment\) [Yaml](<https://github.com/metal3d/katenary/blob/develop/generator/deployment.go#L452>)
416407

417408
```go
418409
func (d *Deployment) Yaml() ([]byte, error)
@@ -439,9 +430,9 @@ const (
439430
```
440431

441432
<a name="HelmChart"></a>
442-
## type [HelmChart](<https://github.com/metal3d/katenary/blob/develop/generator/chart.go#L37-L50>)
433+
## type [HelmChart](<https://github.com/metal3d/katenary/blob/develop/generator/chart.go#L38-L51>)
443434

444-
HelmChart is a Helm Chart representation. It contains all the tempaltes, values, versions, helpers...
435+
HelmChart is a Helm Chart representation. It contains all the templates, values, versions, helpers...
445436

446437
```go
447438
type HelmChart struct {
@@ -482,7 +473,7 @@ The Generate function will create the HelmChart object this way:
482473
- Merge the same\-pod services.
483474

484475
<a name="NewChart"></a>
485-
### func [NewChart](<https://github.com/metal3d/katenary/blob/develop/generator/chart.go#L53>)
476+
### func [NewChart](<https://github.com/metal3d/katenary/blob/develop/generator/chart.go#L54>)
486477

487478
```go
488479
func NewChart(name string) *HelmChart
@@ -491,7 +482,7 @@ func NewChart(name string) *HelmChart
491482
NewChart creates a new empty chart with the given name.
492483

493484
<a name="HelmChart.SaveTemplates"></a>
494-
### func \(\*HelmChart\) [SaveTemplates](<https://github.com/metal3d/katenary/blob/develop/generator/chart.go#L68>)
485+
### func \(\*HelmChart\) [SaveTemplates](<https://github.com/metal3d/katenary/blob/develop/generator/chart.go#L69>)
495486

496487
```go
497488
func (chart *HelmChart) SaveTemplates(templateDir string)
@@ -813,7 +804,7 @@ type TLS struct {
813804
<a name="Value"></a>
814805
## type [Value](<https://github.com/metal3d/katenary/blob/develop/generator/values.go#L38-L49>)
815806

816-
Value will be saved in values.yaml. It contains configuraiton for all deployment and services.
807+
Value will be saved in values.yaml. It contains configuration for all deployment and services.
817808

818809
```go
819810
type Value struct {

doc/docs/packages/generator/katenaryfile.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ A katenary file, named "katenary.yml" or "katenary.yaml", is a file where you ca
1212

1313
Formely, the file describe the same structure as in labels, and so that can be validated and completed by LSP. It also ease the use of katenary.
1414

15-
## func [GenerateSchema](<https://github.com/metal3d/katenary/blob/develop/generator/katenaryfile/main.go#L116>)
15+
## func [GenerateSchema](<https://github.com/metal3d/katenary/blob/develop/generator/katenaryfile/main.go#L131>)
1616

1717
```go
1818
func GenerateSchema() string
@@ -21,7 +21,7 @@ func GenerateSchema() string
2121
GenerateSchema generates the schema for the katenary.yaml file.
2222

2323
<a name="OverrideWithConfig"></a>
24-
## func [OverrideWithConfig](<https://github.com/metal3d/katenary/blob/develop/generator/katenaryfile/main.go#L48>)
24+
## func [OverrideWithConfig](<https://github.com/metal3d/katenary/blob/develop/generator/katenaryfile/main.go#L49>)
2525

2626
```go
2727
func OverrideWithConfig(project *types.Project)
@@ -30,7 +30,7 @@ func OverrideWithConfig(project *types.Project)
3030
OverrideWithConfig overrides the project with the katenary.yaml file. It will set the labels of the services with the values from the katenary.yaml file. It work in memory, so it will not modify the original project.
3131

3232
<a name="Service"></a>
33-
## type [Service](<https://github.com/metal3d/katenary/blob/develop/generator/katenaryfile/main.go#L27-L43>)
33+
## type [Service](<https://github.com/metal3d/katenary/blob/develop/generator/katenaryfile/main.go#L27-L44>)
3434

3535
Service is a struct that contains the service configuration for katenary
3636

@@ -51,6 +51,7 @@ type Service struct {
5151
CronJob *labelStructs.CronJob `json:"cron-job,omitempty" jsonschema:"title=Cron Job,description=Cron Job configuration"`
5252
EnvFrom *labelStructs.EnvFrom `json:"env-from,omitempty" jsonschema:"title=Env From,description=Inject environment variables from another service"`
5353
ExchangeVolumes []*labelStructs.ExchangeVolume `json:"exchange-volumes,omitempty" jsonschema:"title=Exchange Volumes,description=Exchange volumes between services"`
54+
ValuesFrom *labelStructs.ValueFrom `json:"values-from,omitempty" jsonschema:"title=Values From,description=Inject values from another service (secret or configmap environment variables)"`
5455
}
5556
```
5657

0 commit comments

Comments
 (0)