mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
37 lines
1.1 KiB
Go
37 lines
1.1 KiB
Go
|
/*
|
||
|
Copyright (c) Edgeless Systems GmbH
|
||
|
|
||
|
SPDX-License-Identifier: AGPL-3.0-only
|
||
|
*/
|
||
|
package imageversion
|
||
|
|
||
|
// This file is only used if `go build` is used instead of Bazel.
|
||
|
// It contains placeholder values for the container images so that everything
|
||
|
// still compiles.
|
||
|
|
||
|
const (
|
||
|
joinServiceRegistry = "placeholder"
|
||
|
joinServicePrefix = "placeholder"
|
||
|
joinServiceName = "placeholder"
|
||
|
joinServiceDigest = "placeholder"
|
||
|
joinServiceTag = "placeholder"
|
||
|
|
||
|
keyServiceRegistry = "placeholder"
|
||
|
keyServicePrefix = "placeholder"
|
||
|
keyServiceName = "placeholder"
|
||
|
keyServiceDigest = "placeholder"
|
||
|
keyServiceTag = "placeholder"
|
||
|
|
||
|
verificationServiceRegistry = "placeholder"
|
||
|
verificationServicePrefix = "placeholder"
|
||
|
verificationServiceName = "placeholder"
|
||
|
verificationServiceDigest = "placeholder"
|
||
|
verificationServiceTag = "placeholder"
|
||
|
|
||
|
constellationNodeOperatorRegistry = "placeholder"
|
||
|
constellationNodeOperatorPrefix = "placeholder"
|
||
|
constellationNodeOperatorName = "placeholder"
|
||
|
constellationNodeOperatorDigest = "placeholder"
|
||
|
constellationNodeOperatorTag = "placeholder"
|
||
|
)
|