mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-12-12 01:14:28 -05:00
20 lines
643 B
Go
20 lines
643 B
Go
|
/*
|
||
|
Copyright (c) Edgeless Systems GmbH
|
||
|
|
||
|
SPDX-License-Identifier: AGPL-3.0-only
|
||
|
*/
|
||
|
|
||
|
// Package upgrade tests that the CLI's upgrade apply command works as expected and
|
||
|
// the operators eventually upgrade all nodes inside the cluster.
|
||
|
// The test is written as a go test because:
|
||
|
// 1. the helm cli does not directly provide the chart version of a release
|
||
|
//
|
||
|
// 2. the image patch needs to be parsed from the image-api's info.json
|
||
|
//
|
||
|
// 3. there is some logic required to setup the test correctly:
|
||
|
//
|
||
|
// - set microservice, k8s version correctly depending on input
|
||
|
//
|
||
|
// - set or fetch measurements depending on target image
|
||
|
package upgrade
|