feat: increase kubernetes version for tests (#560)

This commit is contained in:
MacLikorne
2022-01-18 17:42:41 +01:00
committed by GitHub
parent aeead3b43c
commit 09a1163410
2 changed files with 2 additions and 2 deletions

View File

@@ -23,7 +23,7 @@ use crate::utilities::{build_platform_local_docker, FuncTestsSecrets};
pub const AWS_REGION_FOR_S3: &str = "eu-west-3";
pub const AWS_TEST_REGION: &str = "eu-west-3";
pub const AWS_KUBERNETES_MAJOR_VERSION: u8 = 1;
pub const AWS_KUBERNETES_MINOR_VERSION: u8 = 19;
pub const AWS_KUBERNETES_MINOR_VERSION: u8 = 20;
pub const AWS_KUBERNETES_VERSION: &'static str =
formatcp!("{}.{}", AWS_KUBERNETES_MAJOR_VERSION, AWS_KUBERNETES_MINOR_VERSION);
pub const AWS_DATABASE_INSTANCE_TYPE: &str = "db.t3.micro";

View File

@@ -21,7 +21,7 @@ use tracing::error;
pub const SCW_TEST_ZONE: ScwZone = ScwZone::Paris2;
pub const SCW_KUBERNETES_MAJOR_VERSION: u8 = 1;
pub const SCW_KUBERNETES_MINOR_VERSION: u8 = 19;
pub const SCW_KUBERNETES_MINOR_VERSION: u8 = 20;
pub const SCW_KUBERNETES_VERSION: &'static str =
formatcp!("{}.{}", SCW_KUBERNETES_MAJOR_VERSION, SCW_KUBERNETES_MINOR_VERSION);
pub const SCW_MANAGED_DATABASE_INSTANCE_TYPE: &str = "db-dev-s";