From 0e342adcdfe41b86d9c978c1e5b9d1f99ccdd724 Mon Sep 17 00:00:00 2001 From: Eric <5089238+emizzle@users.noreply.github.com> Date: Fri, 18 Aug 2023 09:52:21 +1000 Subject: [PATCH] change geth/prometheus images to `latest` --- DistTestCore/Marketplace/GethContainerRecipe.cs | 2 +- DistTestCore/Metrics/PrometheusContainerRecipe.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/DistTestCore/Marketplace/GethContainerRecipe.cs b/DistTestCore/Marketplace/GethContainerRecipe.cs index 4ca7895..052e163 100644 --- a/DistTestCore/Marketplace/GethContainerRecipe.cs +++ b/DistTestCore/Marketplace/GethContainerRecipe.cs @@ -11,7 +11,7 @@ namespace DistTestCore.Marketplace public const string AccountsFilename = "accounts.csv"; public override string AppName => "geth"; - public override string Image => "codexstorage/dist-tests-geth:sha-b788a2d"; + public override string Image => "codexstorage/dist-tests-geth:latest"; protected override void Initialize(StartupConfig startupConfig) { diff --git a/DistTestCore/Metrics/PrometheusContainerRecipe.cs b/DistTestCore/Metrics/PrometheusContainerRecipe.cs index e51fdc5..d9f7ea8 100644 --- a/DistTestCore/Metrics/PrometheusContainerRecipe.cs +++ b/DistTestCore/Metrics/PrometheusContainerRecipe.cs @@ -5,7 +5,7 @@ namespace DistTestCore.Metrics public class PrometheusContainerRecipe : ContainerRecipeFactory { public override string AppName => "prometheus"; - public override string Image => "codexstorage/dist-tests-prometheus:sha-f97d7fd"; + public override string Image => "codexstorage/dist-tests-prometheus:latest"; protected override void Initialize(StartupConfig startupConfig) {