]> git.apps.os.sepia.ceph.com Git - ceph-build.git/log
ceph-build.git
8 years agoceph-docker-lint: test code SC2015
Sébastien Han [Mon, 15 May 2017 15:08:43 +0000 (17:08 +0200)]
ceph-docker-lint: test code SC2015

Work around in https://github.com/ceph/ceph-docker/pull/622
Using if and unset -e and reset it.

Fixes: https://bugzilla.redhat.com/show_bug.cgi?id=1450480
Signed-off-by: Sébastien Han <seb@redhat.com>
8 years agoceph-docker-lint: remove -x arg
Sébastien Han [Mon, 15 May 2017 13:15:20 +0000 (15:15 +0200)]
ceph-docker-lint: remove -x arg

The current version from EPEL does not have the -x argument.

Signed-off-by: Sébastien Han <seb@redhat.com>
8 years agoceph-docker-lint: remove .build.swp file
Sébastien Han [Mon, 15 May 2017 12:53:17 +0000 (14:53 +0200)]
ceph-docker-lint: remove .build.swp file

Signed-off-by: Sébastien Han <seb@redhat.com>
8 years agoMerge pull request #716 from ceph/wip-cannon-url
Alfredo Deza [Wed, 17 May 2017 14:26:08 +0000 (10:26 -0400)]
Merge pull request #716 from ceph/wip-cannon-url

really fix the expected url to be canonicalized

8 years agoreally fix the expected url to be canonicalized 716/head
Gregory Meno [Mon, 15 May 2017 18:14:34 +0000 (11:14 -0700)]
really fix the expected url to be canonicalized

Signed-off-by: Gregory Meno <gmeno@redhat.com>
8 years agoMerge pull request #717 from ceph/docker-scenarios
Alfredo Deza [Mon, 15 May 2017 23:00:27 +0000 (19:00 -0400)]
Merge pull request #717 from ceph/docker-scenarios

ceph-docker: update scenario names

8 years agoceph-docker: update scenario names 717/head
Andrew Schoen [Mon, 15 May 2017 20:36:07 +0000 (15:36 -0500)]
ceph-docker: update scenario names

Signed-off-by: Andrew Schoen <aschoen@redhat.com>
8 years agoMerge pull request #715 from ceph/wip-fix-jenkins-invocation
Alfredo Deza [Mon, 15 May 2017 17:58:14 +0000 (13:58 -0400)]
Merge pull request #715 from ceph/wip-fix-jenkins-invocation

fix the expected value of HUDSON_URL

8 years agofix the expected value of HUDSON_URL 715/head
Gregory Meno [Mon, 15 May 2017 17:28:39 +0000 (10:28 -0700)]
fix the expected value of HUDSON_URL

and exit when deps aren't installed when running locally

Signed-off-by: Gregory Meno <gmeno@redhat.com>
8 years agoMerge pull request #713 from ceph/shellcheck-exclude
Alfredo Deza [Fri, 12 May 2017 17:38:27 +0000 (13:38 -0400)]
Merge pull request #713 from ceph/shellcheck-exclude

ceph-docker-lint: exclude codes

8 years agoceph-docker-lint: do not check variables_entrypoint.sh 713/head
Sébastien Han [Fri, 12 May 2017 08:54:17 +0000 (10:54 +0200)]
ceph-docker-lint: do not check variables_entrypoint.sh

Shellcheck will complain with SC2034: foo appears unused. Verify it or
export it.
The problem here is that this file contains a reference of all the
variables so indeed they appear unused.
We could potentially source some portion of the code from that file,
however I don't want to change the structure of the code because of
shellchecker. Also sourcing all the variables might results in expected
scenario if these variables are not expected to be declared.

There is no way to tell shellcheck to ignore this file so we should not
test it.

Signed-off-by: Sébastien Han <seb@redhat.com>
8 years agoceph-docker-lint: exclude codes
Sébastien Han [Fri, 12 May 2017 08:08:42 +0000 (10:08 +0200)]
ceph-docker-lint: exclude codes

Excluding the following code:

* SC1091: since our entrypoint copies files in / during this shellcheck
the files can not be found. Basically we source ./file but presently the
file is under osd_directory/file so can not be found.
* SC2015: because we use 'set -e' we don't have other choice to use '||
true' here.
* SC2009: pgrep returns processes ID where we are looking for a specific
string in the process line.
* SC2001: our sed expressions are too complex we can not substitute them
with bash ${variable//search/replace}.

Signed-off-by: Sébastien Han <seb@redhat.com>
8 years agoMerge pull request #712 from ceph/docker-ceph-ansible-version
Alfredo Deza [Thu, 11 May 2017 16:34:41 +0000 (12:34 -0400)]
Merge pull request #712 from ceph/docker-ceph-ansible-version

ceph-docker-nightly: test on stable-2.2 of ceph-ansible

8 years agoceph-docker-nightly: test on stable-2.2 of ceph-ansible 712/head
Andrew Schoen [Thu, 11 May 2017 16:30:54 +0000 (11:30 -0500)]
ceph-docker-nightly: test on stable-2.2 of ceph-ansible

We don't need to test on stable-2.1 of ceph-ansible anymore

Signed-off-by: Andrew Schoen <aschoen@redhat.com>
8 years agoMerge pull request #711 from ceph/shellchecker-source
Alfredo Deza [Thu, 11 May 2017 11:49:16 +0000 (07:49 -0400)]
Merge pull request #711 from ceph/shellchecker-source

ceph-docker-lint: Shellchecker source

8 years agoceph-docker-lint: remove reverse grep for NOT_MAINTAINED_ANYMORE 711/head
Sébastien Han [Thu, 11 May 2017 05:21:12 +0000 (07:21 +0200)]
ceph-docker-lint: remove reverse grep for NOT_MAINTAINED_ANYMORE

As per PR: https://github.com/ceph/ceph-docker/pull/632 the directory
NOT_MAINTAINED_ANYMORE does not exist anymore.

Signed-off-by: Sébastien Han <seb@redhat.com>
8 years agoceph-docker-lint: shellcheck: allow 'source' outside of FILES.
Sébastien Han [Thu, 11 May 2017 05:17:25 +0000 (07:17 +0200)]
ceph-docker-lint: shellcheck: allow 'source' outside of FILES.

ceph-docker sources a lot of files so to prevent warning from shellcheck
we add the option '-x' to source.
Follow 'source' statements even when the file is not specified as input.
By default, shellcheck will only follow files specified on the command
line (plus /dev/null).  This option allows following any file the
script may source.

Signed-off-by: Sébastien Han <seb@redhat.com>
8 years agoMerge pull request #710 from ceph/wip-filter
Gregory Meno [Wed, 10 May 2017 21:10:17 +0000 (14:10 -0700)]
Merge pull request #710 from ceph/wip-filter

filter files in PR to be only files ending in .sh$

8 years agofilter files in PR to be only files ending in .sh$ 710/head
Gregory Meno [Wed, 10 May 2017 21:03:53 +0000 (14:03 -0700)]
filter files in PR to be only files ending in .sh$

Signed-off-by: Gregory Meno <gmeno@redhat.com>
8 years agoMerge pull request #709 from ceph/wip-docker-lint-config
Gregory Meno [Tue, 9 May 2017 22:39:58 +0000 (15:39 -0700)]
Merge pull request #709 from ceph/wip-docker-lint-config

check lint on all PRs automatically

8 years agoMerge branch 'master' into wip-docker-lint-config 709/head
Gregory Meno [Tue, 9 May 2017 22:37:41 +0000 (15:37 -0700)]
Merge branch 'master' into wip-docker-lint-config

8 years agocheck lint on all PRs automatically
Gregory Meno [Tue, 9 May 2017 22:37:03 +0000 (15:37 -0700)]
check lint on all PRs automatically

Signed-off-by: Gregory Meno <gmeno@redhat.com>
8 years agoMerge pull request #708 from ceph/wip-docker-lint-config
Gregory Meno [Tue, 9 May 2017 22:35:00 +0000 (15:35 -0700)]
Merge pull request #708 from ceph/wip-docker-lint-config

remove trigger whitelist

8 years agoremove trigger whitelist 708/head
Gregory Meno [Tue, 9 May 2017 22:33:10 +0000 (15:33 -0700)]
remove trigger whitelist

Signed-off-by: Gregory Meno <gmeno@redhat.com>
8 years agoMerge pull request #707 from ceph/wip-docker-lint
Gregory Meno [Tue, 9 May 2017 22:24:58 +0000 (15:24 -0700)]
Merge pull request #707 from ceph/wip-docker-lint

fix exit of build script

8 years agoMerge branch 'master' into wip-docker-lint 707/head
Gregory Meno [Tue, 9 May 2017 22:22:31 +0000 (15:22 -0700)]
Merge branch 'master' into wip-docker-lint

8 years agofix exit of build script
Gregory Meno [Tue, 9 May 2017 22:21:30 +0000 (15:21 -0700)]
fix exit of build script

Signed-off-by: Gregory Meno <gmeno@redhat.com>
8 years agoMerge pull request #706 from ceph/wip-docker-lint
Gregory Meno [Sat, 6 May 2017 02:00:03 +0000 (19:00 -0700)]
Merge pull request #706 from ceph/wip-docker-lint

limit shellcheck to files changed by the PR

8 years agolimit shellcheck to files changed by the PR 706/head
Gregory Meno [Sat, 6 May 2017 01:56:20 +0000 (18:56 -0700)]
limit shellcheck to files changed by the PR

also add some provisions for running locally

Signed-off-by: Gregory Meno <gmeno@redhat.com>
8 years agoMerge pull request #704 from ceph/wip-docker-lint2
Gregory Meno [Thu, 4 May 2017 22:53:56 +0000 (15:53 -0700)]
Merge pull request #704 from ceph/wip-docker-lint2

correct lint executable; filter paths; set +e so we can lint all files

8 years agocorrect lint executable; filter paths; set +e so we can lint all files 704/head
Gregory Meno [Thu, 4 May 2017 22:43:24 +0000 (22:43 +0000)]
correct lint executable; filter paths; set +e so we can lint all files

Signed-off-by: Gregory Meno <gmeno@redhat.com>
8 years agoMerge pull request #703 from ceph/wip-docker-lint
Gregory Meno [Thu, 4 May 2017 22:13:46 +0000 (15:13 -0700)]
Merge pull request #703 from ceph/wip-docker-lint

install EPEL and correct package name

8 years agoMerge branch 'master' into wip-docker-lint 703/head
Gregory Meno [Thu, 4 May 2017 22:08:32 +0000 (15:08 -0700)]
Merge branch 'master' into wip-docker-lint

8 years agoinstall EPEL and correct package name
Gregory Meno [Thu, 4 May 2017 22:06:38 +0000 (15:06 -0700)]
install EPEL and correct package name

Signed-off-by: Gregory Meno <gmeno@redhat.com>
8 years agoMerge pull request #702 from ceph/wip-docker-lint
Andrew Schoen [Thu, 4 May 2017 21:47:49 +0000 (16:47 -0500)]
Merge pull request #702 from ceph/wip-docker-lint

adds a linting of all shell files the project

8 years agoadds a linting of all shell files in the project 702/head
Gregory Meno [Thu, 4 May 2017 21:24:54 +0000 (14:24 -0700)]
adds a linting of all shell files in the project

Signed-off-by: Gregory Meno <gmeno@redhat.com>
8 years agoMerge pull request #701 from ceph/log-retention
Alfredo Deza [Thu, 4 May 2017 20:21:20 +0000 (16:21 -0400)]
Merge pull request #701 from ceph/log-retention

Keep logs around longer for ceph-ansible/docker jobs

8 years agoceph-docker-prs: keep all logs in a 15 day period 701/head
Andrew Schoen [Thu, 4 May 2017 19:54:56 +0000 (14:54 -0500)]
ceph-docker-prs: keep all logs in a 15 day period

Signed-off-by: Andrew Schoen <aschoen@redhat.com>
8 years agoceph-ansible-prs: keep all logs in a 15 day period
Andrew Schoen [Thu, 4 May 2017 19:54:23 +0000 (14:54 -0500)]
ceph-ansible-prs: keep all logs in a 15 day period

Signed-off-by: Andrew Schoen <aschoen@redhat.com>
8 years agoceph-docker-nightly: keep all logs forever
Andrew Schoen [Thu, 4 May 2017 19:53:53 +0000 (14:53 -0500)]
ceph-docker-nightly: keep all logs forever

Signed-off-by: Andrew Schoen <aschoen@redhat.com>
8 years agoMerge pull request #695 from ceph/libvirt-fixes
Alfredo Deza [Tue, 2 May 2017 19:00:07 +0000 (15:00 -0400)]
Merge pull request #695 from ceph/libvirt-fixes

attempt to make libvirt slaves more stable

8 years agouse libvirt util methods in all jobs that use libvirt 695/head
Andrew Schoen [Tue, 2 May 2017 12:49:23 +0000 (07:49 -0500)]
use libvirt util methods in all jobs that use libvirt

Signed-off-by: Andrew Schoen <aschoen@redhat.com>
8 years agoscripts: add libvirt util functions to build_utils.sh
Andrew Schoen [Tue, 2 May 2017 12:45:28 +0000 (07:45 -0500)]
scripts: add libvirt util functions to build_utils.sh

Signed-off-by: Andrew Schoen <aschoen@redhat.com>
8 years agoceph-installer-tests: restart libvirt services before running tests
Andrew Schoen [Fri, 28 Apr 2017 18:09:21 +0000 (13:09 -0500)]
ceph-installer-tests: restart libvirt services before running tests

Signed-off-by: Andrew Schoen <aschoen@redhat.com>
8 years agoceph-docker-prs: restart libvirt services before running tests
Andrew Schoen [Fri, 28 Apr 2017 18:08:47 +0000 (13:08 -0500)]
ceph-docker-prs: restart libvirt services before running tests

Signed-off-by: Andrew Schoen <aschoen@redhat.com>
8 years agoceph-docker-nightly: restart libvirt services before running tests
Andrew Schoen [Fri, 28 Apr 2017 18:08:28 +0000 (13:08 -0500)]
ceph-docker-nightly: restart libvirt services before running tests

Signed-off-by: Andrew Schoen <aschoen@redhat.com>
8 years agoceph-ansible-prs: restart libvirt services before running tests
Andrew Schoen [Fri, 28 Apr 2017 18:08:07 +0000 (13:08 -0500)]
ceph-ansible-prs: restart libvirt services before running tests

Signed-off-by: Andrew Schoen <aschoen@redhat.com>
8 years agoceph-installer-tests: remove old libvirt networks before running tests
Andrew Schoen [Fri, 28 Apr 2017 18:04:35 +0000 (13:04 -0500)]
ceph-installer-tests: remove old libvirt networks before running tests

Signed-off-by: Andrew Schoen <aschoen@redhat.com>
8 years agoceph-docker-prs: remove old libvirt networks before running tests
Andrew Schoen [Fri, 28 Apr 2017 18:04:00 +0000 (13:04 -0500)]
ceph-docker-prs: remove old libvirt networks before running tests

Signed-off-by: Andrew Schoen <aschoen@redhat.com>
8 years agoceph-docker-nightly: remove old libvirt networks before running tests
Andrew Schoen [Fri, 28 Apr 2017 18:03:27 +0000 (13:03 -0500)]
ceph-docker-nightly: remove old libvirt networks before running tests

Signed-off-by: Andrew Schoen <aschoen@redhat.com>
8 years agoMerge pull request #700 from ceph/wip-nfs-ganesha-version
Alfredo Deza [Tue, 2 May 2017 18:56:11 +0000 (14:56 -0400)]
Merge pull request #700 from ceph/wip-nfs-ganesha-version

nfs-ganesha: fix rpm version finder to work on dev and release candid…

8 years agonfs-ganesha: set VERSION correctly in rpm builds 700/head
Ali Maredia [Tue, 2 May 2017 15:53:14 +0000 (11:53 -0400)]
nfs-ganesha: set VERSION correctly in rpm builds

$VERSION now set properly for "dev-X" & "rcX"
versions in rpm builds of nfs-ganesha.

Signed-off-by: Ali Maredia <amaredia@redhat.com>
8 years agoMerge pull request #699 from ceph/ceph-ansible-scenario-fix
Alfredo Deza [Mon, 1 May 2017 20:49:02 +0000 (16:49 -0400)]
Merge pull request #699 from ceph/ceph-ansible-scenario-fix

ceph-ansible-scenario: enable concurrent builds

8 years agoceph-ansible-scenario: enable concurrent builds 699/head
Andrew Schoen [Mon, 1 May 2017 20:40:53 +0000 (15:40 -0500)]
ceph-ansible-scenario: enable concurrent builds

Signed-off-by: Andrew Schoen <aschoen@redhat.com>
8 years agoMerge pull request #698 from ceph/ceph-ansible-scenario-fix
Alfredo Deza [Mon, 1 May 2017 14:39:40 +0000 (10:39 -0400)]
Merge pull request #698 from ceph/ceph-ansible-scenario-fix

ceph-ansible-scenario: use include-raw instead of include-raw-escape

8 years agoceph-ansible-scenario: use include-raw instead of include-raw-escape 698/head
Andrew Schoen [Mon, 1 May 2017 14:27:07 +0000 (09:27 -0500)]
ceph-ansible-scenario: use include-raw instead of include-raw-escape

This job is not using a job-template and fails with the following error
when using include-raw-escape:

  syntax error near unexpected token `{{'

Signed-off-by: Andrew Schoen <aschoen@redhat.com>
8 years agoMerge pull request #697 from ceph/ceph-ansible-scenario
Andrew Schoen [Fri, 28 Apr 2017 20:14:48 +0000 (15:14 -0500)]
Merge pull request #697 from ceph/ceph-ansible-scenario

ceph-ansible-scenario: create an individual scenario job

8 years agoceph-ansible-scenario: create an individual scenario job 697/head
Alfredo Deza [Fri, 28 Apr 2017 20:02:23 +0000 (16:02 -0400)]
ceph-ansible-scenario: create an individual scenario job

Signed-off-by: Alfredo Deza <adeza@redhat.com>
8 years agoMerge pull request #696 from ceph/disable-ceph-prs-arm
Andrew Schoen [Fri, 28 Apr 2017 19:54:46 +0000 (14:54 -0500)]
Merge pull request #696 from ceph/disable-ceph-prs-arm

ceph-prs-arm: disable for now, needs to get worked on

8 years agoceph-prs-arm: disable for now, needs to get worked on 696/head
Alfredo Deza [Fri, 28 Apr 2017 18:40:20 +0000 (14:40 -0400)]
ceph-prs-arm: disable for now, needs to get worked on

Signed-off-by: Alfredo Deza <adeza@redhat.com>
8 years agoMerge pull request #693 from ceph/patched-jenkins
Andrew Schoen [Fri, 28 Apr 2017 14:44:15 +0000 (09:44 -0500)]
Merge pull request #693 from ceph/patched-jenkins

ansible: using forked version of python-jenkins until we can fix upstream

8 years agoansible: update examples with patched python-jenkins 693/head
Alfredo Deza [Fri, 28 Apr 2017 14:37:25 +0000 (10:37 -0400)]
ansible: update examples with patched python-jenkins

Signed-off-by: Alfredo Deza <adeza@redhat.com>
8 years agoansible: using forked version of python-jenkins until we can fix upstream
Alfredo Deza [Thu, 27 Apr 2017 01:17:26 +0000 (21:17 -0400)]
ansible: using forked version of python-jenkins until we can fix upstream

Signed-off-by: Alfredo Deza <adeza@redhat.com>
8 years agoMerge pull request #694 from ceph/rpm-install-mock
Alfredo Deza [Thu, 27 Apr 2017 15:08:00 +0000 (11:08 -0400)]
Merge pull request #694 from ceph/rpm-install-mock

ceph-ansible/-installer: explicitly install mock

8 years agoceph-ansible/-installer: explicitly install mock 694/head
Ken Dreyer [Thu, 27 Apr 2017 15:02:51 +0000 (09:02 -0600)]
ceph-ansible/-installer: explicitly install mock

It appears that Yum is not installing "mock" when installing fedpkg
(with fedpkg-1.28-1.el7). Explicitly install it in our build steps.

8 years agoMerge pull request #692 from ceph/slave-java-version
Alfredo Deza [Thu, 27 Apr 2017 01:20:51 +0000 (21:20 -0400)]
Merge pull request #692 from ceph/slave-java-version

ansible: we now need java-1.8.0-openjdk on rpm nodes

8 years agoansible: we now need java-1.8.0-openjdk on rpm nodes 692/head
Andrew Schoen [Thu, 27 Apr 2017 01:06:37 +0000 (20:06 -0500)]
ansible: we now need java-1.8.0-openjdk on rpm nodes

After the latest jenkins upgrade to 2.57 our centos slaves failed to
connect to jenkins, upgrading to a 1.8.0 version of java fixed the
issue.

Signed-off-by: Andrew Schoen <aschoen@redhat.com>
8 years agoMerge pull request #691 from ceph/ganesha-json-fix
Andrew Schoen [Tue, 25 Apr 2017 19:21:21 +0000 (14:21 -0500)]
Merge pull request #691 from ceph/ganesha-json-fix

nfs-ganesha: add missing comma in JSON blob

8 years agonfs-ganesha: add missing comma in JSON blob 691/head
Alfredo Deza [Tue, 25 Apr 2017 19:02:16 +0000 (15:02 -0400)]
nfs-ganesha: add missing comma in JSON blob

Signed-off-by: Alfredo Deza <adeza@redhat.com>
8 years agoMerge pull request #689 from ceph/ceph-prs-arm
Andrew Schoen [Tue, 25 Apr 2017 18:26:39 +0000 (13:26 -0500)]
Merge pull request #689 from ceph/ceph-prs-arm

ceph-prs-arm: create a job to build arm on PRs

8 years agoceph-prs-arm: create a job to build arm on PRs 689/head
Alfredo Deza [Mon, 24 Apr 2017 18:04:46 +0000 (14:04 -0400)]
ceph-prs-arm: create a job to build arm on PRs

Signed-off-by: Alfredo Deza <adeza@redhat.com>
8 years agoMerge pull request #690 from ceph/libvirt-hammer
Alfredo Deza [Tue, 25 Apr 2017 18:19:23 +0000 (14:19 -0400)]
Merge pull request #690 from ceph/libvirt-hammer

ceph-ansible-prs: remove old libvirt networks before running tests

8 years agoceph-ansible-prs: remove old libvirt networks before running tests 690/head
Andrew Schoen [Tue, 25 Apr 2017 18:04:24 +0000 (13:04 -0500)]
ceph-ansible-prs: remove old libvirt networks before running tests

Occasionally we deal with libvirt network issues on jenkins slaves that
have been used for a couple test runs, this attempts to avoid those.

Signed-off-by: Andrew Schoen <aschoen@redhat.com>
8 years agoMerge pull request #688 from ceph/wip-bz-mill
Gregory Meno [Sat, 22 Apr 2017 05:40:01 +0000 (22:40 -0700)]
Merge pull request #688 from ceph/wip-bz-mill

re-organize the script

8 years agore-organize the script 688/head
Gregory Meno [Sat, 22 Apr 2017 05:38:03 +0000 (22:38 -0700)]
re-organize the script

Signed-off-by: Gregory Meno <gmeno@redhat.com>
8 years agoMerge pull request #687 from ceph/wip-bz-mill
Gregory Meno [Sat, 22 Apr 2017 00:26:04 +0000 (17:26 -0700)]
Merge pull request #687 from ceph/wip-bz-mill

add config to run the template generator

8 years agoadd config to run the template generator 687/head
Gregory Meno [Sat, 22 Apr 2017 00:05:32 +0000 (17:05 -0700)]
add config to run the template generator

Signed-off-by: Gregory Meno <gmeno@redhat.com>
8 years agoMerge pull request #686 from ceph/wip-bz-mill
Gregory Meno [Sat, 22 Apr 2017 00:00:14 +0000 (17:00 -0700)]
Merge pull request #686 from ceph/wip-bz-mill

see what is in the enviroment

8 years agouse b-ranto's template trickto get the metrics map 686/head
Gregory Meno [Fri, 21 Apr 2017 23:59:01 +0000 (16:59 -0700)]
use b-ranto's template trickto get the metrics map

Signed-off-by: Gregory Meno <gmeno@redhat.com>
8 years agosee what is in the enviroment
Gregory Meno [Fri, 21 Apr 2017 23:45:00 +0000 (16:45 -0700)]
see what is in the enviroment

Signed-off-by: Gregory Meno <gmeno@redhat.com>
8 years agoMerge pull request #685 from ceph/wip-bz-mill
Gregory Meno [Fri, 21 Apr 2017 23:40:25 +0000 (16:40 -0700)]
Merge pull request #685 from ceph/wip-bz-mill

del the project -- don't need it

8 years agoMerge branch 'master' into wip-bz-mill 685/head
Gregory Meno [Fri, 21 Apr 2017 23:39:39 +0000 (16:39 -0700)]
Merge branch 'master' into wip-bz-mill

8 years agodel the project -- don't need it
Gregory Meno [Fri, 21 Apr 2017 23:21:36 +0000 (16:21 -0700)]
del the project -- don't need it

Signed-off-by: Gregory Meno <gmeno@redhat.com>
8 years agoMerge pull request #684 from ceph/luminous-trigger
Alfredo Deza [Fri, 21 Apr 2017 20:23:54 +0000 (13:23 -0700)]
Merge pull request #684 from ceph/luminous-trigger

ceph-dev-trigger: also build luminous

8 years agoceph-dev-trigger: also build luminous 684/head
Andrew Schoen [Fri, 21 Apr 2017 19:51:29 +0000 (12:51 -0700)]
ceph-dev-trigger: also build luminous

Signed-off-by: Andrew Schoen <aschoen@redhat.com>
8 years agoMerge pull request #683 from ceph/wip-bz-mill
Gregory Meno [Thu, 20 Apr 2017 00:28:15 +0000 (17:28 -0700)]
Merge pull request #683 from ceph/wip-bz-mill

adds a builder def.

8 years agoadds a builder def. 683/head
Gregory Meno [Thu, 20 Apr 2017 00:24:37 +0000 (17:24 -0700)]
adds a builder def.

Signed-off-by: Gregory Meno <gmeno@redhat.com>
8 years agoMerge pull request #682 from ceph/wip-bz-mill
Gregory Meno [Thu, 20 Apr 2017 00:16:14 +0000 (17:16 -0700)]
Merge pull request #682 from ceph/wip-bz-mill

adds a job definition

8 years agoadds a job definition 682/head
Gregory Meno [Thu, 20 Apr 2017 00:11:44 +0000 (17:11 -0700)]
adds a job definition

Signed-off-by: Gregory Meno <gmeno@redhat.com>
8 years agoMerge pull request #681 from ceph/wip-bz-mill
Gregory Meno [Thu, 20 Apr 2017 00:02:59 +0000 (17:02 -0700)]
Merge pull request #681 from ceph/wip-bz-mill

adds a simple script that feeds bz counts into grafana

8 years agoremoving unnecessary teardown 681/head
Gregory Meno [Wed, 19 Apr 2017 23:54:51 +0000 (16:54 -0700)]
removing unnecessary teardown

Signed-off-by: Gregory Meno <gmeno@redhat.com>
8 years agoadds a simple script that feeds bz counts into grafana
Gregory Meno [Wed, 19 Apr 2017 23:46:49 +0000 (16:46 -0700)]
adds a simple script that feeds bz counts into grafana

Signed-off-by: Gregory Meno <gmeno@redhat.com>
8 years agoMerge pull request #679 from ceph/ceph-ansible-docs-prs
Andrew Schoen [Thu, 13 Apr 2017 17:24:31 +0000 (12:24 -0500)]
Merge pull request #679 from ceph/ceph-ansible-docs-prs

ceph-ansible-docs-prs: create a job for building docs on prs

8 years agoceph-ansible-docs-prs: create a job for building docs on prs 679/head
Alfredo Deza [Thu, 13 Apr 2017 16:56:42 +0000 (12:56 -0400)]
ceph-ansible-docs-prs: create a job for building docs on prs

Signed-off-by: Alfredo Deza <adeza@redhat.com>
8 years agoMerge pull request #678 from ceph/libvirt-networks
Ken Dreyer [Wed, 12 Apr 2017 22:14:06 +0000 (16:14 -0600)]
Merge pull request #678 from ceph/libvirt-networks

ceph-ansible-prs: destroy and undefine libvirt networks on teardown

8 years agoceph-ansible-prs: destroy and undefine libvirt networks on teardown 678/head
Andrew Schoen [Wed, 12 Apr 2017 22:12:18 +0000 (17:12 -0500)]
ceph-ansible-prs: destroy and undefine libvirt networks on teardown

Signed-off-by: Andrew Schoen <aschoen@redhat.com>
8 years agoMerge pull request #677 from ceph/libvirt-kill-networks
Ken Dreyer [Wed, 12 Apr 2017 21:08:07 +0000 (15:08 -0600)]
Merge pull request #677 from ceph/libvirt-kill-networks

ceph-ansible-prs: ensure libvirt networks are destroyed after a job is completed

8 years agoceph-ansible-prs: ensure libvirt networks are destroyed after a job is completed 677/head
Alfredo Deza [Wed, 12 Apr 2017 21:00:59 +0000 (17:00 -0400)]
ceph-ansible-prs: ensure libvirt networks are destroyed after a job is completed

Signed-off-by: Alfredo Deza <adeza@redhat.com>
8 years agoMerge pull request #676 from ceph/mkdir-typo
Alfredo Deza [Tue, 11 Apr 2017 20:14:26 +0000 (16:14 -0400)]
Merge pull request #676 from ceph/mkdir-typo

ceph-ansible-docs: fix a typo on mkdir

8 years agoceph-ansible-docs: fix a typo on mkdir 676/head
Alfredo Deza [Tue, 11 Apr 2017 19:57:06 +0000 (15:57 -0400)]
ceph-ansible-docs: fix a typo on mkdir

Signed-off-by: Alfredo Deza <adeza@redhat.com>