mirror of
https://github.com/gitpod-io/gitpod.git
synced 2025-12-08 17:36:30 +00:00
27 lines
743 B
Go
27 lines
743 B
Go
// 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:40896624ea61e7b4ae748825826f8d87099fd3802e3c0afd5d9b746849c733af"
|
|
|
|
ExporterRegistryRepo = "quay.io"
|
|
ExporterRegistryImage = "oliver006/redis_exporter"
|
|
ExporterImageDigest = "sha256:dbd410eb9255016c9440b40b8fa18872fdf0e7972d06fc1df8d5b120d35efe05"
|
|
|
|
ExporterContainerName = "exporter"
|
|
ExporterPortName = "exporter"
|
|
ExporterPort = 9500
|
|
)
|