Skip to content

Commit

Permalink
fixes prometheus url check on Kubernetes
Browse files Browse the repository at this point in the history
Signed-off-by: Tullio Sebastiani <[email protected]>
  • Loading branch information
tsebastiani authored and chaitanyaenr committed Jan 10, 2024
1 parent d6c8054 commit d9e137e
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions run_kraken.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,10 @@ def main(cfg):
# KrknTelemetry init
telemetry_k8s = KrknTelemetryKubernetes(safe_logger, kubecli)
telemetry_ocp = KrknTelemetryOpenshift(safe_logger, ocpcli)
prometheus = KrknPrometheus(prometheus_url, prometheus_bearer_token)


if enable_alerts:
prometheus = KrknPrometheus(prometheus_url, prometheus_bearer_token)

logging.info("Server URL: %s" % kubecli.get_host())

Expand Down Expand Up @@ -337,7 +340,7 @@ def main(cfg):
failed_post_scenarios, scenario_telemetries = network_chaos.run(scenarios_list, config, wait_duration, kubecli, telemetry_k8s)

# Check for critical alerts when enabled
if check_critical_alerts:
if enable_alerts and check_critical_alerts :
logging.info("Checking for critical alerts firing post choas")

##PROM
Expand Down

0 comments on commit d9e137e

Please sign in to comment.