bitnami / kube-libsonnet

Bitnami's jsonnet library for building Kubernetes manifests
https://bitnami.com
Apache License 2.0
172 stars 49 forks source link

Update to require min k8s 1.9 #23

Closed mkmik closed 5 years ago

mkmik commented 5 years ago

https://github.com/kubernetes/kubernetes/blob/master/CHANGELOG-1.15.md#deprecations-and-removals mentions:

DaemonSet, Deployment, and ReplicaSet resources will no longer be served from extensions/v1beta1, apps/v1beta1, or apps/v1beta2 in v1.16. Migrate to the apps/v1 API, available since v1.9. Existing persisted data can be retrieved via the apps/v1 API.

Also added the minimum supported version in the kube.libsonnet excplicitly.

jjo commented 5 years ago

Addresses some of #22 -- it'd be cool to assert if there are any preset fields that would need care/adapting.

mkmik commented 5 years ago

Addresses some of #22 -- it'd be cool to assert if there are any preset fields that would need care/adapting.

I tried to figure out what actually changes between v1beta2 and v1 but I failed to find anything interesting. Could it be that they just promoted v1beta2 into v1 without changes in semantics?