cs-codex-dist-tests/DistTestCore/Metrics/PrometheusContainerRecipe.cs

19 lines
572 B
C#
Raw Normal View History

2023-04-13 14:36:17 +02:00
using KubernetesWorkflow;
namespace DistTestCore.Metrics
{
public class PrometheusContainerRecipe : ContainerRecipeFactory
{
2023-08-07 15:51:44 +02:00
public override string AppName => "prometheus";
public override string Image => "codexstorage/dist-tests-prometheus:sha-f97d7fd";
2023-04-13 14:36:17 +02:00
protected override void Initialize(StartupConfig startupConfig)
{
var config = startupConfig.Get<PrometheusStartupConfig>();
AddExposedPortAndVar("PROM_PORT");
AddEnvVar("PROM_CONFIG", config.PrometheusConfigBase64);
}
}
}