Skip to content

Commit b31a48d

Browse files
committed
fix doc with missing container type
1 parent 43712af commit b31a48d

File tree

2 files changed

+14
-13
lines changed

2 files changed

+14
-13
lines changed

docs/config.yaml

+3-2
Original file line numberDiff line numberDiff line change
@@ -84,8 +84,9 @@ streams:
8484
# OPTIONAL: add OCI registries to upload images to, specific to this stream.
8585
# This will be merged with the `registry_repos` key.
8686
additional_registry_repos:
87-
- repo: quay.io/someorg/someimage
88-
tags: ["${STREAM}"]
87+
oscontainer:
88+
- repo: quay.io/someorg/someimage
89+
tags: ["${STREAM}"]
8990
rawhide:
9091
type: mechanical
9192
# OPTIONAL: additional architectures to skip building for

jobs/release.Jenkinsfile

+11-11
Original file line numberDiff line numberDiff line change
@@ -270,17 +270,17 @@ lock(resource: "release-${params.STREAM}", extra: locks) {
270270
for (repo in repos) {
271271
def tag_args = repo.tags.collect{"--tag=$it"}
272272
def v2s2_arg = repo.v2s2 ? "--v2s2" : ""
273-
println "Would push to ${repo.repo} with tags ${tag_args.join(' ')"
274-
# shwrap("""
275-
# export COSA_SUPERMIN_MEMORY=1024 # this really shouldn't require much RAM
276-
# cp \${REGISTRY_SECRET} tmp/push-secret-${metajsonname}
277-
# cosa supermin-run /usr/lib/coreos-assembler/cmd-push-container-manifest \
278-
# --auth=tmp/push-secret-${metajsonname} \
279-
# --repo=${repo.repo} ${tag_args.join(' ')} \
280-
# --artifact=${artifact} --metajsonname=${metajsonname} \
281-
# --build=${params.VERSION} ${v2s2_arg}
282-
# rm tmp/push-secret-${metajsonname}
283-
# """)
273+
println "Would push to ${repo.repo} with tags ${tag_args.join(' ')}"
274+
// shwrap("""
275+
// export COSA_SUPERMIN_MEMORY=1024 # this really shouldn't require much RAM
276+
// cp \${REGISTRY_SECRET} tmp/push-secret-${metajsonname}
277+
// cosa supermin-run /usr/lib/coreos-assembler/cmd-push-container-manifest \
278+
// --auth=tmp/push-secret-${metajsonname} \
279+
// --repo=${repo.repo} ${tag_args.join(' ')} \
280+
// --artifact=${artifact} --metajsonname=${metajsonname} \
281+
// --build=${params.VERSION} ${v2s2_arg}
282+
// rm tmp/push-secret-${metajsonname}
283+
// """)
284284
}
285285
}
286286
}]}

0 commit comments

Comments
 (0)