talos

Форк
0
28 строк · 1.1 Кб
1
// This Source Code Form is subject to the terms of the Mozilla Public
2
// License, v. 2.0. If a copy of the MPL was not distributed with this
3
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
4

5
// Package talos18 provides compatibility constants for Talos 1.8.
6
package talos18
7

8
import (
9
	"github.com/blang/semver/v4"
10
)
11

12
// MajorMinor is the major.minor version of Talos 1.8.
13
var MajorMinor = [2]uint64{1, 8}
14

15
// MinimumHostUpgradeVersion is the minimum version of Talos that can be upgraded to 1.8.
16
var MinimumHostUpgradeVersion = semver.MustParse("1.5.0")
17

18
// MaximumHostDowngradeVersion is the maximum (not inclusive) version of Talos that can be downgraded to 1.8.
19
var MaximumHostDowngradeVersion = semver.MustParse("1.10.0")
20

21
// DeniedHostUpgradeVersions are the versions of Talos that cannot be upgraded to 1.8.
22
var DeniedHostUpgradeVersions = []semver.Version{}
23

24
// MinimumKubernetesVersion is the minimum version of Kubernetes is supported with 1.8.
25
var MinimumKubernetesVersion = semver.MustParse("1.26.0")
26

27
// MaximumKubernetesVersion is the maximum version of Kubernetes is supported with 1.8.
28
var MaximumKubernetesVersion = semver.MustParse("1.31.99")
29

Использование cookies

Мы используем файлы cookie в соответствии с Политикой конфиденциальности и Политикой использования cookies.

Нажимая кнопку «Принимаю», Вы даете АО «СберТех» согласие на обработку Ваших персональных данных в целях совершенствования нашего веб-сайта и Сервиса GitVerse, а также повышения удобства их использования.

Запретить использование cookies Вы можете самостоятельно в настройках Вашего браузера.