Compare commits
4 Commits
feat/gen-c
...
feat/okd_d
| Author | SHA1 | Date | |
|---|---|---|---|
| e04934fc22 | |||
| 5e4ceed91b | |||
| 84ae60fbbf | |||
| 41f1bca69c |
@@ -194,11 +194,3 @@ impl From<String> for InterpretError {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl From<serde_yaml::Error> for InterpretError {
|
|
||||||
fn from(value: serde_yaml::Error) -> Self {
|
|
||||||
Self {
|
|
||||||
msg: format!("InterpretError : {value}"),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -8,6 +8,7 @@ use kube::{
|
|||||||
api::{Api, AttachParams, DeleteParams, ListParams, Patch, PatchParams, ResourceExt},
|
api::{Api, AttachParams, DeleteParams, ListParams, Patch, PatchParams, ResourceExt},
|
||||||
config::{KubeConfigOptions, Kubeconfig},
|
config::{KubeConfigOptions, Kubeconfig},
|
||||||
core::ErrorResponse,
|
core::ErrorResponse,
|
||||||
|
error::DiscoveryError,
|
||||||
runtime::reflector::Lookup,
|
runtime::reflector::Lookup,
|
||||||
};
|
};
|
||||||
use kube::{api::DynamicObject, runtime::conditions};
|
use kube::{api::DynamicObject, runtime::conditions};
|
||||||
@@ -21,6 +22,8 @@ use serde_json::{Value, json};
|
|||||||
use similar::TextDiff;
|
use similar::TextDiff;
|
||||||
use tokio::io::AsyncReadExt;
|
use tokio::io::AsyncReadExt;
|
||||||
|
|
||||||
|
use crate::interpret::Outcome;
|
||||||
|
|
||||||
#[derive(new, Clone)]
|
#[derive(new, Clone)]
|
||||||
pub struct K8sClient {
|
pub struct K8sClient {
|
||||||
client: Client,
|
client: Client,
|
||||||
@@ -53,6 +56,57 @@ impl K8sClient {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub async fn ensure_deployment(
|
||||||
|
&self,
|
||||||
|
resource_name: &str,
|
||||||
|
resource_namespace: &str,
|
||||||
|
) -> Result<Outcome, Error> {
|
||||||
|
match self
|
||||||
|
.get_deployment(resource_name, Some(&resource_namespace))
|
||||||
|
.await
|
||||||
|
{
|
||||||
|
Ok(Some(deployment)) => {
|
||||||
|
if let Some(status) = deployment.status {
|
||||||
|
let ready_count = status.ready_replicas.unwrap_or(0);
|
||||||
|
if ready_count >= 1 {
|
||||||
|
Ok(Outcome::success(format!(
|
||||||
|
"'{}' is ready with {} replica(s).",
|
||||||
|
resource_name, ready_count
|
||||||
|
)))
|
||||||
|
} else {
|
||||||
|
Err(Error::Discovery(DiscoveryError::MissingResource(format!(
|
||||||
|
"Deployment '{}' in namespace '{}' has 0 ready replicas",
|
||||||
|
resource_name, resource_namespace
|
||||||
|
))))
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
Err(Error::Api(ErrorResponse {
|
||||||
|
status: "Failure".to_string(),
|
||||||
|
message: format!(
|
||||||
|
"No status found for deployment '{}' in namespace '{}'",
|
||||||
|
resource_name, resource_namespace
|
||||||
|
),
|
||||||
|
reason: "MissingStatus".to_string(),
|
||||||
|
code: 404,
|
||||||
|
}))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Ok(None) => Err(Error::Discovery(DiscoveryError::MissingResource(format!(
|
||||||
|
"Deployment '{}' not found in namespace '{}'",
|
||||||
|
resource_name, resource_namespace
|
||||||
|
)))),
|
||||||
|
Err(e) => Err(Error::Api(ErrorResponse {
|
||||||
|
status: "Failure".to_string(),
|
||||||
|
message: format!(
|
||||||
|
"Failed to fetch deployment '{}' in namespace '{}': {}",
|
||||||
|
resource_name, resource_namespace, e
|
||||||
|
),
|
||||||
|
reason: "ApiError".to_string(),
|
||||||
|
code: 500,
|
||||||
|
})),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
pub async fn get_resource_json_value(
|
pub async fn get_resource_json_value(
|
||||||
&self,
|
&self,
|
||||||
name: &str,
|
name: &str,
|
||||||
@@ -90,6 +144,25 @@ impl K8sClient {
|
|||||||
Ok(pods.get_opt(name).await?)
|
Ok(pods.get_opt(name).await?)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub async fn patch_resource_by_merge(
|
||||||
|
&self,
|
||||||
|
name: &str,
|
||||||
|
namespace: Option<&str>,
|
||||||
|
gvk: &GroupVersionKind,
|
||||||
|
patch: Value,
|
||||||
|
) -> Result<(), Error> {
|
||||||
|
let gvk = ApiResource::from_gvk(gvk);
|
||||||
|
let resource: Api<DynamicObject> = if let Some(ns) = namespace {
|
||||||
|
Api::namespaced_with(self.client.clone(), ns, &gvk)
|
||||||
|
} else {
|
||||||
|
Api::default_namespaced_with(self.client.clone(), &gvk)
|
||||||
|
};
|
||||||
|
let pp = PatchParams::default();
|
||||||
|
let merge = Patch::Merge(&patch);
|
||||||
|
resource.patch(name, &pp, &merge).await?;
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
pub async fn scale_deployment(
|
pub async fn scale_deployment(
|
||||||
&self,
|
&self,
|
||||||
name: &str,
|
name: &str,
|
||||||
|
|||||||
@@ -1,106 +0,0 @@
|
|||||||
use std::sync::Arc;
|
|
||||||
|
|
||||||
use async_trait::async_trait;
|
|
||||||
use harmony_types::id::Id;
|
|
||||||
use serde::Serialize;
|
|
||||||
|
|
||||||
use crate::{
|
|
||||||
data::Version,
|
|
||||||
interpret::{Interpret, InterpretError, InterpretName, InterpretStatus, Outcome},
|
|
||||||
inventory::Inventory,
|
|
||||||
score::Score,
|
|
||||||
topology::{K8sclient, Topology, k8s::K8sClient},
|
|
||||||
};
|
|
||||||
|
|
||||||
#[derive(Clone, Serialize, Debug)]
|
|
||||||
pub struct GenerateCaCertScore {
|
|
||||||
cluster_issuer_name: String,
|
|
||||||
dns_names: String,
|
|
||||||
operator_namespace: String,
|
|
||||||
}
|
|
||||||
|
|
||||||
impl<T: Topology + K8sclient> Score<T> for GenerateCaCertScore {
|
|
||||||
fn name(&self) -> String {
|
|
||||||
"GenerateCaCertScore".to_string()
|
|
||||||
}
|
|
||||||
|
|
||||||
fn create_interpret(&self) -> Box<dyn Interpret<T>> {
|
|
||||||
Box::new(GenerateCaCertIntepret {
|
|
||||||
score: self.clone(),
|
|
||||||
})
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Clone, Serialize, Debug)]
|
|
||||||
pub struct GenerateCaCertIntepret {
|
|
||||||
score: GenerateCaCertScore,
|
|
||||||
}
|
|
||||||
|
|
||||||
#[async_trait]
|
|
||||||
impl<T: Topology + K8sclient> Interpret<T> for GenerateCaCertIntepret {
|
|
||||||
async fn execute(
|
|
||||||
&self,
|
|
||||||
_inventory: &Inventory,
|
|
||||||
topology: &T,
|
|
||||||
) -> Result<Outcome, InterpretError> {
|
|
||||||
let client = topology.k8s_client().await.unwrap();
|
|
||||||
let cert_yaml = self
|
|
||||||
.build_cert_request_yaml(&self.score.cluster_issuer_name, &self.score.dns_names)
|
|
||||||
.unwrap();
|
|
||||||
self.apply_cert_request(&client, cert_yaml, &self.score.operator_namespace)
|
|
||||||
.await?;
|
|
||||||
Ok(Outcome::success("created ca cert".to_string()))
|
|
||||||
}
|
|
||||||
|
|
||||||
fn get_name(&self) -> InterpretName {
|
|
||||||
InterpretName::Custom("GenerateCaCertInterpret")
|
|
||||||
}
|
|
||||||
|
|
||||||
fn get_version(&self) -> Version {
|
|
||||||
todo!()
|
|
||||||
}
|
|
||||||
|
|
||||||
fn get_status(&self) -> InterpretStatus {
|
|
||||||
todo!()
|
|
||||||
}
|
|
||||||
|
|
||||||
fn get_children(&self) -> Vec<Id> {
|
|
||||||
todo!()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl GenerateCaCertIntepret {
|
|
||||||
pub fn build_cert_request_yaml(
|
|
||||||
&self,
|
|
||||||
cluster_issuer_name: &str,
|
|
||||||
dns_names: &str,
|
|
||||||
) -> Result<serde_yaml::Value, InterpretError> {
|
|
||||||
let cert_yaml = format!(
|
|
||||||
r#"
|
|
||||||
apiVersion: cert-manager.io/v1
|
|
||||||
kind: Certificate
|
|
||||||
metadata:
|
|
||||||
name: ingress-cert
|
|
||||||
namespace: openshift-ingress
|
|
||||||
spec:
|
|
||||||
secretName: ingress-cert-tls
|
|
||||||
issuerRef:
|
|
||||||
name: {cluster_issuer_name}
|
|
||||||
kind: ClusterIssuer
|
|
||||||
dnsNames:
|
|
||||||
- "*.{dns_names}"
|
|
||||||
"#
|
|
||||||
);
|
|
||||||
Ok(serde_yaml::to_value(cert_yaml)?)
|
|
||||||
}
|
|
||||||
pub async fn apply_cert_request(
|
|
||||||
&self,
|
|
||||||
client: &Arc<K8sClient>,
|
|
||||||
cert_yaml: serde_yaml::Value,
|
|
||||||
operator_namespace: &str,
|
|
||||||
) -> Result<(), InterpretError> {
|
|
||||||
Ok(client
|
|
||||||
.apply_yaml(&cert_yaml, Some(operator_namespace))
|
|
||||||
.await?)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,3 +1,3 @@
|
|||||||
mod gen_ca_cert;
|
|
||||||
mod helm;
|
mod helm;
|
||||||
|
pub mod update_default_okd_ingress_score;
|
||||||
pub use helm::*;
|
pub use helm::*;
|
||||||
|
|||||||
@@ -0,0 +1,223 @@
|
|||||||
|
use std::{
|
||||||
|
fs::File,
|
||||||
|
io::Read,
|
||||||
|
path::{Path, PathBuf},
|
||||||
|
sync::Arc,
|
||||||
|
};
|
||||||
|
|
||||||
|
use base64::{Engine, prelude::BASE64_STANDARD};
|
||||||
|
use fqdn::Path;
|
||||||
|
use harmony_types::id::Id;
|
||||||
|
use kube::api::GroupVersionKind;
|
||||||
|
use serde_json::json;
|
||||||
|
|
||||||
|
use crate::{
|
||||||
|
data::Version,
|
||||||
|
interpret::{Interpret, InterpretError, InterpretName, InterpretStatus, Outcome},
|
||||||
|
inventory::Inventory,
|
||||||
|
score::Score,
|
||||||
|
topology::{K8sclient, Topology, k8s::K8sClient},
|
||||||
|
};
|
||||||
|
|
||||||
|
pub struct UpdateDefaultOkdIngressScore {
|
||||||
|
operator_name: String,
|
||||||
|
operator_namespace: String,
|
||||||
|
ca_name: String,
|
||||||
|
path_to_tls_crt: Path,
|
||||||
|
path_to_tls_key: Path,
|
||||||
|
path_to_ca_cert: Path,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl<T: Topology> Score<T> for UpdateDefaultOkdIngressScore {
|
||||||
|
fn name(&self) -> String {
|
||||||
|
"UpdateDefaultOkdIngressScore".to_string()
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc(hidden)]
|
||||||
|
fn create_interpret(&self) -> Box<dyn Interpret<T>> {
|
||||||
|
Box::new(UpdateDefaultOkdIngressInterpret {
|
||||||
|
score: self.clone(),
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub struct UpdateDefaultOkdIngressInterpret {
|
||||||
|
score: UpdateDefaultOkdIngressScore,
|
||||||
|
}
|
||||||
|
|
||||||
|
#[async_trait]
|
||||||
|
impl<T: Topology + K8sclient> Interpret<T> for UpdateDefaultOkdIngressInterpret {
|
||||||
|
async fn execute(
|
||||||
|
&self,
|
||||||
|
inventory: &Inventory,
|
||||||
|
topology: &T,
|
||||||
|
) -> Result<Outcome, InterpretError> {
|
||||||
|
let client = topology.k8s_client().await?;
|
||||||
|
let secret_name = "ingress_ca_secret";
|
||||||
|
self.ensure_ingress_operator(
|
||||||
|
&client,
|
||||||
|
&self.score.operator_name,
|
||||||
|
&self.score.operator_namespace,
|
||||||
|
)
|
||||||
|
.await?;
|
||||||
|
self.create_ca_cm(&client, self.score.path_to_ca_cert, &self.score.ca_name)
|
||||||
|
.await?;
|
||||||
|
self.patch_proxy(&client, &self.score.ca_name).await?;
|
||||||
|
self.create_tls_secret(
|
||||||
|
&client,
|
||||||
|
self.score.path_to_tls_crt,
|
||||||
|
self.score.path_to_tls_key,
|
||||||
|
&self.score.operator_namespace,
|
||||||
|
&secret_name,
|
||||||
|
)
|
||||||
|
.await?;
|
||||||
|
self.patch_ingress(&client, &self.score.operator_namespace, &secret_name)
|
||||||
|
.await?;
|
||||||
|
}
|
||||||
|
|
||||||
|
fn get_name(&self) -> InterpretName {
|
||||||
|
InterpretName::Custom("UpdateDefaultOkdIngress")
|
||||||
|
}
|
||||||
|
|
||||||
|
fn get_version(&self) -> Version {
|
||||||
|
todo!()
|
||||||
|
}
|
||||||
|
|
||||||
|
fn get_status(&self) -> InterpretStatus {
|
||||||
|
todo!()
|
||||||
|
}
|
||||||
|
|
||||||
|
fn get_children(&self) -> Vec<Id> {
|
||||||
|
todo!()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl UpdateDefaultOkdIngressInterpret {
|
||||||
|
async fn ensure_ingress_operator(
|
||||||
|
&self,
|
||||||
|
client: &Arc<K8sClient>,
|
||||||
|
operator_name: &str,
|
||||||
|
operator_namespace: &str,
|
||||||
|
) -> Result<Outcome, InterpretError> {
|
||||||
|
client
|
||||||
|
.ensure_deployment(operator_name, Some(operator_namespace))
|
||||||
|
.await?
|
||||||
|
}
|
||||||
|
|
||||||
|
fn open_path(&self, path: Path) -> Result<String, InterpretError> {
|
||||||
|
let mut file = match File::open(&path) {
|
||||||
|
Ok(file) => file,
|
||||||
|
Err(e) => InterpretError::new(format!("Could not open file {}", e)),
|
||||||
|
};
|
||||||
|
let s = String::new();
|
||||||
|
match file.read_to_string(&mut s) {
|
||||||
|
Ok(s) => Ok(s),
|
||||||
|
Err(e) => InterpretError::new(format!("Could not read file {}", e)),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
async fn create_ca_cm(
|
||||||
|
&self,
|
||||||
|
client: &Arc<K8sClient>,
|
||||||
|
path_to_ca_cert: Path,
|
||||||
|
ca_name: &str,
|
||||||
|
) -> Result<Outcome, InterpretError> {
|
||||||
|
let ca_bundle = BASE64_STANDARD.encode(self.open_path(path_to_ca_cert).unwrap().as_bytes());
|
||||||
|
|
||||||
|
let cm = format!(
|
||||||
|
r"#
|
||||||
|
apiVersion: v1
|
||||||
|
kind: ConfigMap
|
||||||
|
metadata:
|
||||||
|
name: custom-ca
|
||||||
|
namespace: openshift-config
|
||||||
|
data:
|
||||||
|
ca-bundle.crt: {ca_bundle}
|
||||||
|
#"
|
||||||
|
);
|
||||||
|
client.apply_yaml(serde_yaml::to_value(&cm), Some("openshift-config")).await?;
|
||||||
|
Ok(Outcome::success(format!(
|
||||||
|
"successfully created cm : {} in openshift-config namespace",
|
||||||
|
ca_name
|
||||||
|
)))
|
||||||
|
}
|
||||||
|
|
||||||
|
async fn patch_proxy(
|
||||||
|
&self,
|
||||||
|
client: &Arc<K8sClient>,
|
||||||
|
ca_name: &str,
|
||||||
|
) -> Result<Outcome, InterpretError> {
|
||||||
|
let gvk = GroupVersionKind {
|
||||||
|
group: "config.openshift.io".to_string(),
|
||||||
|
version: "v1".to_string(),
|
||||||
|
kind: "Proxy".to_string(),
|
||||||
|
};
|
||||||
|
let patch = json!({
|
||||||
|
"spec": {
|
||||||
|
"trustedCA": {
|
||||||
|
"name": ca_name
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
client
|
||||||
|
.patch_resource_by_merge("cluster", None, &gvk, patch)
|
||||||
|
.await?;
|
||||||
|
Ok(Outcome::success(format!(
|
||||||
|
"successfully merged trusted ca to cluster proxy"
|
||||||
|
)))
|
||||||
|
}
|
||||||
|
|
||||||
|
async fn create_tls_secret(
|
||||||
|
&self,
|
||||||
|
client: &Arc<K8sClient>,
|
||||||
|
tls_crt: Path,
|
||||||
|
tls_key: Path,
|
||||||
|
operator_namespace: &str,
|
||||||
|
secret_name: &str,
|
||||||
|
) -> Result<Outcome, InterpretError> {
|
||||||
|
let base64_tls_crt = BASE64_STANDARD.encode(self.open_path(tls_crt).unwrap().as_bytes());
|
||||||
|
let base64_tls_key = BASE64_STANDARD.encode(self.open_path(tls_key).unwrap().as_bytes());
|
||||||
|
let secret = format!(
|
||||||
|
r#"
|
||||||
|
apiVersion: v1
|
||||||
|
kind: Secret
|
||||||
|
metadata:
|
||||||
|
name: secret-tls
|
||||||
|
namespace: {operator_namespace}
|
||||||
|
type: kubernetes.io/tls
|
||||||
|
data:
|
||||||
|
# values are base64 encoded, which obscures them but does NOT provide
|
||||||
|
# any useful level of confidentiality
|
||||||
|
# Replace the following values with your own base64-encoded certificate and key.
|
||||||
|
tls.crt: "{base64_tls_crt}"
|
||||||
|
tls.key: "{base64_tls_key}"
|
||||||
|
"#
|
||||||
|
);
|
||||||
|
client
|
||||||
|
.apply_yaml(serde_yaml::to_value(secret), Some(operator_namespace))
|
||||||
|
.await?;
|
||||||
|
Ok(Outcome::success(format!(
|
||||||
|
"successfully created tls secret trusted ca to cluster proxy"
|
||||||
|
)))
|
||||||
|
}
|
||||||
|
|
||||||
|
async fn patch_ingress(
|
||||||
|
&self,
|
||||||
|
client: &Arc<K8sClient>,
|
||||||
|
operator_namespace: &str,
|
||||||
|
secret_name: &str,
|
||||||
|
) -> Result<Outcome, InterpretError> {
|
||||||
|
let gvk = GroupVersionKind {
|
||||||
|
group: "operator.openshift.io".to_string(),
|
||||||
|
version: "v1".to_string(),
|
||||||
|
kind: "IngressController".to_string(),
|
||||||
|
};
|
||||||
|
let patch = json!(
|
||||||
|
{"spec":{"defaultCertificate": {"name": secret_name}}});
|
||||||
|
client
|
||||||
|
.patch_resource_by_merge("default", Some(operator_namespace), &gvk, patch)
|
||||||
|
.await?;
|
||||||
|
|
||||||
|
Ok(Outcome::success(format!("successfully pathed ingress operator to use secret {}", secret_name)))
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user