From ce218288db1865f3b961605e38b7d56ad959d27f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lubom=C3=ADr=20Sedl=C3=A1=C5=99?= Date: Thu, 5 Jan 2017 09:32:22 +0100 Subject: [PATCH] osbs: Add better example to documentation MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Lubomír Sedlář --- doc/configuration.rst | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/doc/configuration.rst b/doc/configuration.rst index e266c1a0..0a1cc54a 100644 --- a/doc/configuration.rst +++ b/doc/configuration.rst @@ -1255,10 +1255,17 @@ Example config osbs = { "^Server$": { + # required "url": "git://example.com/dockerfiles.git?#HEAD", - "name": "fedora-docker-base", "target": "f24-docker-candidate", + + # optional + "name": "fedora-docker-base", "version": "24", + "repo": ["https://example.com/extra-repo.repo"], + "repo_from": ["Everything"], + # This will result in three repo urls being passed to the task. + # They will be in this order: Server, Everything, example.com/ } }