cli: use Bazel container images

This commit is contained in:
Malte Poll 2023-04-03 18:09:03 +02:00 committed by Malte Poll
parent bd889bd6a7
commit 9dfad32e33
19 changed files with 376 additions and 26 deletions

View file

@ -0,0 +1,24 @@
/*
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 (
qemuMetadataRegistry = "placeholder"
qemuMetadataPrefix = "placeholder"
qemuMetadataName = "placeholder"
qemuMetadataDigest = "placeholder"
qemuMetadataTag = "placeholder"
libvirtRegistry = "placeholder"
libvirtPrefix = "placeholder"
libvirtName = "placeholder"
libvirtDigest = "placeholder"
libvirtTag = "placeholder"
)