mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-12-26 07:59:37 -05:00
Make wording around license less verbose
This commit is contained in:
parent
91655e1bcb
commit
a6d201b761
@ -37,7 +37,7 @@ func NewChecker(quotaChecker QuotaChecker, fileHandler file.Handler) *Checker {
|
|||||||
func (c *Checker) CheckLicense(ctx context.Context, provider cloudprovider.Provider, providerCfg config.ProviderConfig, printer func(string, ...any)) error {
|
func (c *Checker) CheckLicense(ctx context.Context, provider cloudprovider.Provider, providerCfg config.ProviderConfig, printer func(string, ...any)) error {
|
||||||
licenseID, err := FromFile(c.fileHandler, constants.LicenseFilename)
|
licenseID, err := FromFile(c.fileHandler, constants.LicenseFilename)
|
||||||
if errors.Is(err, fs.ErrNotExist) {
|
if errors.Is(err, fs.ErrNotExist) {
|
||||||
printer("Unable to find license file. Assuming community license.\n")
|
printer("Using community license.\n")
|
||||||
licenseID = CommunityLicense
|
licenseID = CommunityLicense
|
||||||
} else if err != nil {
|
} else if err != nil {
|
||||||
printer("Error: %v\nContinuing with community license.\n", err)
|
printer("Error: %v\nContinuing with community license.\n", err)
|
||||||
@ -63,7 +63,6 @@ func (c *Checker) CheckLicense(ctx context.Context, provider cloudprovider.Provi
|
|||||||
printer("Unable to contact license server.\n")
|
printer("Unable to contact license server.\n")
|
||||||
printer("Please keep your vCPU quota in mind.\n")
|
printer("Please keep your vCPU quota in mind.\n")
|
||||||
} else if licenseID == CommunityLicense {
|
} else if licenseID == CommunityLicense {
|
||||||
printer("You can use Constellation to create services for internal consumption.\n")
|
|
||||||
printer("For details, see https://docs.edgeless.systems/constellation/overview/license\n")
|
printer("For details, see https://docs.edgeless.systems/constellation/overview/license\n")
|
||||||
} else {
|
} else {
|
||||||
printer("Please keep your vCPU quota (%d) in mind.\n", quotaResp.Quota)
|
printer("Please keep your vCPU quota (%d) in mind.\n", quotaResp.Quota)
|
||||||
|
Loading…
Reference in New Issue
Block a user