-
-
Notifications
You must be signed in to change notification settings - Fork 319
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
Try to integrate k8s-pb
#1602
base: main
Are you sure you want to change the base?
Try to integrate k8s-pb
#1602
Conversation
Signed-off-by: clux <[email protected]>
starting step towards compilation Signed-off-by: clux <[email protected]>
thankfully straightforward Signed-off-by: clux <[email protected]>
Signed-off-by: clux <[email protected]>
Signed-off-by: clux <[email protected]>
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #1602 +/- ##
=======================================
- Coverage 75.2% 75.0% -0.1%
=======================================
Files 82 82
Lines 7335 7352 +17
=======================================
Hits 5514 5514
- Misses 1821 1838 +17
|
Signed-off-by: clux <[email protected]>
Signed-off-by: clux <[email protected]>
Signed-off-by: clux <[email protected]>
It feels weird to have these be mutually exclusive. AIUI, this mostly comes down to the current design where:
This requires a choice to be made since we can only have blanket impl to avoid ambiguities (since technically the same type could impl both
That way, you'd just pull in the The only blocker here AIUI is
Depending on how annoying this is to do with k8s-pb, another option here would be to return a blank |
Experiment to see how offensive this actually would look if we were to use an indirection layer (
core::k8s
) and route everything through that and the core traits (Resource
+ResourceExt
).Annoying bits
openapi
vspb
, we can either:pb
oropenapi
), precedence toopenapi
(breaking for --no-default builds)Metadata
is optional in all types ink8s_pb
, but not ink8s-openapi
:Resource
trait to get it to compile - i don't like this eitherResource
trait for ownerreferences/typemeta/labels/annotationsDeserializeOwned
andprost::Message
traits is non-trivialApi
bound to depend on an aliasedDeserTrait
Api
/discovery
modules and anything usingDeserializeOwned
(current)pb
implementations to specifics as we go along?client/mod
for a PoC.Easy bits
k8s-openapi
andk8s-pb
: Names not matchingk8s-openapi
? Likely a bug! k8s-pb#52HashMap
/BTreeMap
usage: Move prost generation from HashMap to BTreeMap k8s-pb#48serde
traits can becfg_attr
d#[cfg(feature...)]
gunk)