deckhouse icon indicating copy to clipboard operation
deckhouse copied to clipboard

Release v1.61.5

Open deckhouse-BOaTswain opened this issue 7 months ago • 23 comments

:robot: A dedicated issue to run tests and deploy release v1.61.5.


Release issue commands and options

You can trigger release related actions by commenting on this issue:

  • /deploy/<channel>[/<editions>] will publish built images into the release channel.
    • channel is one of alpha | beta | early-access | stable | rock-solid
    • editions is a comma-separated list of editions ce | ee | fe | be | se
  • /suspend/<channel> will suspend released version.
    • channel is one of alpha | beta | early-access | stable | rock-solid
  • /e2e/run/<provider> git_ref will run e2e using provider and an install image built from git_ref.
    • provider is one of aws | azure | eks | gcp | openstack | static | vsphere | yandex-cloud
    • git_ref is a tag v1.61.5 | test-v1.61.5* or a branch main | release-1.61
  • /e2e/run/<provider> git_ref_1 git_ref_2 will run e2e using provider and git_ref_1 and then switch to git_ref_2.
    • provider is one of aws | azure | eks | gcp | openstack | static | vsphere | yandex-cloud
    • git_ref_1 is a release-* or main branch
    • git_ref_2 is a release-* or main branch
  • /e2e/use/k8s/<version> specifies which Kubernetes version to use for e2e test.
    • version is one of 1.25 | 1.26 | 1.27 | 1.28 | 1.29 | 1.30 | Automatic
  • /build git_ref will run build for release related refs.
    • git_ref is a tag v1.61.5 | test-v1.61.5* or a branch main | release-1.61

Note 1: A single command /e2e/run/<provider> will run e2e with default CRI 'containerd' and Kubernetes version '1.25'. Put /e2e/use options below /e2e/run command to set specific CRI and Kubernetes version. E.g.:

/e2e/run/aws main
/e2e/use/k8s/1.27
/e2e/use/k8s/1.29

This comment will run 2 e2e jobs on AWS with containerd
and with Kubernetes version 1.20 and 1.23 using image built from main branch.
/e2e/run/aws release-1.35 release-1.36
/e2e/use/k8s/1.27

This comment will create cluster in AWS using Deckhouse built from release-1.35 branch
and then switch to images built from release-1.36 branch.
'use' options are supported, cluster will use containerd and Kubernetes version 1.23.

Note 2: 'deploy', 'suspend' and 'e2e' commands should run after 'build FE' job is finished.

Note 3: No autobuild for release branch. Run this command after cherry-picking into release branch:

/build release-1.61

deckhouse-BOaTswain avatar Jun 27 '24 08:06 deckhouse-BOaTswain