// 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:2a6024ace7201aab325c7d6d829cde01481404f56bd5d3941cae9db093a57772" ExporterRegistryImage = "chainguard/prometheus-redis-exporter" ExporterImageDigest = "sha256:154e581b984808dfff7c3fc300c09e7a4f34cc8ab8be8341758578bb8397206a" ExporterContainerName = "exporter" ExporterPortName = "exporter" ExporterPort = 9500 )