Skip to content
This repository was archived by the owner on Jul 18, 2025. It is now read-only.

Commit 562db9d

Browse files
author
Matthieu Nottale
committed
Remove tag and labels from metadata.
Signed-off-by: Matthieu Nottale <[email protected]>
1 parent cb34cd4 commit 562db9d

File tree

7 files changed

+0
-16
lines changed

7 files changed

+0
-16
lines changed

e2e/render/envvariables.docker-app/metadata.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
version: 0.1.0
22
name: myapp
33
description: ""
4-
tag: ""
5-
labels:
6-
- alpha
74
author: bearclaw
85
targets:
96
swarm: true

e2e/render/templates.docker-app/metadata.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
version: 0.1.0
22
name: myapp
33
description: ""
4-
tag: ""
5-
labels:
6-
- alpha
74
author: bearclaw
85
targets:
96
swarm: true

examples/simple/README.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -139,9 +139,6 @@ services:
139139
version: 0.1.0
140140
name: simple
141141
description: ""
142-
tag: ""
143-
labels:
144-
- alpha
145142
author: sakuya.izayoi
146143
targets:
147144
swarm: true

examples/simple/simple.docker-app/metadata.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@ version: 0.1.0
22
application:
33
name: simple
44
description: ""
5-
tag: ""
6-
labels:
7-
- alpha
85
author: sakuya.izayoi
96
targets:
107
swarm: true

packager/init.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,6 @@ func newMetadata(name string) types.AppMetadata {
212212
Version: "0.1.0",
213213
Targets: target,
214214
Name: name,
215-
Labels: []string{"alpha"},
216215
Author: userName,
217216
}
218217
}

renderer/helm.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ func toHelmMeta(meta *types.AppMetadata) (*helmMeta, error) {
3131
Name: meta.Name,
3232
Version: meta.Version,
3333
Description: meta.Description,
34-
Keywords: meta.Labels,
3534
Maintainers: []helmMaintainer{{Name: meta.Author}},
3635
}, nil
3736
}

types/metadata.go

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@ type AppMetadata struct {
55
Version string
66
Name string
77
Description string
8-
Tag string
9-
Labels []string
108
Author string
119
Targets ApplicationTarget
1210
}

0 commit comments

Comments
 (0)