2023-03-28 22:48:58 +00:00
|
|
|
// Copyright (c) HashiCorp, Inc.
|
2023-08-11 13:12:13 +00:00
|
|
|
// SPDX-License-Identifier: BUSL-1.1
|
2023-03-28 22:48:58 +00:00
|
|
|
|
2022-06-03 17:07:37 +00:00
|
|
|
//go:build !consulent
|
|
|
|
// +build !consulent
|
|
|
|
|
|
|
|
package utils
|
|
|
|
|
2023-01-11 21:34:27 +00:00
|
|
|
const (
|
2023-08-22 14:46:03 +00:00
|
|
|
defaultImageName = DefaultImageNameCE
|
2023-01-11 21:34:27 +00:00
|
|
|
ImageVersionSuffix = ""
|
2023-05-16 19:57:24 +00:00
|
|
|
isInEnterpriseRepo = false
|
2023-01-11 21:34:27 +00:00
|
|
|
)
|