Remove references to stackalytics.o.o

stackalytics.openstack.org does not resolve and seems very dead. Remove
its node from site.pp and remove it from the docs to avoid confusion
about what servers we're really managing. We can always add it back when
the time comes to try again.

Change-Id: I733130ebe97ae7e06ca57b3c8e3a8708fcfa069c
This commit is contained in:
Colleen Murphy 2018-07-24 12:48:22 +02:00 committed by Colleen Murphy
parent 96e31efe74
commit 46ebeeb4fb
6 changed files with 0 additions and 69 deletions

View File

@ -1,39 +0,0 @@
:title: Stackalytics
.. _stackalytics:
Stackalytics
############
Stackalytics is a service that collects and processes development activity
data such as commits, lines of code changed, code reviews and blueprints then
makes it possible to visualize it in a convenient web dashboard. The
Stackalytics dashboard makes it possible to view data by project, company,
contributor, and other factors.
The primary data sources for Stackalytics are the OpenStack Git repositories
and the Gerrit review history.
At a Glance
===========
:Hosts:
* http://stackalytics.openstack.org
:Puppet:
* https://git.openstack.org/cgit/openstack-infra/puppet-stackalytics/tree/
* :cgit_file:`modules/openstack_project/manifests/stackalytics.pp`
:Projects:
* https://git.openstack.org/cgit/openstack/stackalytics
:Documentation:
* https://wiki.openstack.org/wiki/Stackalytics
:Bugs:
* https://bugs.launchpad.net/stackalytics
Installation
============
Gerrit Events
-------------
Create a dedicated service account, described in :ref:`request-account-label`,
in order to properly stream events from :ref:`gerrit`.

View File

@ -25,7 +25,6 @@ Major Systems
paste
planet
puppet
stackalytics
static
bandersnatch
reprepro

View File

@ -523,7 +523,6 @@ cacti_hosts:
- mirror-update.openstack.org
- review-dev01.openstack.org
- review.openstack.org
- stackalytics.openstack.org
- static.openstack.org
- status01.openstack.org
- storyboard.openstack.org

View File

@ -183,20 +183,6 @@ node /^health\d*\.openstack\.org$/ {
}
}
# Node-OS: trusty
# Node-OS: xenial
node /^stackalytics\d*\.openstack\.org$/ {
class { 'openstack_project::server':
iptables_public_tcp_ports => [80],
sysadmins => hiera('sysadmins', []),
}
class { 'openstack_project::stackalytics':
gerrit_ssh_user => hiera('stackalytics_gerrit_ssh_user'),
stackalytics_ssh_private_key => hiera('stackalytics_ssh_private_key_contents'),
}
}
# Node-OS: xenial
node /^cacti\d+\.openstack\.org$/ {
$group = "cacti"

View File

@ -141,7 +141,6 @@ INTEGRATION_MODULES["$OPENSTACK_GIT_ROOT/openstack-infra/puppet-simpleproxy"]="o
INTEGRATION_MODULES["$OPENSTACK_GIT_ROOT/openstack-infra/puppet-snmpd"]="origin/master"
INTEGRATION_MODULES["$OPENSTACK_GIT_ROOT/openstack-infra/puppet-ssh"]="origin/master"
INTEGRATION_MODULES["$OPENSTACK_GIT_ROOT/openstack-infra/puppet-ssl_cert_check"]="origin/master"
INTEGRATION_MODULES["$OPENSTACK_GIT_ROOT/openstack-infra/puppet-stackalytics"]="origin/master"
INTEGRATION_MODULES["$OPENSTACK_GIT_ROOT/openstack-infra/puppet-statusbot"]="origin/master"
INTEGRATION_MODULES["$OPENSTACK_GIT_ROOT/openstack-infra/puppet-storyboard"]="origin/master"
INTEGRATION_MODULES["$OPENSTACK_GIT_ROOT/openstack-infra/puppet-subunit2sql"]="origin/master"

View File

@ -1,13 +0,0 @@
# == Class: openstack_project::stackalytics
#
class openstack_project::stackalytics (
$gerrit_ssh_user,
$stackalytics_ssh_private_key,
$vhost_name = $::fqdn,
) {
class { '::stackalytics':
gerrit_ssh_user => $gerrit_ssh_user,
stackalytics_ssh_private_key => $stackalytics_ssh_private_key,
vhost_name => $vhost_name,
}
}