The commit 8bd43b6 added support for three new applications:
- power-manager (kubernetes-power-manager)
- node-feature-discovery
- node-interface-metrics-exporter
This broke unit tests because the custom test configuration file
was missing the new required fields. This fix:
- Adds missing app config fields to custom_app_config.json5
- Updates unit tests to validate all new getter methods
- Ensures complete test coverage for app configuration
Fixes: KeyError: 'power_manager_app_name' in test_custom_app_config
Change-Id: I0376a47b07ed53f6d2b34584986ce2ecd9b48214
Signed-off-by: Andrew Vaillancourt <andrew.vaillancourt@windriver.com>
10 lines
432 B
Plaintext
10 lines
432 B
Plaintext
{
|
|
base_application_path: "fake_path",
|
|
istio_app_name: "istio_custom",
|
|
metric_server_app_name: "metrics-server_custom",
|
|
oidc_app_name: "oidc-auth-apps_custom",
|
|
power_metrics_app_name: "power-metrics_custom",
|
|
power_manager_app_name: "kubernetes-power-manager_custom",
|
|
node_feature_discovery_app_name: "node-feature-discovery_custom",
|
|
node_interface_metrics_exporter_app_name: "node-interface-metrics-exporter_custom"
|
|
} |