Giter Site home page Giter Site logo

handle preserve-unknown-fields about kopium HOT 4 CLOSED

kube-rs avatar kube-rs commented on May 31, 2024
handle preserve-unknown-fields

from kopium.

Comments (4)

alex-hunt-materialize avatar alex-hunt-materialize commented on May 31, 2024 1

This is especially relevant for things that expect arbitrary labels, like the very common matchLabels property.

                  matchLabels:
                    type: object
                    x-kubernetes-preserve-unknown-fields: true

This currently creates an empty struct.

Complete CRD is available at https://gist.github.com/alex-hunt-materialize/2743b1e2e58a49c4df0a11ecb39f46ab (generated by the Linkerd 2.11 helm chart).

from kopium.

alex-hunt-materialize avatar alex-hunt-materialize commented on May 31, 2024

Would it potentially make sense to have separate handling for "simple" cases like the above, where there are no named properties of the object?

In this case, it would make sense to have it be a BTreeMap<String, serde_json::Value> rather than a separate struct (really a BTreeMap<String, String>, but nothing in the CRD actually tells us that).

I suspect that the majority of x-kubernetes-preserve-unknown-fields: true use cases are "simple" like that, and this would avoid the need to mess with serde(flatten) or to have additional struct nesting for the client.

#42

from kopium.

clux avatar clux commented on May 31, 2024

Yeah, I think you are right. The common map case is the more important one here, and we can leave the degenerate case for another issue (because it's a bit hairy, we can't have the top level spec type be a BTreeMap because we can't impl on that)

Incidentally, we had a similar question on how to proceed with the basic case kube-rs/kube#844 (comment) (for now we only did the map case).

from kopium.

clux avatar clux commented on May 31, 2024

Another case that needs to be handled: status objects. The istio destinationrule crd (now included) defines this status object:

          status:
            type: object
            x-kubernetes-preserve-unknown-fields: true

which fails because it sets #[kube(status = "DestinationRuleStatus")] so it also needs some trivial wrapper struct.

from kopium.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.