Deprecate tempest and rally

Per [1].

[1] http://eavesdrop.openstack.org/meetings/kolla/2021/kolla.2021-04-28-15.00.html

Change-Id: I4cd3d7f67068157b0de2c0a61dff622a1968b71d
This commit is contained in:
Radosław Piliszek 2021-05-05 08:30:11 +00:00
parent eff3e6b9c1
commit e01a490c97
8 changed files with 21 additions and 6 deletions

View File

@ -94,13 +94,13 @@ Kolla provides images to deploy the following OpenStack projects:
- `Nova <https://docs.openstack.org/nova/latest/>`__
- `Octavia <https://docs.openstack.org/octavia/latest/>`__
- `Panko <https://docs.openstack.org/panko/latest/>`__
- `Rally <https://docs.openstack.org/rally/latest/>`__
- `Rally <https://docs.openstack.org/rally/latest/>`__ [deprecated]
- `Sahara <https://docs.openstack.org/sahara/latest/>`__
- `Senlin <https://docs.openstack.org/senlin/latest/>`__
- `Solum <https://docs.openstack.org/solum/latest/>`__
- `Swift <https://docs.openstack.org/swift/latest/>`__
- `Tacker <https://docs.openstack.org/tacker/latest/>`__
- `Tempest <https://docs.openstack.org/tempest/latest/>`__
- `Tempest <https://docs.openstack.org/tempest/latest/>`__ [deprecated]
- `Trove <https://docs.openstack.org/trove/latest/>`__
- `Vitrage <https://docs.openstack.org/vitrage/latest/>`__
- `Vmtp <https://vmtp.readthedocs.io/en/latest/>`__

View File

@ -58,7 +58,7 @@ placement,C,C,N,C,N,C
prometheus,C,C,C,C,N,C
qdrouterd,C,C,C,C,N,N
rabbitmq,C,C,C,C,N,C
rally,C,C,N,C,N,C
rally (deprecated),C,C,N,C,N,C
redis,C,C,C,C,N,C
sahara,C,C,C,C,N,C
senlin,C,C,C,C,N,C
@ -68,7 +68,7 @@ storm,C,C,C,C,N,C
swift,C,C,C,C,N,C
tacker,C,C,N,C,N,C
telegraf,N,N,N,N,N,N
tempest,C,N,C,N,N,N
tempest (deprecated),C,N,C,N,N,N
tgtd,C,C,C,C,N,C
trove,C,C,N,C,N,C
vitrage,C,C,N,C,N,C

1 Image,CentOS,,Ubuntu,,Debian
58 prometheus,C,C,C,C,N,C
59 qdrouterd,C,C,C,C,N,N
60 rabbitmq,C,C,C,C,N,C
61 rally,C,C,N,C,N,C rally (deprecated),C,C,N,C,N,C
62 redis,C,C,C,C,N,C
63 sahara,C,C,C,C,N,C
64 senlin,C,C,C,C,N,C
68 swift,C,C,C,C,N,C
69 tacker,C,C,N,C,N,C
70 telegraf,N,N,N,N,N,N
71 tempest,C,N,C,N,N,N tempest (deprecated),C,N,C,N,N,N
72 tgtd,C,C,C,C,N,C
73 trove,C,C,N,C,N,C
74 vitrage,C,C,N,C,N,C

View File

@ -59,7 +59,7 @@ placement,T,T,T,T,C,T
prometheus,C,C,C,C,C,C
qdrouterd,C,C,N,N,N,N
rabbitmq,T,T,T,T,C,T
rally,C,C,N,C,C,C
rally (deprecated),C,C,N,C,C,C
redis,C,T,C,C,C,C
sahara,C,C,C,C,C,C
senlin,C,C,C,C,C,C
@ -69,7 +69,7 @@ storm,C,C,C,C,C,C
swift,C,T,C,T,C,C
tacker,C,T,N,C,N,C
telegraf,C,C,C,C,C,N
tempest,C,C,C,C,C,C
tempest (deprecated),C,C,C,C,C,C
tgtd,N,N,C,T,C,C
trove,C,C,C,C,N,C
vitrage,C,C,N,C,C,C

1 Image,CentOS,,Ubuntu,,Debian
59 prometheus,C,C,C,C,C,C
60 qdrouterd,C,C,N,N,N,N
61 rabbitmq,T,T,T,T,C,T
62 rally,C,C,N,C,C,C rally (deprecated),C,C,N,C,C,C
63 redis,C,T,C,C,C,C
64 sahara,C,C,C,C,C,C
65 senlin,C,C,C,C,C,C
69 swift,C,T,C,T,C,C
70 tacker,C,T,N,C,N,C
71 telegraf,C,C,C,C,C,N
72 tempest,C,C,C,C,C,C tempest (deprecated),C,C,C,C,C,C
73 tgtd,N,N,C,T,C,C
74 trove,C,C,C,C,N,C
75 vitrage,C,C,N,C,C,C

View File

@ -3,6 +3,8 @@ FROM {{ namespace }}/{{ image_prefix }}openstack-base:{{ tag }}
LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build_date }}"
{% endblock %}
# rally image is deprecated
{% block rally_header %}{% endblock %}
{% import "macros.j2" as macros with context %}

View File

@ -1,5 +1,7 @@
#!/bin/bash
echo "rally image is deprecated"
if [[ ! -d "/var/log/kolla/rally" ]]; then
mkdir -p /var/log/kolla/rally
fi

View File

@ -3,6 +3,8 @@ FROM {{ namespace }}/{{ image_prefix }}openstack-base:{{ tag }}
LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build_date }}"
{% endblock %}
# tempest image is deprecated
{% block tempest_header %}{% endblock %}
{% import "macros.j2" as macros with context %}

View File

@ -1,5 +1,7 @@
#! /bin/bash
echo "tempest image is deprecated"
if [[ ! -d "/var/log/kolla/tempest" ]]; then
mkdir -p /var/log/kolla/tempest
fi

View File

@ -0,0 +1,7 @@
---
deprecations:
- |
The ``tempest`` and ``rally`` images are deprecated and will be
removed in the Xena cycle.
The reason is that these are not services of an OpenStack cloud but
its clients.