35 references to RedisContainerImageTags
Aspire.Hosting.Redis (17)
RedisBuilderExtensions.cs (17)
36/// This version of the package defaults to the <inheritdoc cref="RedisContainerImageTags.Tag"/> tag of the <inheritdoc cref="RedisContainerImageTags.Image"/> container image. 60/// This version of the package defaults to the <inheritdoc cref="RedisContainerImageTags.Tag"/> tag of the <inheritdoc cref="RedisContainerImageTags.Image"/> container image. 97.WithImage(RedisContainerImageTags.Image, RedisContainerImageTags.Tag) 98.WithImageRegistry(RedisContainerImageTags.Registry) 219/// This version of the package defaults to the <inheritdoc cref="RedisContainerImageTags.RedisCommanderTag"/> tag of the <inheritdoc cref="RedisContainerImageTags.RedisCommanderImage"/> container image. 242.WithImage(RedisContainerImageTags.RedisCommanderImage, RedisContainerImageTags.RedisCommanderTag) 243.WithImageRegistry(RedisContainerImageTags.RedisCommanderRegistry) 299/// This version of the package defaults to the <inheritdoc cref="RedisContainerImageTags.RedisInsightTag"/> tag of the <inheritdoc cref="RedisContainerImageTags.RedisInsightImage"/> container image. 322.WithImage(RedisContainerImageTags.RedisInsightImage, RedisContainerImageTags.RedisInsightTag) 323.WithImageRegistry(RedisContainerImageTags.RedisInsightRegistry)
Aspire.Hosting.Redis.Tests (18)
AddRedisTests.cs (18)
53Assert.Equal(RedisContainerImageTags.Tag, containerAnnotation.Tag); 54Assert.Equal(RedisContainerImageTags.Image, containerAnnotation.Image); 55Assert.Equal(RedisContainerImageTags.Registry, containerAnnotation.Registry); 81Assert.Equal(RedisContainerImageTags.Tag, containerAnnotation.Tag); 82Assert.Equal(RedisContainerImageTags.Image, containerAnnotation.Image); 83Assert.Equal(RedisContainerImageTags.Registry, containerAnnotation.Registry); 161Assert.Equal($"{RedisContainerImageTags.Registry}/{RedisContainerImageTags.Image}:{RedisContainerImageTags.Tag}", manifest["image"]!.GetValue<string>()); 186Assert.Equal($"{RedisContainerImageTags.Registry}/{RedisContainerImageTags.Image}:{RedisContainerImageTags.Tag}", manifest["image"]!.GetValue<string>()); 215Assert.Equal($"{RedisContainerImageTags.Registry}/{RedisContainerImageTags.Image}:{RedisContainerImageTags.Tag}", manifest["image"]!.GetValue<string>()); 241Assert.Equal($"{RedisContainerImageTags.Registry}/{RedisContainerImageTags.Image}:{RedisContainerImageTags.Tag}", manifest["image"]!.GetValue<string>());