Skip to content

Commit f9418fd

Browse files
committed
cmd-push-container-manifest: add container tags pushed to meta.json
For FCOS, we'll eventually want to add the oscontainer image in the stream metadata. We'll want it to be tag-based so that by default, users always use the latest release. Add a `tags` key to the image definition for this. We include all the tags instead of just e.g. the first one, because I think it's good practice to have `meta.json` reference all the external resources that it pushed to. This is important for example for GC.
1 parent c7b5757 commit f9418fd

File tree

6 files changed

+45
-5
lines changed

6 files changed

+45
-5
lines changed

mantle/vendor/github.com/coreos/coreos-assembler/pkg/builds/cosa_v1.go

+4-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

mantle/vendor/github.com/coreos/coreos-assembler/pkg/builds/schema_doc.go

+12-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pkg/builds/cosa_v1.go

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package builds
22

33
// generated by 'make schema'
4-
// source hash: 1e32ab25dfdd0724f8e8246008b9d91b88a40e9ea834cf779ab0da818bf1cf25
4+
// source hash: ce57421ef973f926c59065fd4eb122d5d22fe76681f952376091631178ce5dc1
55

66
type AdvisoryDiff []AdvisoryDiffItems
77

@@ -148,6 +148,7 @@ type Image struct {
148148
Comment string `json:"comment,omitempty"`
149149
Digest string `json:"digest,omitempty"`
150150
Image string `json:"image"`
151+
Tags []Tag `json:"tags,omitempty"`
151152
}
152153

153154
type Koji struct {
@@ -169,3 +170,5 @@ type S3 struct {
169170
Key string `json:"key,omitempty"`
170171
PublicURL string `json:"public-url,omitempty"`
171172
}
173+
174+
type Tag string

pkg/builds/schema_doc.go

+12-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Generated by ./generate-schema.sh
2-
// Source hash: 1e32ab25dfdd0724f8e8246008b9d91b88a40e9ea834cf779ab0da818bf1cf25
2+
// Source hash: ce57421ef973f926c59065fd4eb122d5d22fe76681f952376091631178ce5dc1
33
// DO NOT EDIT
44

55
package builds
@@ -60,6 +60,7 @@ var generatedSchemaJSON = `{
6060
],
6161
"optional": [
6262
"digest",
63+
"tags",
6364
"comment"
6465
],
6566
"properties": {
@@ -77,6 +78,16 @@ var generatedSchemaJSON = `{
7778
"$id": "#/image/image",
7879
"type": "string",
7980
"title": "Image"
81+
},
82+
"tags": {
83+
"$id": "#/image/tags",
84+
"type": "array",
85+
"title": "Tags",
86+
"items": {
87+
"$id": "#/image/tags/item",
88+
"title": "Tag",
89+
"type": "string"
90+
}
8091
}
8192
}
8293
},

src/cmd-push-container-manifest

+2-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,8 @@ def main():
7474
arch = 'x86_64'
7575
buildmetas[arch][args.metajsonname] = {
7676
'image': args.repo,
77-
'digest': manifest['digest']
77+
'digest': manifest['digest'],
78+
'tags': args.tags
7879
}
7980
buildmetas[arch].write(artifact_name=args.metajsonname)
8081

src/v1.json

+11
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@
5454
],
5555
"optional": [
5656
"digest",
57+
"tags",
5758
"comment"
5859
],
5960
"properties": {
@@ -71,6 +72,16 @@
7172
"$id": "#/image/image",
7273
"type": "string",
7374
"title": "Image"
75+
},
76+
"tags": {
77+
"$id": "#/image/tags",
78+
"type": "array",
79+
"title": "Tags",
80+
"items": {
81+
"$id": "#/image/tags/item",
82+
"title": "Tag",
83+
"type": "string"
84+
}
7485
}
7586
}
7687
},

0 commit comments

Comments
 (0)