Changing what operator actually deploys. Replication controllers are considered as a low-lvl detail k8s resources and don't allow for durable data (one can't assign the persistent volume to a certain replica managed by RC).
This changes replication controllers to stateful sets, it's wip, because the volumeClaimTemplates are still not there.
Description
after applying the example/cluster.yaml:
λ oc get rc
No resources found.
λ oc get statefulsets
NAME READY AGE
my-spark-cluster-m 1/1 3m6s
my-spark-cluster-w 2/2 3m6s
:sparkles: New feature (non-breaking change which adds functionality)
Changing what operator actually deploys. Replication controllers are considered as a low-lvl detail k8s resources and don't allow for durable data (one can't assign the persistent volume to a certain replica managed by RC).
This changes replication controllers to stateful sets, it's
wip
, because thevolumeClaimTemplates
are still not there.Description
after applying the
example/cluster.yaml
::sparkles: New feature (non-breaking change which adds functionality)