mirror of
https://github.com/gitpod-io/gitpod.git
synced 2025-12-08 17:36:30 +00:00
* switch redis-exporter docker image * add comments * using old version for test update * update index (#20506) Co-authored-by: iQQBot <8299500+iQQBot@users.noreply.github.com> --------- Co-authored-by: Robo Quat <87151047+roboquat@users.noreply.github.com> Co-authored-by: iQQBot <8299500+iQQBot@users.noreply.github.com>
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:2ca5da94e19341085fda0c4bf610689ba1f0bea4e009cb9dad605a1c6195e5d3"
|
|
|
|
ExporterRegistryRepo = "quay.io"
|
|
ExporterRegistryImage = "oliver006/redis_exporter"
|
|
ExporterImageDigest = "sha256:120f7ec77293459ccfdad66bb1db75ab72e8bfeab99f58b1cc2564cadcd7a9e7"
|
|
|
|
ExporterContainerName = "exporter"
|
|
ExporterPortName = "exporter"
|
|
ExporterPort = 9500
|
|
)
|