You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently it's possible to spawn a new app with custom metadata on it but those are not copied to the spark instances oshinko is starting.. so for instance if I run:
it will create tag app=handler-$SECONDS on the build, dc, is resources, but spark master and workers don't have this tag. Later on if I want to delete everything the previous command has created, I had to do something like this:
oc delete all -l app=handler-$SECONDS
oc delete all -l oshinko-cluster=sparky-$SECONDS
Because, the tag oshinko-cluster=sparky-$SECONDS is implicitly added to each spark pod and dc.
It would be useful to have a way to propagate the user custom labels on those spark cluster resources so that only oc delete all -l app=handler-$SECONDS would be enough,
The text was updated successfully, but these errors were encountered:
Currently it's possible to spawn a new app with custom metadata on it but those are not copied to the spark instances oshinko is starting.. so for instance if I run:
it will create tag
app=handler-$SECONDS
on the build, dc, is resources, but spark master and workers don't have this tag. Later on if I want to delete everything the previous command has created, I had to do something like this:Because, the tag
oshinko-cluster=sparky-$SECONDS
is implicitly added to each spark pod and dc.It would be useful to have a way to propagate the user custom labels on those spark cluster resources so that only
oc delete all -l app=handler-$SECONDS
would be enough,The text was updated successfully, but these errors were encountered: