// Copyright (c) 2021 Gitpod GmbH. All rights reserved. // Licensed under the GNU Affero General Public License (AGPL). // See License.AGPL.txt in the project root for license information. package redis const ( Component = "redis" PortName = "api" Port = 6379 RegistryRepo = "cgr.dev" RegistryImage = "chainguard/redis" ContainerName = "redis" ImageDigest = "sha256:1b3949501b57ce4b9a0543b63e2289b62f04d0aa2c01d6dbe8777030a2c40c43" ExporterRegistryRepo = "quay.io" ExporterRegistryImage = "oliver006/redis_exporter" ExporterImageDigest = "sha256:88862b6fc5004ead3495c16d5ba548b14e898fe6d22e7c5b93bf3df83823a9a5" ExporterContainerName = "exporter" ExporterPortName = "exporter" ExporterPort = 9500 )