anowell / kubeclient-rs

Kubernetes API client in Rust
MIT License
30 stars 12 forks source link

Update for current k8s-openapi #9

Closed flodiebold closed 6 years ago

flodiebold commented 6 years ago

This currently sets the used k8s version to 1.9. I've tried making it configurable via a feature, but that turned out to be hard since features should be additive (so it should be possible to activate e.g. both the v1_9 and the v1_10 feature).

anowell commented 6 years ago

[apologies for the delayed response]

This looks good. It just need a small fix to the travis file to bump the minimum supported build version as it looks like k8s_openapi now uses the ..= operator. Then I'd be happy to merge.

And fyi, I am [slowly] working on a refactor to expose the different api versions, so apologies in advance if I introduce major breaking changes when that lands.

flodiebold commented 6 years ago

Hi, I've increased the minimum version to 1.26.2.

I'm looking forward to seeing the refactoring!

anowell commented 6 years ago

merged. thanks.