mirror of
https://github.com/jlengrand/engine.git
synced 2026-03-10 08:11:21 +00:00
style: update libs and style
This commit is contained in:
committed by
Benjamin Chastanier
parent
3e56a4bce3
commit
abab54ba50
@@ -1,6 +1,6 @@
|
||||
use crate::cloud_provider::helm::{
|
||||
get_chart_namespace, get_engine_helm_action_from_location, ChartInfo, ChartSetValue, ChartValuesGenerated, CommonChart, CoreDNSConfigChart, HelmAction,
|
||||
HelmChart, HelmChartNamespaces, PrometheusOperatorConfigChart,
|
||||
get_chart_namespace, get_engine_helm_action_from_location, ChartInfo, ChartSetValue, ChartValuesGenerated,
|
||||
CommonChart, CoreDNSConfigChart, HelmAction, HelmChart, HelmChartNamespaces, PrometheusOperatorConfigChart,
|
||||
};
|
||||
use crate::cloud_provider::qovery::{get_qovery_app_version, EngineLocation, QoveryAgent, QoveryAppName, QoveryEngine};
|
||||
use crate::cloud_provider::scaleway::application::{Region, Zone};
|
||||
|
||||
41
test_utilities/Cargo.lock
generated
41
test_utilities/Cargo.lock
generated
@@ -1867,6 +1867,15 @@ dependencies = [
|
||||
"regex",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "passwords"
|
||||
version = "3.1.8"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "3911e67d9a111aea69d3457a13de9a03d9fd920bc30cff110526eb5259ded58f"
|
||||
dependencies = [
|
||||
"random-pick",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "percent-encoding"
|
||||
version = "1.0.1"
|
||||
@@ -2318,6 +2327,37 @@ dependencies = [
|
||||
"rand_core 0.3.1",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "random-number"
|
||||
version = "0.1.6"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "0b6c791ad2f753537ebdc0300173be0fc4821eaa628feb2c404f8acaba612d57"
|
||||
dependencies = [
|
||||
"proc-macro-hack",
|
||||
"rand 0.8.3",
|
||||
"random-number-macro-impl",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "random-number-macro-impl"
|
||||
version = "0.1.5"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "fc6653af545be5b0b1a2b4c19ef0f0cb288b2e5c024016a8eb0fe2efa8d9f8de"
|
||||
dependencies = [
|
||||
"proc-macro-hack",
|
||||
"quote 1.0.8",
|
||||
"syn 1.0.73",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "random-pick"
|
||||
version = "1.2.14"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "420e471026e6ab33d59869853453cdbfacee6bd941710ed3bd6007a9c67e4efa"
|
||||
dependencies = [
|
||||
"random-number",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "rayon"
|
||||
version = "1.5.0"
|
||||
@@ -3176,6 +3216,7 @@ dependencies = [
|
||||
"gethostname",
|
||||
"hashicorp_vault",
|
||||
"maplit",
|
||||
"passwords",
|
||||
"qovery-engine",
|
||||
"rand 0.7.3",
|
||||
"reqwest 0.10.8",
|
||||
|
||||
@@ -14,7 +14,7 @@ use qovery_engine::models::Context;
|
||||
|
||||
use crate::cloudflare::dns_provider_cloudflare;
|
||||
use crate::utilities::{build_platform_local_docker, FuncTestsSecrets};
|
||||
use qovery_engine::cloud_provider::qovery::EngineLocation::ClientSide;
|
||||
use qovery_engine::cloud_provider::qovery::EngineLocation;
|
||||
|
||||
pub const AWS_QOVERY_ORGANIZATION_ID: &str = "u8nb94c7fwxzr2jt";
|
||||
pub const AWS_REGION_FOR_S3: &str = "eu-west-3";
|
||||
@@ -153,7 +153,7 @@ pub fn eks_options(secrets: FuncTestsSecrets) -> Options {
|
||||
elasticache_cidr_subnet: "23".to_string(),
|
||||
elasticsearch_cidr_subnet: "23".to_string(),
|
||||
qovery_api_url: secrets.QOVERY_API_URL.unwrap(),
|
||||
qovery_engine_location: ClientSide,
|
||||
qovery_engine_location: EngineLocation::ClientSide,
|
||||
engine_version_controller_token: secrets.QOVERY_ENGINE_CONTROLLER_TOKEN.unwrap(),
|
||||
agent_version_controller_token: secrets.QOVERY_AGENT_CONTROLLER_TOKEN.unwrap(),
|
||||
grafana_admin_user: "admin".to_string(),
|
||||
|
||||
Reference in New Issue
Block a user