When I use `kubernetesx.PodBuilder(...).asStateful...
# kubernetes
l
When I use
kubernetesx.PodBuilder(...).asStatefulSetSpec()
, is there support to get my
volumeClaimTemplates
in the spec?
g
No, StatefulSet isn’t quite finished yet. You can use the
kx.StatefulSet
class directly to accomplish this, but you have to specify the
volumeClaimTemplates
manually as usual.
l
I thought so… 😏