INFRA-3277 | Saqib | updating script to ignore namespace not starting with dev or qa
This commit is contained in:
@@ -25,10 +25,7 @@ for i in manifest_list:
|
||||
manifest = r.json()
|
||||
if "deployment" in manifest:
|
||||
deployment = manifest["deployment"]
|
||||
if (
|
||||
deployment["namespace"] == "dev-datastores"
|
||||
or deployment["namespace"] == "qa-datastores"
|
||||
):
|
||||
if (deployment['namespace'].startswith(('qa','dev'))):
|
||||
continue
|
||||
|
||||
if "hpa" in deployment:
|
||||
|
||||
Reference in New Issue
Block a user