Skip to content

Commit 4794fc8

Browse files
committed
Update Elasticsearch
1 parent a537251 commit 4794fc8

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/Exceptionless.AppHost/Extensions/ElasticsearchExtensions.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public static class ElasticsearchBuilderExtensions
1616
private const int KibanaPort = 5601;
1717

1818
/// <summary>
19-
/// Adds a Elasticsearch container to the application model. The default image is "docker.elastic.co/elasticsearch/elasticsearch". This version the package defaults to the 8.16.1 tag of the Elasticsearch container image
19+
/// Adds a Elasticsearch container to the application model. The default image is "docker.elastic.co/elasticsearch/elasticsearch". This version the package defaults to the 8.17.0 tag of the Elasticsearch container image
2020
/// </summary>
2121
/// <param name="builder">The <see cref="IDistributedApplicationBuilder"/>.</param>
2222
/// <param name="name">The name of the resource. This name will be used as the connection string name when referenced in a dependency.</param>
@@ -117,5 +117,5 @@ internal static class ElasticsearchContainerImageTags
117117
public const string Registry = "docker.elastic.co";
118118
public const string Image = "elasticsearch/elasticsearch";
119119
public const string KibanaImage = "kibana/kibana";
120-
public const string Tag = "8.16.1";
120+
public const string Tag = "8.17.0";
121121
}

src/Exceptionless.AppHost/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
var builder = DistributedApplication.CreateBuilder(args);
22

33
var elastic = builder.AddElasticsearch("Elasticsearch", port: 9200)
4-
.WithImageTag("8.16.1")
4+
.WithImageTag("8.17.0")
55
.WithLifetime(ContainerLifetime.Persistent)
66
.WithContainerName("Exceptionless-Elasticsearch")
77
.WithDataVolume("exceptionless.data.v1")

tests/Exceptionless.Tests/AspireWebHostFactory.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public async Task InitializeAsync()
2525

2626
builder.AddElasticsearch("Elasticsearch")
2727
.WithContainerName("Exceptionless-Elasticsearch-Test")
28-
.WithImageTag("8.16.1")
28+
.WithImageTag("8.17.0")
2929
.WithLifetime(ContainerLifetime.Persistent);
3030

3131
builder.AddRedis("Redis")

0 commit comments

Comments
 (0)