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. 59/// This version of the package defaults to the <inheritdoc cref="RedisContainerImageTags.Tag"/> tag of the <inheritdoc cref="RedisContainerImageTags.Image"/> container image. 95.WithImage(RedisContainerImageTags.Image, RedisContainerImageTags.Tag) 96.WithImageRegistry(RedisContainerImageTags.Registry) 206/// This version of the package defaults to the <inheritdoc cref="RedisContainerImageTags.RedisCommanderTag"/> tag of the <inheritdoc cref="RedisContainerImageTags.RedisCommanderImage"/> container image. 229.WithImage(RedisContainerImageTags.RedisCommanderImage, RedisContainerImageTags.RedisCommanderTag) 230.WithImageRegistry(RedisContainerImageTags.RedisCommanderRegistry) 284/// This version of the package defaults to the <inheritdoc cref="RedisContainerImageTags.RedisInsightTag"/> tag of the <inheritdoc cref="RedisContainerImageTags.RedisInsightImage"/> container image. 307.WithImage(RedisContainerImageTags.RedisInsightImage, RedisContainerImageTags.RedisInsightTag) 308.WithImageRegistry(RedisContainerImageTags.RedisInsightRegistry)
Aspire.Hosting.Redis.Tests (18)
AddRedisTests.cs (18)
52Assert.Equal(RedisContainerImageTags.Tag, containerAnnotation.Tag); 53Assert.Equal(RedisContainerImageTags.Image, containerAnnotation.Image); 54Assert.Equal(RedisContainerImageTags.Registry, containerAnnotation.Registry); 80Assert.Equal(RedisContainerImageTags.Tag, containerAnnotation.Tag); 81Assert.Equal(RedisContainerImageTags.Image, containerAnnotation.Image); 82Assert.Equal(RedisContainerImageTags.Registry, containerAnnotation.Registry); 160Assert.Equal($"{RedisContainerImageTags.Registry}/{RedisContainerImageTags.Image}:{RedisContainerImageTags.Tag}", manifest["image"]!.GetValue<string>()); 185Assert.Equal($"{RedisContainerImageTags.Registry}/{RedisContainerImageTags.Image}:{RedisContainerImageTags.Tag}", manifest["image"]!.GetValue<string>()); 214Assert.Equal($"{RedisContainerImageTags.Registry}/{RedisContainerImageTags.Image}:{RedisContainerImageTags.Tag}", manifest["image"]!.GetValue<string>()); 240Assert.Equal($"{RedisContainerImageTags.Registry}/{RedisContainerImageTags.Image}:{RedisContainerImageTags.Tag}", manifest["image"]!.GetValue<string>());