class KuberKit::Core::Artifacts::AbstractArtifact

Attributes

name[R]

Public Class Methods

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

Public Instance Methods

namespace() click to toggle source
# File lib/kuber_kit/core/artifacts/abstract_artifact.rb, line 10
def namespace
  raise KuberKit::NotImplementedError, "must be implemented"
end