Set Elastic/OpenSearch jobs as voting in Zuul

Given these backends are now used in many production environments, they
can no longer be considered experimental.

Change-Id: I9e9f3023bf2a50807540e69b764600c0c5f995d5
This commit is contained in:
Matt Crees
2023-04-21 15:34:20 +01:00
parent 3114c3f979
commit 2a0904db00
3 changed files with 4 additions and 10 deletions

View File

@@ -185,10 +185,8 @@
jobs:
- cloudkitty-tempest-full-v2-storage-influxdb
- cloudkitty-tempest-full-v2-storage-influxdb-v2
- cloudkitty-tempest-full-v2-storage-elasticsearch:
voting: false
- cloudkitty-tempest-full-v2-storage-opensearch:
voting: false
- cloudkitty-tempest-full-v2-storage-elasticsearch
- cloudkitty-tempest-full-v2-storage-opensearch
- cloudkitty-tempest-full-v1-storage-sqlalchemy
- cloudkitty-tempest-full-ipv6-only
- cloudkitty-tox-bandit:
@@ -198,6 +196,8 @@
jobs:
- cloudkitty-tempest-full-v2-storage-influxdb
- cloudkitty-tempest-full-v2-storage-influxdb-v2
- cloudkitty-tempest-full-v2-storage-elasticsearch
- cloudkitty-tempest-full-v2-storage-opensearch
- cloudkitty-tempest-full-v1-storage-sqlalchemy
- cloudkitty-tempest-full-ipv6-only
- cloudkitty-grenade-job

View File

@@ -86,9 +86,6 @@ class ElasticsearchStorage(v2_storage.BaseStorage):
def __init__(self, *args, **kwargs):
super(ElasticsearchStorage, self).__init__(*args, **kwargs)
LOG.warning('The Elasticsearch storage driver is experimental. '
'DO NOT USE IT IN PRODUCTION.')
verify = not CONF.storage_elasticsearch.insecure
if verify and CONF.storage_elasticsearch.cafile:
verify = CONF.storage_elasticsearch.cafile

View File

@@ -86,9 +86,6 @@ class OpenSearchStorage(v2_storage.BaseStorage):
def __init__(self, *args, **kwargs):
super(OpenSearchStorage, self).__init__(*args, **kwargs)
LOG.warning('The OpenSearch storage driver is experimental. '
'DO NOT USE IT IN PRODUCTION.')
verify = not CONF.storage_opensearch.insecure
if verify and CONF.storage_opensearch.cafile:
verify = CONF.storage_opensearch.cafile