diff --git a/config/config.yaml b/config/config.yaml index 2632168f..bb9c6ecd 100644 --- a/config/config.yaml +++ b/config/config.yaml @@ -56,7 +56,7 @@ kraken: cerberus: cerberus_enabled: False # Enable it when cerberus is previously installed cerberus_url: # When cerberus_enabled is set to True, provide the url where cerberus publishes go/no-go signal - check_applicaton_routes: False # When enabled will look for application unavailability using the routes specified in the cerberus config and fails the run + check_application_routes: False # When enabled will look for application unavailability using the routes specified in the cerberus config and fails the run performance_monitoring: prometheus_url: '' # The prometheus url/route is automatically obtained in case of OpenShift, please set it when the distribution is Kubernetes. diff --git a/config/config_kind.yaml b/config/config_kind.yaml index 6d7fb5c9..e2986ca8 100644 --- a/config/config_kind.yaml +++ b/config/config_kind.yaml @@ -13,7 +13,7 @@ kraken: cerberus: cerberus_enabled: False # Enable it when cerberus is previously installed cerberus_url: # When cerberus_enabled is set to True, provide the url where cerberus publishes go/no-go signal - check_applicaton_routes: False # When enabled will look for application unavailability using the routes specified in the cerberus config and fails the run + check_application_routes: False # When enabled will look for application unavailability using the routes specified in the cerberus config and fails the run performance_monitoring: prometheus_url: # The prometheus url/route is automatically obtained in case of OpenShift, please set it when the distribution is Kubernetes. diff --git a/config/config_kubernetes.yaml b/config/config_kubernetes.yaml index dde998b9..f35f51d0 100644 --- a/config/config_kubernetes.yaml +++ b/config/config_kubernetes.yaml @@ -14,7 +14,7 @@ kraken: cerberus: cerberus_enabled: False # Enable it when cerberus is previously installed cerberus_url: # When cerberus_enabled is set to True, provide the url where cerberus publishes go/no-go signal - check_applicaton_routes: False # When enabled will look for application unavailability using the routes specified in the cerberus config and fails the run + check_application_routes: False # When enabled will look for application unavailability using the routes specified in the cerberus config and fails the run performance_monitoring: prometheus_url: # The prometheus url/route is automatically obtained in case of OpenShift, please set it when the distribution is Kubernetes. diff --git a/config/config_performance.yaml b/config/config_performance.yaml index a03c38ef..87bd935c 100644 --- a/config/config_performance.yaml +++ b/config/config_performance.yaml @@ -35,7 +35,7 @@ kraken: cerberus: cerberus_enabled: True # Enable it when cerberus is previously installed cerberus_url: http://0.0.0.0:8080 # When cerberus_enabled is set to True, provide the url where cerberus publishes go/no-go signal - check_applicaton_routes: False # When enabled will look for application unavailability using the routes specified in the cerberus config and fails the run + check_application_routes: False # When enabled will look for application unavailability using the routes specified in the cerberus config and fails the run performance_monitoring: deploy_dashboards: True # Install a mutable grafana and load the performance dashboards. Enable this only when running on OpenShift diff --git a/krkn/cerberus/setup.py b/krkn/cerberus/setup.py index 26efc152..03c24d89 100644 --- a/krkn/cerberus/setup.py +++ b/krkn/cerberus/setup.py @@ -14,7 +14,7 @@ def get_status(config, start_time, end_time): if config["cerberus"]["cerberus_enabled"]: cerberus_url = config["cerberus"]["cerberus_url"] check_application_routes = \ - config["cerberus"]["check_applicaton_routes"] + config["cerberus"]["check_application_routes"] if not cerberus_url: logging.error( "url where Cerberus publishes True/False signal " diff --git a/krkn/scenario_plugins/native/network/cerberus.py b/krkn/scenario_plugins/native/network/cerberus.py index d245b865..8ee761db 100644 --- a/krkn/scenario_plugins/native/network/cerberus.py +++ b/krkn/scenario_plugins/native/network/cerberus.py @@ -27,7 +27,7 @@ def get_status(config, start_time, end_time): application_routes_status = True if config["cerberus"]["cerberus_enabled"]: cerberus_url = config["cerberus"]["cerberus_url"] - check_application_routes = config["cerberus"]["check_applicaton_routes"] + check_application_routes = config["cerberus"]["check_application_routes"] if not cerberus_url: logging.error("url where Cerberus publishes True/False signal is not provided.") sys.exit(1) diff --git a/krkn/scenario_plugins/native/pod_network_outage/cerberus.py b/krkn/scenario_plugins/native/pod_network_outage/cerberus.py index 1122945e..fd6087d6 100644 --- a/krkn/scenario_plugins/native/pod_network_outage/cerberus.py +++ b/krkn/scenario_plugins/native/pod_network_outage/cerberus.py @@ -27,7 +27,7 @@ def get_status(config, start_time, end_time): application_routes_status = True if config["cerberus"]["cerberus_enabled"]: cerberus_url = config["cerberus"]["cerberus_url"] - check_application_routes = config["cerberus"]["check_applicaton_routes"] + check_application_routes = config["cerberus"]["check_application_routes"] if not cerberus_url: logging.error( "url where Cerberus publishes True/False signal is not provided.")