diff --git a/doc/source/stackalytics.rst b/doc/source/stackalytics.rst deleted file mode 100644 index 87923a791a..0000000000 --- a/doc/source/stackalytics.rst +++ /dev/null @@ -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`. diff --git a/doc/source/systems.rst b/doc/source/systems.rst index f20ec1f2db..1ae21e6344 100644 --- a/doc/source/systems.rst +++ b/doc/source/systems.rst @@ -25,7 +25,6 @@ Major Systems paste planet puppet - stackalytics static bandersnatch reprepro diff --git a/hiera/common.yaml b/hiera/common.yaml index b86b2bf19b..249e7a818e 100644 --- a/hiera/common.yaml +++ b/hiera/common.yaml @@ -525,7 +525,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 diff --git a/manifests/site.pp b/manifests/site.pp index 07a141612e..85b6a222d9 100644 --- a/manifests/site.pp +++ b/manifests/site.pp @@ -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" diff --git a/modules.env b/modules.env index 1de88cdd90..323d24cd43 100644 --- a/modules.env +++ b/modules.env @@ -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" diff --git a/modules/openstack_project/manifests/stackalytics.pp b/modules/openstack_project/manifests/stackalytics.pp deleted file mode 100644 index 01ba202b2c..0000000000 --- a/modules/openstack_project/manifests/stackalytics.pp +++ /dev/null @@ -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, - } -}