summaryrefslogtreecommitdiff
path: root/app/models/clusters/applications/helm.rb
blob: 42626a501757f72e64f10cabef463d768f9f2dd9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
module Clusters
  module Applications
    class Helm < ActiveRecord::Base
      self.table_name = 'clusters_applications_helm'

      include ::Clusters::Concerns::ApplicationStatus

      belongs_to :cluster, class_name: 'Clusters::Cluster', foreign_key: :cluster_id

      default_value_for :version, Gitlab::Kubernetes::Helm::HELM_VERSION

      validates :cluster, presence: true

      def self.application_name
        self.to_s.demodulize.underscore
      end

      def name
        self.class.application_name
      end
    end
  end
end