Class: Actions::Katello::Repository::CloneToEnvironment
- Inherits:
-
Base
- Object
- Base
- Actions::Katello::Repository::CloneToEnvironment
- Defined in:
- app/lib/actions/katello/repository/clone_to_environment.rb
Overview
Clones the contnet of the repository into the environment effectively promotion the repository to the environment
Instance Method Summary collapse
-
#find_or_build_environment_clone(repository, environment) ⇒ Object
The environment clone clone of the repository is the one visible for the systems in the environment.
- #plan(repository, environment) ⇒ Object
Instance Method Details
#find_or_build_environment_clone(repository, environment) ⇒ Object
The environment clone clone of the repository is the one visible for the systems in the environment
21 22 23 24 25 26 27 28 29 30 31 32 |
# File 'app/lib/actions/katello/repository/clone_to_environment.rb', line 21 def find_or_build_environment_clone(repository, environment) version = repository.content_view_version clone = version.content_view.get_repo_clone(environment, repository).first if clone clone = ::Katello::Repository.find(clone.id) # reload readonly object clone.update!(content_view_version_id: version.id) else clone = repository.build_clone(environment: environment, content_view: version.content_view) end return clone end |
#plan(repository, environment) ⇒ Object
7 8 9 10 11 12 13 14 15 16 17 |
# File 'app/lib/actions/katello/repository/clone_to_environment.rb', line 7 def plan(repository, environment) clone = find_or_build_environment_clone(repository, environment) sequence do if clone.new_record? plan_action(Repository::Create, clone, clone: true) end plan_action(::Actions::Katello::Repository::CloneContents, [repository], clone, :copy_contents => !clone.yum?) end end |