diff options
author | Scott Dodson <sdodson@redhat.com> | 2017-04-18 11:35:18 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-18 11:35:18 -0400 |
commit | 15fbe3f9ec9ded41d34e66f96feb0d0c8f8fdfc8 (patch) | |
tree | 46ce6cadeb4ae707ee9132686f52f87d6e2fab4c /.redhat-ci.yml | |
parent | 233cb72777a5bdea68e5a7703bad53bb012c0bd0 (diff) | |
parent | dec2cc081854c2395c7651ab353b355426739877 (diff) | |
download | openshift-15fbe3f9ec9ded41d34e66f96feb0d0c8f8fdfc8.tar.gz openshift-15fbe3f9ec9ded41d34e66f96feb0d0c8f8fdfc8.tar.bz2 openshift-15fbe3f9ec9ded41d34e66f96feb0d0c8f8fdfc8.tar.xz openshift-15fbe3f9ec9ded41d34e66f96feb0d0c8f8fdfc8.zip |
Merge pull request #3890 from jlebon/redhat-ci
repo: start testing PRs on Fedora Atomic Host
Diffstat (limited to '.redhat-ci.yml')
-rw-r--r-- | .redhat-ci.yml | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/.redhat-ci.yml b/.redhat-ci.yml new file mode 100644 index 000000000..d9849ed60 --- /dev/null +++ b/.redhat-ci.yml @@ -0,0 +1,45 @@ +--- + +cluster: + hosts: + - name: ocp-master + distro: fedora/25/atomic + - name: ocp-node1 + distro: fedora/25/atomic + - name: ocp-node2 + distro: fedora/25/atomic + container: + image: fedora:25 + +packages: + - gcc + - python-pip + - python-devel + - openssl-devel + - redhat-rpm-config + +context: 'fedora/25/atomic | origin/v1.5.0-rc.0' + +env: + OPENSHIFT_IMAGE_TAG: v1.5.0-rc.0 + +tests: + - pip install ansible==2.2.2.0 # F25 currently has 2.2.1, so install from pypi + - ansible -vvv -i .redhat-ci.inventory nodes -a 'rpm-ostree status' + - ansible-playbook -vvv -i .redhat-ci.inventory playbooks/byo/config.yml + # run a small subset of origin conformance tests to sanity check the cluster + # NB: we run it on the master since we may be in a different OSP network + - ssh ocp-master docker run --rm --net=host --privileged + -v /etc/origin/master/admin.kubeconfig:/config fedora:25 sh -c + '"dnf install -y origin-tests && + KUBECONFIG=/config /usr/libexec/origin/extended.test --ginkgo.v=1 + --ginkgo.noColor --ginkgo.focus=\"Services.*NodePort|EmptyDir\""' + +--- + +inherit: true + +context: 'fedora/25/atomic | origin/v3.6.0-alpha.0' + +env: + OPENSHIFT_IMAGE_TAG: v3.6.0-alpha.0 |