diff --git a/devsetup/standalone/openstack.sh b/devsetup/standalone/openstack.sh index a594b65..2e6e170 100755 --- a/devsetup/standalone/openstack.sh +++ b/devsetup/standalone/openstack.sh @@ -23,6 +23,7 @@ INTERFACE_MTU=${INTERFACE_MTU:-1500} BARBICAN_ENABLED=${BARBICAN_ENABLED:-true} MANILA_ENABLED=${MANILA_ENABLED:-true} SWIFT_REPLICATED=${SWIFT_REPLICATED:-false} +TELEMETRY_ENABLED=${TELEMETRY_ENABLED:-true} # Use the files created in the previous steps including the network_data.yaml file and thw deployed_network.yaml file. # The deployed_network.yaml file hard codes the IPs and VIPs configured from the network.sh @@ -108,6 +109,10 @@ fi if [ "$MANILA_ENABLED" = "true" ]; then ENV_ARGS+=" -e /usr/share/openstack-tripleo-heat-templates/environments/manila-cephfsnative-config.yaml" fi +if [ "$TELEMETRY_ENABLED" = "true" ]; then + ENV_ARGS+=" -e /usr/share/openstack-tripleo-heat-templates/environments/enable-legacy-telemetry.yaml" + ENV_ARGS+=" -e /usr/share/openstack-tripleo-heat-templates/environments/metrics/collectd-write-qdr.yaml" +fi ENV_ARGS+=" -e $HOME/standalone_parameters.yaml" if [ "$EDPM_COMPUTE_CEPH_ENABLED" = "true" ] ; then CEPH_ARGS=${CEPH_ARGS:-"-e ~/deployed_ceph.yaml -e /usr/share/openstack-tripleo-heat-templates/environments/cephadm/cephadm-rbd-only.yaml"}