another try

This commit is contained in:
Felix Kunde 2020-04-17 10:39:08 +02:00
parent 8282933794
commit 22473cd537
1 changed files with 5 additions and 5 deletions

View File

@ -627,8 +627,8 @@ class EndToEndTestCase(unittest.TestCase):
pods = k8s.list_pods(labels)
for pod in pods:
if pod.metadata.labels.get('spilo-role') in ['master', 'replica']:
pgdata = [v for v in pod.spec.volumes if 'pgdata' in v.name]
self.assertTrue(len(pgdata) > 0, "No pgdata volumes found")
if len(pgdata) > 0:
pvc = pgdata[0].persistent_volume_claim
self.assertTrue(k8s.pvc_exist(pvc.claim_name), "PVC does not exist")