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
We currently use git submodules to manage some dependencies, and it makes it impossible to use cuber without some creativity.
Currently, it makes it difficult to decouple packaging the docker image with deploying. So currently, I have a vendored version that adds a rollout command that let's us add some hooks. but that's less than satisfying.
I would also be happier if it was easier to hook into the cli interface instead of having to play arround with ARGV.
require_relative'deploy'# require shmoduleCuber::CommandsclassRollout < Cuber::Commands::Deploydefpre_checkoutputs"Pre-checkout"enddefpost_checkoutputs"Do submodule things"enddefexecuteif@options[:release]print_step'Deploying a past release'elsepre_checkoutcheckoutpost_checkoutset_release_nameif@options[:buildpacks]packelsebuildpushendendconfigureapplyrolloutendendend
The text was updated successfully, but these errors were encountered:
We currently use git submodules to manage some dependencies, and it makes it impossible to use cuber without some creativity.
Currently, it makes it difficult to decouple packaging the docker image with deploying. So currently, I have a vendored version that adds a
rollout
command that let's us add some hooks. but that's less than satisfying.I would also be happier if it was easier to hook into the cli interface instead of having to play arround with
ARGV
.In a custom Rakefile
The text was updated successfully, but these errors were encountered: