summaryrefslogtreecommitdiff
path: root/app/models/clusters/applications/helm.rb
blob: 863f9b9d8349bd53325795190009fc6ab61d21c0 (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
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

      after_initialize :set_initial_status

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

      def set_initial_status
        self.status = 0 unless cluster&.platform_kubernetes_active?
      end

      def name
        self.class.application_name
      end
    end
  end
end