// 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:becb6b720c0ab911b5a8daeb87568e064587f4153d79149493d63f09c21d93a1" ExporterRegistryRepo = "quay.io" ExporterRegistryImage = "oliver006/redis_exporter" ExporterImageDigest = "sha256:1a8f5e48b2af0fb02d182be3ddd623e7e39881b6464bdb5bf843b1f6d45ed050" ExporterContainerName = "exporter" ExporterPortName = "exporter" ExporterPort = 9500 )