Update the zuul status page javascript to use a grey icon when
representing non-live changes. This change has already been made
in the zuul project js.
Change-Id: I60bfa3b7f24e9638fe9be41f07ee472827fb64f9
Apache logs aren't getting indexed after changes to where they exist
in devstack-gate. This means the horizon logs are lost, and that
keystone logs aren't getting indexed at all on the main jobs.
Change-Id: I1ef5084d6bf4dc9f74f4e4b51e00e97573074e38
If puppet creates users after any static UID/GID users are created,
it will use the next available UID or GID even if we intend to use
if for another static user. Solve this by increasing the dynamic
range minimums in /etc/login.defs, and also define system account
maximums explicitly so that they don't get interpreted as one less
than the normal user minimums and potentially also conflict.
Change-Id: Ie82ee5cbc23ef38b0eddd8c6af611724cc10fb28
Upcoming versions of pip are going to get more and more nasty about
non-SSL index locations. In order to deal with that well, add a global
config file listing our PyPI mirrors as "trusted" - which means
that pip will not complain about their non-SSL qualities.
Change-Id: If9f3cec10d8057631978f7f1d5cd7e4936e163ef
It's been nearly two years since the new ICLA process was put in
place, so the file describing the old one doesn't really need to be
perpetually hosted on our code review servers.
Change-Id: If001290d033ba970281628fb462cb48c9fe7c207
Replace URLs for workflow documentation to appropriate parts of the
OpenStack Project Infrastructure Manual.
Change-Id: I8aa32f5617a0331c116a703c45ae7f644f5b409a
We have almost 500 git repositories now, bump up number of repos
shown on git.openstack.org/cgit/ from 400 to 600 to show them all
Change-Id: I374ba5a54862030385a14656a762782fa9b684a3
As for devstack patch Ia3843818014f7c6c7526ef3aa9676bbddb8a85ca if the
fake virt driver is used the n-cpu processes are named n-cpu-${i} where
i is 1 to NUMBER_FAKE_NOVA_COMPUTE.
Currently the name field is an exact match and we don't change
NUMBER_FAKE_NOVA_COMPUTE from its default value of 1. So in order to
start collecting n-cpu in large-ops again just add n-cpu-1.
Change-Id: I963675436d05fe9cd8bf5cc609130fe6e2b90a79
We should index the trove logs now that we have
gate-trove-functional-dsvm-mysql and it can blow up in great ways
throwing off our uncategorized bug percentages in elastic-recheck.
It doesn't look like trove is used in grenade runs so there are no logs
to index there.
Related-Bug: #1402227
Change-Id: I1c0d9a301d5bf40047b69ec64037df8c1ba3425f
* modules/openstack_project/files/git/cgitrc: The dumb HTTP protocol
support in cgit is an attractive nuisance and source of surprising
random errors for users who misconfigure their repositories to use
it as a remote. We provide a separate smart HTTP backend and
configure cgit to list that as the clone URL anyway, so the default
enable-http-clone is disabled to avoid further accidental use.
Change-Id: Iacc34ba51cd835f7e999b753e06ef6eea41630df
The keystone log link was pointing to the screen log when it runs
as eventlet. When keystone runs under Apache Httpd its logs are in
the apache directory, so correct the links.
Change-Id: Ib1f29be5ff3dda23317362f15d3b746909293a06
This commit adds a new job filter to the gearman client to filter
based on the build queue. This is used for the subunit jobs which
we don't want to run on check jobs.
Change-Id: If81fe98d8d67bb718c53a963695a7d06f5f6625d
The policy for the subunit workers expected a subunit yaml file named:
jenkins-subunit-worker.yaml however the filename had a typo which
prevented things from working. This patch fixes the filename.
Change-Id: I0638f1dcb18561580351959cb29ef2546850450f
the following css attribute selector will make -1s in the english
ui version of gerrit new screen be the color red. This is as good
as we can do today given that gerrit doesn't provide real classes
on things any more.
Reference on attr selectors: http://css-tricks.com/attribute-selectors/
(should work on all browsers > ie6)
A follow up will be to see if we can get proper semantic tags back
into gerrit for things like this.
Change-Id: I8236cf83b648bfe352daea1f3ae59c151068ab44
Use the same trick used in zuul status page to store a cookie
with the last state so when we load another review, we use the last
setting to show or hide the CI comments.
Change-Id: If912b88c3ad68c1dcaa086ad76abb54ecf5b576b
As gerrit is a big JS-based webapp, traditional hooks for executing code
on page-load (window.onload and friends) don't get executed on every
page as a user is exploring the UI. Instead we rely on the appearance
and disappearance of the "working..." message to know when a user is
looking at a new page. The test for this was not precise enough, which
was causing the ci_page_loaded function to be called twice on page load.
This patch changes the MutationObserver so that it only calls the
function once, by checking that it is the "style" attribute that has
changed. The other call was being triggered by a change to the
"aria-hidden" attribute.
Change-Id: If870d53b5760c140c84e5711ada94609a60e0cdb
This adds a new gearman worker to process the subunit files from
the gate job runs. It will use subunit2sql to connect to a sql
server and process the data from the subunit file. The
log-gearman-client is modified to allow for pushing subunit jobs
to gearman, and the worker model for processsing logs is borrowed
to process the subunit files.
Change-Id: I83103eb6afc22d91f916583c36c0e956c23a64b3
The previous hideci enhancements and refactor was not tested on the
new change screen, which sadly removes all the semantic markup around
the displayed changes (boo gerrit).
Do the base parsing based on the looping over the p tags as was done
in the initial version instead of matching divs by semantic tags. A
few of the parsing functions needs to be adapted to know if they are
on old vs. new change screen (like finding the date).
Spot tested locally with new and old change screen, seems to be
working.
Change-Id: Ieadfb78fa4d152d12cb64fc69d808fa510d28abd
The OpenStack infrastructure's PyPI mirror (pypi.openstack.org) shouldn't
be used for 3rd parties so setting the default to pypi.dfw.openstack.org
instead.
Change-Id: I7720ad7d3b23816c63e971112a3a733bde52b7f4
Change hideci to only show the most recent results of a pipeline. For
entries where the pipeline is not parsable we default to assuming the
results were in the 'check' pipeline.
3rd Party CI systems are assumed to be 'check' pipeline for the
purposes of this patch.
Order the display of these results for parsed pipeline entries first,
then non parsed entries after. That has the impact of making all the
Jenkins results be the top of the page and 3rd Party come later.
Also provide a (### rechecks) comment if we find more than 1 result at
the current patch set number. This helps reviewers understand that
this patch might be unstable as it's been rechecked to get to the
current state.
Change-Id: I153f73000f9392af6c8bbe850716645b3ba836a0
The current set of runs make the fleet depend on all git changes
working. The only thing we actually care about is that gerrit doesn't
get updated if git fails.
Change-Id: Id488e14c7dbaddfbffece7b1d8ef65f06b3688d8
Move the install location of the git checkout of the config repo
to /opt/system-config to make things more consistent for operators.
Actually moving this on the puppetmaster will be a manual step.
Change-Id: Id9297088ae6c76c02e35414433aae2733f9f639c
We are renaming the openstack-infra/config repo to
openstack-infra/system-config. This patch changes the paths in
the tempest help files.
Change-Id: I5edb3e444b554a979d9274b7354ddd8c1b4b9128
We are renaming the openstack-infra/config repo to
openstack-infra/system-config. This patch edits the paths in the pypi.yaml
files to reflect the name change.
Change-Id: I40e417d31803d8e47e1558b7783e7216119e898d
However the help message didn't update, so it's harder to find
the source files. This fixes the help urls presented to the user.
Change-Id: I641cee0fe8494ad7ee712b4884e6767cc6ed15e2