deps: update version to v1.2.8

This commit is contained in:
release[bot] 2023-01-27 10:45:49 +00:00
parent 940c5331dd
commit ea86eb22de
15 changed files with 28 additions and 28 deletions

View file

@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.11)
project(constellation LANGUAGES C VERSION 1.2.7)
project(constellation LANGUAGES C VERSION 1.2.8)
set(CLI_BUILD_TAGS "" CACHE STRING "Tags passed to go build of Constellation CLI.")
enable_testing()

View file

@ -2,54 +2,54 @@ apiVersion: v2
name: constellation-services
description: A chart to deploy all microservices that are part of a valid constellation cluster
type: application
version: 1.2.7
version: 1.2.8
dependencies:
- name: keyservice
version: 1.2.7
version: 1.2.8
tags:
- Azure
- GCP
- AWS
- QEMU
- name: join-service
version: 1.2.7
version: 1.2.8
tags:
- Azure
- GCP
- AWS
- QEMU
- name: ccm
version: 1.2.7
version: 1.2.8
tags:
- Azure
- GCP
- AWS
- name: cnm
version: 1.2.7
version: 1.2.8
tags:
- Azure
- name: autoscaler
version: 1.2.7
version: 1.2.8
tags:
- Azure
- GCP
- AWS
- name: verification-service
version: 1.2.7
version: 1.2.8
tags:
- Azure
- GCP
- AWS
- QEMU
- name: konnectivity
version: 1.2.7
version: 1.2.8
tags:
- Azure
- GCP
- AWS
- QEMU
- name: gcp-guest-agent
version: 1.2.7
version: 1.2.8
tags:
- GCP
- name: gcp-compute-persistent-disk-csi-driver

View file

@ -2,4 +2,4 @@ apiVersion: v2
name: autoscaler
description: A Helm chart to deploy the cluster autoscaler.
type: application
version: 1.2.7
version: 1.2.8

View file

@ -2,4 +2,4 @@ apiVersion: v2
name: ccm
description: A Helm chart to deploy the cloud controller manager.
type: application
version: 1.2.7
version: 1.2.8

View file

@ -2,4 +2,4 @@ apiVersion: v2
name: cnm
description: A chart to deploy cloud node manager for constellation
type: application
version: 1.2.7
version: 1.2.8

View file

@ -2,4 +2,4 @@ apiVersion: v2
name: gcp-guest-agent
description: A chart to deploy the GCP guest agent for Constellation
type: application
version: 1.2.7
version: 1.2.8

View file

@ -2,4 +2,4 @@ apiVersion: v2
name: join-service
description: A chart to deploy the Constellation join-service
type: application
version: 1.2.7
version: 1.2.8

View file

@ -2,4 +2,4 @@ apiVersion: v2
name: keyservice
description: A Helm chart to deploy the Constellation KeyService
type: application
version: 1.2.7
version: 1.2.8

View file

@ -2,4 +2,4 @@ apiVersion: v2
name: konnectivity
description: A chart to deploy konnectivity for Constellation
type: application
version: 1.2.7
version: 1.2.8

View file

@ -2,4 +2,4 @@ apiVersion: v2
name: verification-service
description: A Helm chart for Kubernetes
type: application
version: 1.2.7
version: 1.2.8

View file

@ -2,17 +2,17 @@ apiVersion: v2
name: constellation-operators
description: A Helm chart for Kubernetes
type: application
version: 1.2.7
version: 1.2.8
dependencies:
- name: node-maintenance-operator
version: 1.2.7
version: 1.2.8
tags:
- Azure
- GCP
- AWS
- QEMU
- name: constellation-operator
version: 1.2.7
version: 1.2.8
tags:
- Azure
- GCP

View file

@ -2,4 +2,4 @@ apiVersion: v2
name: constellation-operator
description: A Helm chart for Kubernetes
type: application
version: 1.2.7
version: 1.2.8

View file

@ -2,4 +2,4 @@ apiVersion: v2
name: node-maintenance-operator
description: A Helm chart for Kubernetes
type: application
version: 1.2.7
version: 1.2.8

View file

@ -10,5 +10,5 @@ package config
const (
// defaultImage is the default image for the enterprise build.
defaultImage = "v1.2.7"
defaultImage = "v1.2.8"
)

View file

@ -57,21 +57,21 @@ const (
// KonnectivityServerImage server image for konnectivity service.
KonnectivityServerImage = "registry.k8s.io/kas-network-proxy/proxy-server:v0.0.35@sha256:d863f7fd0da4392b9753dc6c9195a658e80d70e0be8c9adb410d77cf20b75c76" // renovate:container
// JoinImage image of Constellation join service.
JoinImage = "ghcr.io/edgelesssys/constellation/join-service:v1.2.7@sha256:61525ebb9fb32a4b528fa61ade1e51959d76be5944ae46a9e4397ffd476b222e" // renovate:container
JoinImage = "ghcr.io/edgelesssys/constellation/join-service:v1.2.8@sha256:e7f83020538735ebd3b2039fa7ab33929ddffc6c2fa5422792f26a252137aedd" // renovate:container
// KeyServiceImage image of Constellation KMS server.
KeyServiceImage = "ghcr.io/edgelesssys/constellation/kmsserver:v2.5.0-pre.0.20230112123617-d0e9f427d1ba@sha256:d4319308eb62e2ee079cc86858acdd1faccc404edec7bfabecf35861284a55f3" // renovate:container
// VerificationImage image of Constellation verification service.
VerificationImage = "ghcr.io/edgelesssys/constellation/verification-service:v1.2.7@sha256:864c7f67e94a762133eeeac3686256c3eef405f237ea0fe5d8cc1d0e81595104" // renovate:container
VerificationImage = "ghcr.io/edgelesssys/constellation/verification-service:v1.2.8@sha256:eac748abf12c5cd529136185692cd30fb33e16cd9d452e4189ee409de643d76d" // renovate:container
// GcpGuestImage image for GCP guest agent.
// Check for new versions at https://github.com/GoogleCloudPlatform/guest-agent/releases and update in /.github/workflows/build-gcp-guest-agent.yml.
GcpGuestImage = "ghcr.io/edgelesssys/gcp-guest-agent:20220927.00@sha256:3dea1ae3f162d2353e6584b325f0e325a39cda5f380f41e5a0ee43c6641d3905" // renovate:container
// ConstellationOperatorImage is the image for the constellation node operator.
ConstellationOperatorImage = "ghcr.io/edgelesssys/constellation/node-operator:v1.2.7@sha256:b62023d909676064923d440c82911e0e799e2ff4c7b46af918ce79cf014a5bb2" // renovate:container
ConstellationOperatorImage = "ghcr.io/edgelesssys/constellation/node-operator:v1.2.8@sha256:fc971a26771571098c09afb1642327aa3e715cf41b3ce5b0b614c5528cb663f7" // renovate:container
// NodeMaintenanceOperatorImage is the image for the node maintenance operator.
NodeMaintenanceOperatorImage = "quay.io/medik8s/node-maintenance-operator:v0.14.0@sha256:2dffb6ffdbbe997d317799fc709baf030d678bde0be0264931ff6b3e94fd89ab" // renovate:container
// QEMUMetadataImage image of QEMU metadata api service.
QEMUMetadataImage = "ghcr.io/edgelesssys/constellation/qemu-metadata-api:v1.2.7@sha256:3917e1e127088723ac9878b9e2a5b689af874afcd6f196811bb2d279acacbca9" // renovate:container
QEMUMetadataImage = "ghcr.io/edgelesssys/constellation/qemu-metadata-api:v1.2.8@sha256:3cbb51ecb768a9264381bcee4ccad99262444298e8ad71f5414ef3a4a334fcf9" // renovate:container
// LibvirtImage image that provides libvirt.
LibvirtImage = "ghcr.io/edgelesssys/constellation/libvirt:v2.2.0@sha256:81ddc30cd679a95379e94e2f154861d9112bcabfffa96330c09a4917693f7cce" // renovate:container