Deploy operator-lifecycle-manager (OLM), node-maintenance-operator (NMO) and constellation-node-operator

Signed-off-by: Malte Poll <mp@edgeless.systems>
This commit is contained in:
Malte Poll 2022-08-04 16:15:52 +02:00 committed by Malte Poll
parent 18a89d2881
commit 2c7129987a
23 changed files with 8756 additions and 32 deletions

View file

@ -30,11 +30,15 @@ func IsSupportedK8sVersion(version string) bool {
const (
// Constellation images.
// These images are built in a way that they support all versions currently listed in VersionConfigs.
JoinImage = "ghcr.io/edgelesssys/constellation/join-service:v1.4.0"
AccessManagerImage = "ghcr.io/edgelesssys/constellation/access-manager:v1.4.0"
KmsImage = "ghcr.io/edgelesssys/constellation/kmsserver:v1.4.0"
VerificationImage = "ghcr.io/edgelesssys/constellation/verification-service:v1.4.0"
GcpGuestImage = "ghcr.io/edgelesssys/gcp-guest-agent:latest"
JoinImage = "ghcr.io/edgelesssys/constellation/join-service:v1.4.0"
AccessManagerImage = "ghcr.io/edgelesssys/constellation/access-manager:v1.4.0"
KmsImage = "ghcr.io/edgelesssys/constellation/kmsserver:v1.4.0"
VerificationImage = "ghcr.io/edgelesssys/constellation/verification-service:v1.4.0"
GcpGuestImage = "ghcr.io/edgelesssys/gcp-guest-agent:latest"
NodeOperatorCatalogImage = "ghcr.io/edgelesssys/constellation/node-operator-catalog"
NodeOperatorVersion = "v1.4.1-0.20220809082533-41bdd362a18a"
NodeMaintenanceOperatorCatalogImage = "quay.io/medik8s/node-maintenance-operator-catalog"
NodeMaintenanceOperatorVersion = "v0.13.0"
// currently supported versions.
V1_22 ValidK8sVersion = "1.22"