Skip to content

Commit 2a0904d

Browse files
committed
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
1 parent 3114c3f commit 2a0904d

3 files changed

Lines changed: 4 additions & 10 deletions

File tree

.zuul.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -185,10 +185,8 @@
185185
jobs:
186186
- cloudkitty-tempest-full-v2-storage-influxdb
187187
- cloudkitty-tempest-full-v2-storage-influxdb-v2
188-
- cloudkitty-tempest-full-v2-storage-elasticsearch:
189-
voting: false
190-
- cloudkitty-tempest-full-v2-storage-opensearch:
191-
voting: false
188+
- cloudkitty-tempest-full-v2-storage-elasticsearch
189+
- cloudkitty-tempest-full-v2-storage-opensearch
192190
- cloudkitty-tempest-full-v1-storage-sqlalchemy
193191
- cloudkitty-tempest-full-ipv6-only
194192
- cloudkitty-tox-bandit:
@@ -198,6 +196,8 @@
198196
jobs:
199197
- cloudkitty-tempest-full-v2-storage-influxdb
200198
- cloudkitty-tempest-full-v2-storage-influxdb-v2
199+
- cloudkitty-tempest-full-v2-storage-elasticsearch
200+
- cloudkitty-tempest-full-v2-storage-opensearch
201201
- cloudkitty-tempest-full-v1-storage-sqlalchemy
202202
- cloudkitty-tempest-full-ipv6-only
203203
- cloudkitty-grenade-job

cloudkitty/storage/v2/elasticsearch/__init__.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,9 +86,6 @@ class ElasticsearchStorage(v2_storage.BaseStorage):
8686
def __init__(self, *args, **kwargs):
8787
super(ElasticsearchStorage, self).__init__(*args, **kwargs)
8888

89-
LOG.warning('The Elasticsearch storage driver is experimental. '
90-
'DO NOT USE IT IN PRODUCTION.')
91-
9289
verify = not CONF.storage_elasticsearch.insecure
9390
if verify and CONF.storage_elasticsearch.cafile:
9491
verify = CONF.storage_elasticsearch.cafile

cloudkitty/storage/v2/opensearch/__init__.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,9 +86,6 @@ class OpenSearchStorage(v2_storage.BaseStorage):
8686
def __init__(self, *args, **kwargs):
8787
super(OpenSearchStorage, self).__init__(*args, **kwargs)
8888

89-
LOG.warning('The OpenSearch storage driver is experimental. '
90-
'DO NOT USE IT IN PRODUCTION.')
91-
9289
verify = not CONF.storage_opensearch.insecure
9390
if verify and CONF.storage_opensearch.cafile:
9491
verify = CONF.storage_opensearch.cafile

0 commit comments

Comments
 (0)