module Commands::CreateDatabase

Public Instance Methods

create_db(name, type, environment) click to toggle source
# File lib/busbar_cli/commands/create_database.rb, line 10
def create_db(name, type, environment)
  Services::Kube.configure_temporary_profile(options.profile)

  Services::DatabaseCreator.call(name, type, environment)
end