summaryrefslogtreecommitdiff
path: root/app/models/clusters/applications/helm.rb
blob: d60bb7dcd02e13657456c1ecc7afe150797f2a18 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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 initial_status
        if cluster&.platform_kubernetes_active?
          :installable
        else
          :not_installable
        end
      end

      def name
        self.class.application_name
      end
    end
  end
end