-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: handle cluster scoped resources #79
Merged
Merged
Changes from 2 commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change | ||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -12,7 +12,7 @@ use kube::{ | |||||||||||||||||||
}, | ||||||||||||||||||||
Api, Client, Config, Resource, ResourceExt, | ||||||||||||||||||||
}; | ||||||||||||||||||||
use serde_json::json; | ||||||||||||||||||||
use serde_json::{json, Value}; | ||||||||||||||||||||
|
||||||||||||||||||||
use crate::{ | ||||||||||||||||||||
mapping::set_field_path, | ||||||||||||||||||||
|
@@ -76,7 +76,7 @@ async fn cluster_client( | |||||||||||||||||||
struct NamespacedApi { | ||||||||||||||||||||
api: Api<DynamicObject>, | ||||||||||||||||||||
ar: ApiResource, | ||||||||||||||||||||
namespace: String, | ||||||||||||||||||||
namespace: Option<String>, | ||||||||||||||||||||
} | ||||||||||||||||||||
|
||||||||||||||||||||
async fn api_for( | ||||||||||||||||||||
|
@@ -97,17 +97,14 @@ async fn api_for( | |||||||||||||||||||
Some(cluster) => match &cluster.namespace { | ||||||||||||||||||||
Some(namespace) => ( | ||||||||||||||||||||
Api::namespaced_with(client.clone(), namespace, &ar), | ||||||||||||||||||||
namespace.to_owned(), | ||||||||||||||||||||
Some(namespace.to_owned()), | ||||||||||||||||||||
), | ||||||||||||||||||||
None => ( | ||||||||||||||||||||
Api::default_namespaced_with(client.clone(), &ar), | ||||||||||||||||||||
client.default_namespace().to_owned(), | ||||||||||||||||||||
Some(client.default_namespace().to_owned()), | ||||||||||||||||||||
), | ||||||||||||||||||||
}, | ||||||||||||||||||||
None => ( | ||||||||||||||||||||
Api::namespaced_with(client.clone(), local_ns, &ar), | ||||||||||||||||||||
local_ns.to_owned(), | ||||||||||||||||||||
), | ||||||||||||||||||||
None => (Api::all_with(client.clone(), &ar), None), | ||||||||||||||||||||
}; | ||||||||||||||||||||
|
||||||||||||||||||||
Ok(NamespacedApi { api, ar, namespace }) | ||||||||||||||||||||
|
@@ -132,12 +129,18 @@ async fn reconcile(sinker: Arc<ResourceSync>, ctx: Arc<Context>) -> Result<Actio | |||||||||||||||||||
namespace: target_namespace, | ||||||||||||||||||||
} = api_for(&sinker.spec.target, &local_ns, Arc::clone(&ctx)).await?; | ||||||||||||||||||||
|
||||||||||||||||||||
debug!(%target_namespace, "got client for target"); | ||||||||||||||||||||
debug!(?target_namespace, "got client for target"); | ||||||||||||||||||||
|
||||||||||||||||||||
let target = if sinker.spec.mappings.is_empty() { | ||||||||||||||||||||
clone_resource(&source, target_ref, &target_namespace, &ar)? | ||||||||||||||||||||
clone_resource(&source, target_ref, target_namespace.as_deref(), &ar)? | ||||||||||||||||||||
} else { | ||||||||||||||||||||
apply_mappings(&source, target_ref, &target_namespace, &ar, &sinker)? | ||||||||||||||||||||
apply_mappings( | ||||||||||||||||||||
&source, | ||||||||||||||||||||
target_ref, | ||||||||||||||||||||
target_namespace.as_deref(), | ||||||||||||||||||||
&ar, | ||||||||||||||||||||
&sinker, | ||||||||||||||||||||
)? | ||||||||||||||||||||
}; | ||||||||||||||||||||
debug!(?target, "produced target object"); | ||||||||||||||||||||
|
||||||||||||||||||||
|
@@ -155,12 +158,16 @@ async fn reconcile(sinker: Arc<ResourceSync>, ctx: Arc<Context>) -> Result<Actio | |||||||||||||||||||
fn clone_resource( | ||||||||||||||||||||
source: &DynamicObject, | ||||||||||||||||||||
target_ref: &GVKN, | ||||||||||||||||||||
target_namespace: &str, | ||||||||||||||||||||
target_namespace: Option<&str>, | ||||||||||||||||||||
ar: &ApiResource, | ||||||||||||||||||||
) -> Result<DynamicObject> { | ||||||||||||||||||||
let mut target = DynamicObject::new(&target_ref.name, ar) | ||||||||||||||||||||
.within(target_namespace) | ||||||||||||||||||||
.data(source.data.clone()); | ||||||||||||||||||||
let mut target = if let Some(ns) = target_namespace { | ||||||||||||||||||||
DynamicObject::new(&target_ref.name, ar) | ||||||||||||||||||||
.within(ns) | ||||||||||||||||||||
.data(source.data.clone()) | ||||||||||||||||||||
} else { | ||||||||||||||||||||
DynamicObject::new(&target_ref.name, ar).data(source.data.clone()) | ||||||||||||||||||||
}; | ||||||||||||||||||||
|
||||||||||||||||||||
target.metadata.annotations = source.metadata.annotations.clone().map(cleanup_annotations); | ||||||||||||||||||||
target.metadata.labels = source.metadata.labels.clone(); | ||||||||||||||||||||
|
@@ -172,13 +179,17 @@ fn clone_resource( | |||||||||||||||||||
fn apply_mappings( | ||||||||||||||||||||
source: &DynamicObject, | ||||||||||||||||||||
target_ref: &GVKN, | ||||||||||||||||||||
target_namespace: &str, | ||||||||||||||||||||
target_namespace: Option<&str>, | ||||||||||||||||||||
ar: &ApiResource, | ||||||||||||||||||||
sinker: &ResourceSync, | ||||||||||||||||||||
) -> Result<DynamicObject> { | ||||||||||||||||||||
let mut template = DynamicObject::new(&target_ref.name, ar) | ||||||||||||||||||||
.within(target_namespace) | ||||||||||||||||||||
.data(json!({})); | ||||||||||||||||||||
let mut template = if let Some(ns) = target_namespace { | ||||||||||||||||||||
DynamicObject::new(&target_ref.name, ar) | ||||||||||||||||||||
.within(ns) | ||||||||||||||||||||
.data(json!({})) | ||||||||||||||||||||
} else { | ||||||||||||||||||||
DynamicObject::new(&target_ref.name, ar).data(json!({})) | ||||||||||||||||||||
}; | ||||||||||||||||||||
|
||||||||||||||||||||
for mapping in &sinker.spec.mappings { | ||||||||||||||||||||
let subtree = find_field_path(source, &mapping.from_field_path)?; | ||||||||||||||||||||
|
@@ -210,12 +221,16 @@ fn apply_mappings( | |||||||||||||||||||
let source_metadata = convert_metadata(&subtree["metadata"]); | ||||||||||||||||||||
let mut subtree = subtree.clone(); | ||||||||||||||||||||
cleanup_subtree(&mut subtree); | ||||||||||||||||||||
let mut source = DynamicObject::new(&subtree["metadata"]["name"].to_string(), &ar) | ||||||||||||||||||||
.within(&subtree["metadata"]["namespace"].to_string()) | ||||||||||||||||||||
.data(subtree); | ||||||||||||||||||||
let mut source = if let Value::Null = subtree["metadata"]["namespace"] { | ||||||||||||||||||||
DynamicObject::new(&subtree["metadata"]["name"].to_string(), &ar).data(subtree) | ||||||||||||||||||||
} else { | ||||||||||||||||||||
DynamicObject::new(&subtree["metadata"]["name"].to_string(), &ar) | ||||||||||||||||||||
.within(&subtree["metadata"]["namespace"].to_string()) | ||||||||||||||||||||
.data(subtree) | ||||||||||||||||||||
}; | ||||||||||||||||||||
Comment on lines
+214
to
+220
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. similar situation here
Suggested change
|
||||||||||||||||||||
source.metadata.annotations = source_metadata.annotations; | ||||||||||||||||||||
source.metadata.labels = source_metadata.labels; | ||||||||||||||||||||
template = clone_resource(&source, target_ref, &target_namespace, &ar)?; | ||||||||||||||||||||
template = clone_resource(&source, target_ref, target_namespace, &ar)?; | ||||||||||||||||||||
} | ||||||||||||||||||||
Mapping { | ||||||||||||||||||||
from_field_path: _, | ||||||||||||||||||||
|
@@ -450,7 +465,68 @@ mod tests { | |||||||||||||||||||
let target = clone_resource( | ||||||||||||||||||||
&dynamic_sc, | ||||||||||||||||||||
&resource_sync.spec.target.resource_ref, | ||||||||||||||||||||
"default", | ||||||||||||||||||||
Some("default"), | ||||||||||||||||||||
&ar, | ||||||||||||||||||||
) | ||||||||||||||||||||
.unwrap(); | ||||||||||||||||||||
assert_eq!( | ||||||||||||||||||||
serde_json::to_string(&target).unwrap(), | ||||||||||||||||||||
serde_json::to_string(&expected).unwrap(), | ||||||||||||||||||||
); | ||||||||||||||||||||
} | ||||||||||||||||||||
|
||||||||||||||||||||
#[tokio::test] | ||||||||||||||||||||
async fn test_clone_resource_cluster_scoped() { | ||||||||||||||||||||
let resource_sync = ResourceSync::new( | ||||||||||||||||||||
"sinker-test", | ||||||||||||||||||||
ResourceSyncSpec { | ||||||||||||||||||||
mappings: vec![], | ||||||||||||||||||||
source: ClusterResourceRef { | ||||||||||||||||||||
resource_ref: GVKN { | ||||||||||||||||||||
api_version: "rbac.authorization.k8s.io/v1".to_string(), | ||||||||||||||||||||
kind: "ClusterRole".to_string(), | ||||||||||||||||||||
name: "test-clusterrole-1".to_string(), | ||||||||||||||||||||
}, | ||||||||||||||||||||
cluster: None, | ||||||||||||||||||||
}, | ||||||||||||||||||||
target: ClusterResourceRef { | ||||||||||||||||||||
resource_ref: GVKN { | ||||||||||||||||||||
api_version: "rbac.authorization.k8s.io/v1".to_string(), | ||||||||||||||||||||
kind: "ClusterRole".to_string(), | ||||||||||||||||||||
name: "test-clusterrole-2".to_string(), | ||||||||||||||||||||
}, | ||||||||||||||||||||
cluster: None, | ||||||||||||||||||||
}, | ||||||||||||||||||||
}, | ||||||||||||||||||||
); | ||||||||||||||||||||
let dynamic_sc: DynamicObject = serde_json::from_str( | ||||||||||||||||||||
&serde_json::to_string(&serde_json::json!({ | ||||||||||||||||||||
"apiVersion": "rbac.authorization.k8s.io/v1", | ||||||||||||||||||||
"kind": "ClusterRole", | ||||||||||||||||||||
"metadata": { "name": "test-clusterrole-1" }, | ||||||||||||||||||||
"rules": [], | ||||||||||||||||||||
})) | ||||||||||||||||||||
.unwrap(), | ||||||||||||||||||||
) | ||||||||||||||||||||
.unwrap(); | ||||||||||||||||||||
let expected = serde_json::json!({ | ||||||||||||||||||||
"apiVersion": "rbac.authorization.k8s.io/v1", | ||||||||||||||||||||
"kind": "ClusterRole", | ||||||||||||||||||||
"metadata": { | ||||||||||||||||||||
"name": "test-clusterrole-2", | ||||||||||||||||||||
"namespace": "default", | ||||||||||||||||||||
}, | ||||||||||||||||||||
"rules": [], | ||||||||||||||||||||
}); | ||||||||||||||||||||
let ar = ApiResource::from_gvk(&GroupVersionKind { | ||||||||||||||||||||
group: "rbac.authorization.k8s.io".to_string(), | ||||||||||||||||||||
version: "v1".to_string(), | ||||||||||||||||||||
kind: "ClusterRole".to_string(), | ||||||||||||||||||||
}); | ||||||||||||||||||||
let target = clone_resource( | ||||||||||||||||||||
&dynamic_sc, | ||||||||||||||||||||
&resource_sync.spec.target.resource_ref, | ||||||||||||||||||||
Some("default"), | ||||||||||||||||||||
&ar, | ||||||||||||||||||||
) | ||||||||||||||||||||
.unwrap(); | ||||||||||||||||||||
|
@@ -522,7 +598,7 @@ mod tests { | |||||||||||||||||||
let target = apply_mappings( | ||||||||||||||||||||
&dynamic_sc, | ||||||||||||||||||||
&resource_sync.spec.target.resource_ref, | ||||||||||||||||||||
"default", | ||||||||||||||||||||
Some("default"), | ||||||||||||||||||||
&ar, | ||||||||||||||||||||
&resource_sync, | ||||||||||||||||||||
) | ||||||||||||||||||||
|
@@ -605,7 +681,7 @@ mod tests { | |||||||||||||||||||
let target = apply_mappings( | ||||||||||||||||||||
&dynamic_sc, | ||||||||||||||||||||
&resource_sync.spec.target.resource_ref, | ||||||||||||||||||||
"default", | ||||||||||||||||||||
Some("default"), | ||||||||||||||||||||
&ar, | ||||||||||||||||||||
&resource_sync, | ||||||||||||||||||||
) | ||||||||||||||||||||
|
@@ -689,7 +765,79 @@ mod tests { | |||||||||||||||||||
let target = apply_mappings( | ||||||||||||||||||||
&dynamic_sc, | ||||||||||||||||||||
&resource_sync.spec.target.resource_ref, | ||||||||||||||||||||
"default", | ||||||||||||||||||||
Some("default"), | ||||||||||||||||||||
&ar, | ||||||||||||||||||||
&resource_sync, | ||||||||||||||||||||
) | ||||||||||||||||||||
.unwrap(); | ||||||||||||||||||||
assert_eq!( | ||||||||||||||||||||
serde_json::to_string(&target).unwrap(), | ||||||||||||||||||||
serde_json::to_string(&expected).unwrap(), | ||||||||||||||||||||
); | ||||||||||||||||||||
} | ||||||||||||||||||||
|
||||||||||||||||||||
#[tokio::test] | ||||||||||||||||||||
async fn test_apply_mappings_from_sinkercontainer_clusterscoped() { | ||||||||||||||||||||
let resource_sync = ResourceSync::new( | ||||||||||||||||||||
"sinker-test", | ||||||||||||||||||||
ResourceSyncSpec { | ||||||||||||||||||||
mappings: vec![Mapping { | ||||||||||||||||||||
from_field_path: Some("spec".to_string()), | ||||||||||||||||||||
to_field_path: None, | ||||||||||||||||||||
}], | ||||||||||||||||||||
source: ClusterResourceRef { | ||||||||||||||||||||
resource_ref: GVKN { | ||||||||||||||||||||
api_version: "sinker.influxdata.io/v1alpha1".to_string(), | ||||||||||||||||||||
kind: "SinkerContainer".to_string(), | ||||||||||||||||||||
name: "test-sinker-container".to_string(), | ||||||||||||||||||||
}, | ||||||||||||||||||||
cluster: None, | ||||||||||||||||||||
}, | ||||||||||||||||||||
target: ClusterResourceRef { | ||||||||||||||||||||
resource_ref: GVKN { | ||||||||||||||||||||
api_version: "rbac.authorization.k8s.io/v1".to_string(), | ||||||||||||||||||||
kind: "ClusterRole".to_string(), | ||||||||||||||||||||
name: "test-clusterrole".to_string(), | ||||||||||||||||||||
}, | ||||||||||||||||||||
cluster: None, | ||||||||||||||||||||
}, | ||||||||||||||||||||
}, | ||||||||||||||||||||
); | ||||||||||||||||||||
let ar = ApiResource::from_gvk(&GroupVersionKind { | ||||||||||||||||||||
group: "rbac.authorization.k8s.io".to_string(), | ||||||||||||||||||||
version: "v1".to_string(), | ||||||||||||||||||||
kind: "ClusterRole".to_string(), | ||||||||||||||||||||
}); | ||||||||||||||||||||
let expected = serde_json::json!({ | ||||||||||||||||||||
"apiVersion": "rbac.authorization.k8s.io/v1", | ||||||||||||||||||||
"kind": "ClusterRole", | ||||||||||||||||||||
"metadata": { | ||||||||||||||||||||
"name": "test-clusterrole", | ||||||||||||||||||||
"namespace": "default", | ||||||||||||||||||||
}, | ||||||||||||||||||||
"rules": [], | ||||||||||||||||||||
}); | ||||||||||||||||||||
let dynamic_sc: DynamicObject = serde_json::from_str( | ||||||||||||||||||||
&serde_json::to_string(&serde_json::json!({ | ||||||||||||||||||||
"apiVersion": "sinker.influxdata.io/v1alpha1", | ||||||||||||||||||||
"kind": "SinkerContainer", | ||||||||||||||||||||
"metadata": { "name": "test-sinker-container" }, | ||||||||||||||||||||
"spec": { | ||||||||||||||||||||
"apiVersion": "rbac.authorization.k8s.io/v1", | ||||||||||||||||||||
"kind": "ClusterRole", | ||||||||||||||||||||
"metadata": { | ||||||||||||||||||||
"name": "test-clusterrole", | ||||||||||||||||||||
}, | ||||||||||||||||||||
"rules": [], | ||||||||||||||||||||
}, | ||||||||||||||||||||
})) | ||||||||||||||||||||
.unwrap(), | ||||||||||||||||||||
) | ||||||||||||||||||||
.unwrap(); | ||||||||||||||||||||
let target = apply_mappings( | ||||||||||||||||||||
&dynamic_sc, | ||||||||||||||||||||
&resource_sync.spec.target.resource_ref, | ||||||||||||||||||||
Some("default"), | ||||||||||||||||||||
&ar, | ||||||||||||||||||||
&resource_sync, | ||||||||||||||||||||
) | ||||||||||||||||||||
|
@@ -764,7 +912,7 @@ mod tests { | |||||||||||||||||||
let target = apply_mappings( | ||||||||||||||||||||
&dynamic_sc, | ||||||||||||||||||||
&resource_sync.spec.target.resource_ref, | ||||||||||||||||||||
"default", | ||||||||||||||||||||
Some("default"), | ||||||||||||||||||||
&ar, | ||||||||||||||||||||
&resource_sync, | ||||||||||||||||||||
) | ||||||||||||||||||||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nice, thanks
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i did it in a few places so change it in those places too.