Fix microbadger settings and enable auto_tag for manifest

This commit is contained in:
Thomas Boerger 2019-03-28 09:31:56 +01:00 committed by Anton Zadvorny
parent 679c55c5ba
commit cb2e9131ed
3 changed files with 6 additions and 3 deletions

View File

@ -246,6 +246,7 @@ steps:
pull: always pull: always
image: plugins/manifest image: plugins/manifest
settings: settings:
auto_tag: true
ignore_missing: true ignore_missing: true
password: password:
from_secret: docker_password from_secret: docker_password
@ -257,7 +258,7 @@ steps:
pull: always pull: always
image: plugins/webhook image: plugins/webhook
settings: settings:
url: urls:
from_secret: microbadger_url from_secret: microbadger_url
trigger: trigger:

View File

@ -304,6 +304,7 @@ steps:
pull: always pull: always
image: plugins/manifest image: plugins/manifest
settings: settings:
auto_tag: true
ignore_missing: true ignore_missing: true
password: password:
from_secret: docker_password from_secret: docker_password
@ -315,7 +316,7 @@ steps:
pull: always pull: always
image: plugins/webhook image: plugins/webhook
settings: settings:
url: urls:
from_secret: microbadger_url from_secret: microbadger_url
trigger: trigger:

View File

@ -182,6 +182,7 @@ local golang_image(os, version) =
password: { from_secret: 'docker_password' }, password: { from_secret: 'docker_password' },
spec: 'docker/manifest.tmpl', spec: 'docker/manifest.tmpl',
ignore_missing: true, ignore_missing: true,
auto_tag: true,
}, },
}, },
{ {
@ -189,7 +190,7 @@ local golang_image(os, version) =
image: 'plugins/webhook', image: 'plugins/webhook',
pull: 'always', pull: 'always',
settings: { settings: {
url: { from_secret: 'microbadger_url' }, urls: { from_secret: 'microbadger_url' },
}, },
}, },
], ],