Skip to main content

DiffEngine

Struct DiffEngine 

Source
pub struct DiffEngine;
Expand description

Diff engine for comparing Kubernetes resources

Implementations§

Source§

impl DiffEngine

Source

pub fn normalize(resource: &mut Value)

Normalize a resource for comparison by removing auto-generated fields

This removes fields that Kubernetes generates automatically and should not be considered when comparing desired vs live state:

  • metadata.resourceVersion
  • metadata.uid
  • metadata.generation
  • metadata.creationTimestamp
  • metadata.managedFields
  • metadata.selfLink
  • status (entire section)
Source

pub fn to_comparable_yaml(resource: &Value) -> Result<String>

Convert a resource to normalized YAML string for comparison

This normalizes the resource and converts it to YAML with consistent formatting for reliable comparison.

Source

pub fn diff_yaml(desired: &Value, live: &Value) -> Result<String>

Compare two resources and return a unified diff (kubectl-style)

This generates a unified diff similar to kubectl diff by:

  1. Normalizing both resources
  2. Converting to YAML
  3. Running a line-by-line unified diff algorithm

Returns empty string if resources are equivalent.

Source

pub fn are_equivalent(desired: &Value, live: &Value) -> Result<bool>

Check if two resources are equivalent after normalization

This is a simple equality check after normalization. Use this for determining if resources differ, then use diff_yaml() to show what changed.

Source

pub async fn normalize_with_server( resource: &Value, client: Option<&dyn KubeClient>, ) -> Result<Value>

Normalize a resource with optional server-side normalization

If a client is provided, sends the resource to the server with dry-run to apply server-side defaults. Otherwise, just clones the resource. In both cases, applies client-side normalization to remove metadata fields.

Source

pub async fn diff_yaml_with_server( desired: &Value, live: &Value, client: &dyn KubeClient, ) -> Result<String>

Generate a diff with server-side normalization

Uses server-side apply dry-run to normalize the desired resource, then compares against the live resource (which already has server defaults).

Source

pub async fn are_equivalent_with_server( desired: &Value, live: &Value, client: &dyn KubeClient, ) -> Result<bool>

Check if two resources are equivalent with server-side normalization

Uses server-side apply dry-run to normalize the desired resource, then compares against the live resource.

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> PolicyExt for T
where T: ?Sized,

Source§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow only if self and other return Action::Follow. Read more
Source§

fn or<P, B, E>(self, other: P) -> Or<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow if either self or other returns Action::Follow. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ServiceExt for T

Source§

fn map_response_body<F>(self, f: F) -> MapResponseBody<Self, F>
where Self: Sized,

Apply a transformation to the response body. Read more
Source§

fn trace_for_http(self) -> Trace<Self, SharedClassifier<ServerErrorsAsFailures>>
where Self: Sized,

High level tracing that classifies responses using HTTP status codes. Read more
Source§

fn trace_for_grpc(self) -> Trace<Self, SharedClassifier<GrpcErrorsAsFailures>>
where Self: Sized,

High level tracing that classifies responses using gRPC headers. Read more
Source§

fn follow_redirects(self) -> FollowRedirect<Self>
where Self: Sized,

Follow redirect resposes using the Standard policy. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more