class KuberKit::Core::Registries::AbstractRegistry

Attributes

name[R]

Public Class Methods

new(registry_name) click to toggle source
# File lib/kuber_kit/core/registries/abstract_registry.rb, line 6
def initialize(registry_name)
  @name = registry_name
end

Public Instance Methods

local?() click to toggle source
# File lib/kuber_kit/core/registries/abstract_registry.rb, line 22
def local?
  raise KuberKit::NotImplementedError, "must be implemented"
end
path() click to toggle source
# File lib/kuber_kit/core/registries/abstract_registry.rb, line 10
def path
  raise KuberKit::NotImplementedError, "must be implemented"
end
remote?() click to toggle source
# File lib/kuber_kit/core/registries/abstract_registry.rb, line 18
def remote?
  raise KuberKit::NotImplementedError, "must be implemented"
end
remote_path() click to toggle source
# File lib/kuber_kit/core/registries/abstract_registry.rb, line 14
def remote_path
  raise KuberKit::NotImplementedError, "must be implemented"
end