Don't use disable-telemetry.yaml

Legacy telemetry has been disabled by default since
ussuri.

Change-Id: I1d233e5109a009bd1422c9657cdadcf4df1d17bd
This commit is contained in:
ramishra 2021-06-07 09:46:33 +05:30
parent 582a38e241
commit 452bbdca6e
3 changed files with 7 additions and 9 deletions

View File

@ -8,11 +8,11 @@ step_introspect: true
extra_args: >-
--ntp-server pool.ntp.org
# This config is extremely resource intensive, so we disable telemetry
# This featureset is extremely resource intensive, so we disable telemetry
# in order to reduce the overall memory footprint
# This is not required in newton
# Disabled by default in ussuri
telemetry_args: >-
{% if release != 'newton' %}
{% if release in ['queens', 'stein', 'train'] %}
-e {{ overcloud_templates_path }}/environments/disable-telemetry.yaml
{% endif %}

View File

@ -21,11 +21,11 @@ extra_args: " --control-flavor baremetal --compute-flavor baremetal "
# This featureset is extremely resource intensive, so we disable telemetry
# in order to reduce the overall memory footprint
# This is not required in newton
# Disabled by default in ussuri
telemetry_args: >-
{% if release not in ['newton', 'ocata'] %}
-e {{ overcloud_templates_path }}/environments/disable-telemetry.yaml
{% endif %}
{% if release in ['queens', 'stein', 'train'] %}
-e {{ overcloud_templates_path }}/environments/disable-telemetry.yaml
{% endif %}
run_tempest: false
tempest_config: false

View File

@ -194,9 +194,7 @@ $TEMPESTCONF --out etc/tempest.conf \
compute.build_timeout 500 \
network.build_timeout 500 \
volume.build_timeout 500 \
{% if 'disable-telemetry.yaml' in telemetry_args|default('') %}
service_available.aodh_plugin False \
{% endif %}
{% if tempest_extra_config %}
{% for key, value in tempest_extra_config.items() %}
{{ key }} {{ value }} \