mirror of
https://github.com/jlengrand/engine.git
synced 2026-03-10 08:11:21 +00:00
368 lines
10 KiB
Rust
368 lines
10 KiB
Rust
use tera::Context as TeraContext;
|
|
|
|
use crate::cloud_provider::service::{
|
|
check_service_version, default_tera_context, delete_stateful_service, deploy_stateful_service, get_tfstate_name,
|
|
get_tfstate_suffix, scale_down_database, send_progress_on_long_task, Action, Create, Database, DatabaseOptions,
|
|
DatabaseType, Delete, Helm, Pause, Service, ServiceType, StatefulService, Terraform,
|
|
};
|
|
use crate::cloud_provider::utilities::{get_self_hosted_mongodb_version, print_action, sanitize_name};
|
|
use crate::cloud_provider::DeploymentTarget;
|
|
use crate::cmd::helm::Timeout;
|
|
use crate::cmd::kubectl;
|
|
use crate::error::{EngineError, EngineErrorScope};
|
|
use crate::events::{ToTransmitter, Transmitter};
|
|
use crate::models::DatabaseMode::MANAGED;
|
|
use crate::models::{Context, Listen, Listener, Listeners};
|
|
use ::function_name::named;
|
|
|
|
pub struct MongoDB {
|
|
context: Context,
|
|
id: String,
|
|
action: Action,
|
|
name: String,
|
|
version: String,
|
|
fqdn: String,
|
|
fqdn_id: String,
|
|
total_cpus: String,
|
|
total_ram_in_mib: u32,
|
|
database_instance_type: String,
|
|
options: DatabaseOptions,
|
|
listeners: Listeners,
|
|
}
|
|
|
|
impl MongoDB {
|
|
pub fn new(
|
|
context: Context,
|
|
id: &str,
|
|
action: Action,
|
|
name: &str,
|
|
version: &str,
|
|
fqdn: &str,
|
|
fqdn_id: &str,
|
|
total_cpus: String,
|
|
total_ram_in_mib: u32,
|
|
database_instance_type: &str,
|
|
options: DatabaseOptions,
|
|
listeners: Listeners,
|
|
) -> Self {
|
|
MongoDB {
|
|
context,
|
|
action,
|
|
id: id.to_string(),
|
|
name: name.to_string(),
|
|
version: version.to_string(),
|
|
fqdn: fqdn.to_string(),
|
|
fqdn_id: fqdn_id.to_string(),
|
|
total_cpus,
|
|
total_ram_in_mib,
|
|
database_instance_type: database_instance_type.to_string(),
|
|
options,
|
|
listeners,
|
|
}
|
|
}
|
|
|
|
fn matching_correct_version(&self) -> Result<String, EngineError> {
|
|
check_service_version(get_self_hosted_mongodb_version(self.version()), self)
|
|
}
|
|
|
|
fn cloud_provider_name(&self) -> &str {
|
|
"scaleway"
|
|
}
|
|
|
|
fn struct_name(&self) -> &str {
|
|
"mongodb"
|
|
}
|
|
}
|
|
|
|
impl StatefulService for MongoDB {
|
|
fn is_managed_service(&self) -> bool {
|
|
self.options.mode == MANAGED
|
|
}
|
|
}
|
|
|
|
impl ToTransmitter for MongoDB {
|
|
fn to_transmitter(&self) -> Transmitter {
|
|
Transmitter::Database(
|
|
self.id().to_string(),
|
|
self.service_type().to_string(),
|
|
self.name().to_string(),
|
|
)
|
|
}
|
|
}
|
|
|
|
impl Service for MongoDB {
|
|
fn context(&self) -> &Context {
|
|
&self.context
|
|
}
|
|
|
|
fn service_type(&self) -> ServiceType {
|
|
ServiceType::Database(DatabaseType::MongoDB(&self.options))
|
|
}
|
|
|
|
fn id(&self) -> &str {
|
|
self.id.as_str()
|
|
}
|
|
|
|
fn name(&self) -> &str {
|
|
self.name.as_str()
|
|
}
|
|
|
|
fn sanitized_name(&self) -> String {
|
|
sanitize_name("mongodb", self.name())
|
|
}
|
|
|
|
fn version(&self) -> String {
|
|
self.version.clone()
|
|
}
|
|
|
|
fn action(&self) -> &Action {
|
|
&self.action
|
|
}
|
|
|
|
fn private_port(&self) -> Option<u16> {
|
|
Some(self.options.port)
|
|
}
|
|
|
|
fn start_timeout(&self) -> Timeout<u32> {
|
|
Timeout::Value(600)
|
|
}
|
|
|
|
fn total_cpus(&self) -> String {
|
|
self.total_cpus.to_string()
|
|
}
|
|
|
|
fn cpu_burst(&self) -> String {
|
|
unimplemented!()
|
|
}
|
|
|
|
fn total_ram_in_mib(&self) -> u32 {
|
|
self.total_ram_in_mib
|
|
}
|
|
|
|
fn min_instances(&self) -> u32 {
|
|
1
|
|
}
|
|
|
|
fn max_instances(&self) -> u32 {
|
|
1
|
|
}
|
|
|
|
fn publicly_accessible(&self) -> bool {
|
|
self.options.publicly_accessible
|
|
}
|
|
|
|
fn tera_context(&self, target: &DeploymentTarget) -> Result<TeraContext, EngineError> {
|
|
let kubernetes = target.kubernetes;
|
|
let environment = target.environment;
|
|
|
|
let mut context = default_tera_context(self, kubernetes, environment);
|
|
|
|
// we need the kubernetes config file to store tfstates file in kube secrets
|
|
let kube_config_file_path = match kubernetes.get_kubeconfig_file_path() {
|
|
Ok(path) => path,
|
|
Err(e) => {
|
|
return Err(e.to_legacy_engine_error());
|
|
}
|
|
};
|
|
context.insert("kubeconfig_path", &kube_config_file_path);
|
|
|
|
kubectl::kubectl_exec_create_namespace_without_labels(
|
|
&environment.namespace(),
|
|
kube_config_file_path.as_str(),
|
|
kubernetes.cloud_provider().credentials_environment_variables(),
|
|
);
|
|
|
|
context.insert("namespace", environment.namespace());
|
|
|
|
let version = self.matching_correct_version()?;
|
|
context.insert("version", &version);
|
|
|
|
for (k, v) in kubernetes.cloud_provider().tera_context_environment_variables() {
|
|
context.insert(k, v);
|
|
}
|
|
|
|
context.insert("kubernetes_cluster_id", kubernetes.id());
|
|
context.insert("kubernetes_cluster_name", kubernetes.name());
|
|
|
|
context.insert("fqdn_id", self.fqdn_id.as_str());
|
|
context.insert(
|
|
"fqdn",
|
|
self.fqdn(target, &self.fqdn, self.is_managed_service()).as_str(),
|
|
);
|
|
context.insert("service_name", self.fqdn_id.as_str());
|
|
context.insert("database_db_name", self.name.as_str());
|
|
context.insert("database_login", self.options.login.as_str());
|
|
context.insert("database_password", self.options.password.as_str());
|
|
context.insert("database_port", &self.private_port());
|
|
context.insert("database_disk_size_in_gib", &self.options.disk_size_in_gib);
|
|
context.insert("database_instance_type", &self.database_instance_type);
|
|
context.insert("database_disk_type", &self.options.database_disk_type);
|
|
context.insert("database_ram_size_in_mib", &self.total_ram_in_mib);
|
|
context.insert("database_total_cpus", &self.total_cpus);
|
|
context.insert("database_fqdn", &self.options.host.as_str());
|
|
context.insert("database_id", &self.id());
|
|
context.insert("tfstate_suffix_name", &get_tfstate_suffix(self));
|
|
context.insert("tfstate_name", &get_tfstate_name(self));
|
|
context.insert("publicly_accessible", &self.options.publicly_accessible);
|
|
|
|
if self.context.resource_expiration_in_seconds().is_some() {
|
|
context.insert(
|
|
"resource_expiration_in_seconds",
|
|
&self.context.resource_expiration_in_seconds(),
|
|
)
|
|
}
|
|
|
|
Ok(context)
|
|
}
|
|
|
|
fn selector(&self) -> Option<String> {
|
|
Some(format!("app={}", self.sanitized_name()))
|
|
}
|
|
|
|
fn engine_error_scope(&self) -> EngineErrorScope {
|
|
EngineErrorScope::Database(
|
|
self.id().to_string(),
|
|
self.service_type().name().to_string(),
|
|
self.name().to_string(),
|
|
)
|
|
}
|
|
}
|
|
|
|
impl Database for MongoDB {}
|
|
|
|
impl Helm for MongoDB {
|
|
fn helm_selector(&self) -> Option<String> {
|
|
self.selector()
|
|
}
|
|
|
|
fn helm_release_name(&self) -> String {
|
|
crate::string::cut(format!("mongodb-{}", self.id()), 50)
|
|
}
|
|
|
|
fn helm_chart_dir(&self) -> String {
|
|
format!("{}/common/services/mongodb", self.context.lib_root_dir())
|
|
}
|
|
|
|
fn helm_chart_values_dir(&self) -> String {
|
|
format!("{}/scaleway/chart_values/mongodb", self.context.lib_root_dir())
|
|
}
|
|
|
|
fn helm_chart_external_name_service_dir(&self) -> String {
|
|
format!("{}/common/charts/external-name-svc", self.context.lib_root_dir())
|
|
}
|
|
}
|
|
|
|
impl Terraform for MongoDB {
|
|
fn terraform_common_resource_dir_path(&self) -> String {
|
|
format!("{}/scaleway/services/common", self.context.lib_root_dir())
|
|
}
|
|
|
|
fn terraform_resource_dir_path(&self) -> String {
|
|
format!("{}/scaleway/services/mongodb", self.context.lib_root_dir())
|
|
}
|
|
}
|
|
|
|
impl Create for MongoDB {
|
|
#[named]
|
|
fn on_create(&self, target: &DeploymentTarget) -> Result<(), EngineError> {
|
|
print_action(
|
|
self.cloud_provider_name(),
|
|
self.struct_name(),
|
|
function_name!(),
|
|
self.name(),
|
|
);
|
|
|
|
send_progress_on_long_task(self, crate::cloud_provider::service::Action::Create, || {
|
|
deploy_stateful_service(target, self)
|
|
})
|
|
}
|
|
|
|
fn on_create_check(&self) -> Result<(), EngineError> {
|
|
self.check_domains(self.listeners.clone(), vec![self.fqdn.as_str()])
|
|
}
|
|
|
|
#[named]
|
|
fn on_create_error(&self, _target: &DeploymentTarget) -> Result<(), EngineError> {
|
|
print_action(
|
|
self.cloud_provider_name(),
|
|
self.struct_name(),
|
|
function_name!(),
|
|
self.name(),
|
|
);
|
|
Ok(())
|
|
}
|
|
}
|
|
|
|
impl Pause for MongoDB {
|
|
#[named]
|
|
fn on_pause(&self, target: &DeploymentTarget) -> Result<(), EngineError> {
|
|
print_action(
|
|
self.cloud_provider_name(),
|
|
self.struct_name(),
|
|
function_name!(),
|
|
self.name(),
|
|
);
|
|
|
|
send_progress_on_long_task(self, crate::cloud_provider::service::Action::Pause, || {
|
|
scale_down_database(target, self, 0)
|
|
})
|
|
}
|
|
|
|
fn on_pause_check(&self) -> Result<(), EngineError> {
|
|
Ok(())
|
|
}
|
|
|
|
#[named]
|
|
fn on_pause_error(&self, _target: &DeploymentTarget) -> Result<(), EngineError> {
|
|
print_action(
|
|
self.cloud_provider_name(),
|
|
self.struct_name(),
|
|
function_name!(),
|
|
self.name(),
|
|
);
|
|
|
|
Ok(())
|
|
}
|
|
}
|
|
|
|
impl Delete for MongoDB {
|
|
#[named]
|
|
fn on_delete(&self, target: &DeploymentTarget) -> Result<(), EngineError> {
|
|
print_action(
|
|
self.cloud_provider_name(),
|
|
self.struct_name(),
|
|
function_name!(),
|
|
self.name(),
|
|
);
|
|
|
|
send_progress_on_long_task(self, crate::cloud_provider::service::Action::Delete, || {
|
|
delete_stateful_service(target, self)
|
|
})
|
|
}
|
|
|
|
fn on_delete_check(&self) -> Result<(), EngineError> {
|
|
Ok(())
|
|
}
|
|
|
|
#[named]
|
|
fn on_delete_error(&self, _target: &DeploymentTarget) -> Result<(), EngineError> {
|
|
print_action(
|
|
self.cloud_provider_name(),
|
|
self.struct_name(),
|
|
function_name!(),
|
|
self.name(),
|
|
);
|
|
Ok(())
|
|
}
|
|
}
|
|
|
|
impl Listen for MongoDB {
|
|
fn listeners(&self) -> &Listeners {
|
|
&self.listeners
|
|
}
|
|
|
|
fn add_listener(&mut self, listener: Listener) {
|
|
self.listeners.push(listener);
|
|
}
|
|
}
|