diff options
author | Jonathan Lebon <jlebon@redhat.com> | 2017-06-13 11:51:23 -0400 |
---|---|---|
committer | Jonathan Lebon <jlebon@redhat.com> | 2017-06-14 13:28:37 -0400 |
commit | b122e6a655a3a9807ea38741bfc6be6cc5f28436 (patch) | |
tree | f692537c988562882be106916cbab3a534bc5b49 /.papr.yml | |
parent | d840f53aaaf4243c412ed1652ea74bccedcaa54b (diff) | |
download | openshift-b122e6a655a3a9807ea38741bfc6be6cc5f28436.tar.gz openshift-b122e6a655a3a9807ea38741bfc6be6cc5f28436.tar.bz2 openshift-b122e6a655a3a9807ea38741bfc6be6cc5f28436.tar.xz openshift-b122e6a655a3a9807ea38741bfc6be6cc5f28436.zip |
papr: add documentation to YAML and simplify context
Don't duplicate the actual image tag used in the context. Just print it
in the logs instead. That way there's no risk of it being outdated when
we bump the tag in the YAML.
Diffstat (limited to '.papr.yml')
-rw-r--r-- | .papr.yml | 13 |
1 files changed, 12 insertions, 1 deletions
@@ -1,5 +1,16 @@ --- +# This YAML file is used by PAPR. It details the test +# environment to provision and the test procedure. For more +# information on PAPR, see: +# +# https://github.com/projectatomic/papr +# +# The PAPR YAML specification detailing allowed fields can +# be found at: +# +# https://github.com/projectatomic/papr/blob/master/sample.papr.yml + cluster: hosts: - name: ocp-master @@ -19,7 +30,7 @@ packages: - openssl-devel - redhat-rpm-config -context: 'fedora/25/atomic | origin/v3.6.0-alpha.1' +context: 'fedora/25/atomic' env: OPENSHIFT_IMAGE_TAG: v3.6.0-alpha.1 |