debian-mirror-gitlab/app/models/clusters/concerns/application_core.rb

90 lines
2.2 KiB
Ruby
Raw Normal View History

2018-11-18 11:00:15 +05:30
# frozen_string_literal: true
2018-03-17 18:26:18 +05:30
module Clusters
module Concerns
module ApplicationCore
extend ActiveSupport::Concern
included do
2021-06-08 01:23:25 +05:30
include ::Clusters::Concerns::KubernetesLogger
2018-03-17 18:26:18 +05:30
belongs_to :cluster, class_name: 'Clusters::Cluster', foreign_key: :cluster_id
validates :cluster, presence: true
after_initialize :set_initial_status
2021-01-29 00:20:46 +05:30
def helm_command_module
case cluster.helm_major_version
when 3
Gitlab::Kubernetes::Helm::V3
when 2
Gitlab::Kubernetes::Helm::V2
else
raise "Invalid Helm major version"
end
end
2018-03-17 18:26:18 +05:30
def set_initial_status
return unless not_installable?
2020-10-24 23:57:45 +05:30
self.status = status_states[:installable]
2018-03-17 18:26:18 +05:30
end
2019-07-31 22:56:46 +05:30
def can_uninstall?
allowed_to_uninstall?
end
# All new applications should uninstall by default
# Override if there's dependencies that needs to be uninstalled first
def allowed_to_uninstall?
true
end
2018-03-17 18:26:18 +05:30
def self.application_name
self.to_s.demodulize.underscore
end
2019-12-04 20:38:33 +05:30
def self.association_name
:"application_#{application_name}"
end
2018-03-17 18:26:18 +05:30
def name
self.class.application_name
end
2018-03-27 19:54:05 +05:30
def schedule_status_update
# Override if you need extra data synchronized
# from K8s after installation
end
2019-07-07 11:18:12 +05:30
def update_command
install_command.tap do |command|
command.version = version
end
end
2019-09-30 21:07:59 +05:30
2021-02-22 17:27:13 +05:30
def uninstall_command
helm_command_module::DeleteCommand.new(
name: name,
rbac: cluster.platform_kubernetes_rbac?,
files: files
)
end
2019-09-30 21:07:59 +05:30
def prepare_uninstall
# Override if your application needs any action before
# being uninstalled by Helm
end
def post_uninstall
# Override if your application needs any action after
# being uninstalled by Helm
end
2018-03-17 18:26:18 +05:30
end
end
end
end
2019-12-21 20:55:43 +05:30
2021-06-08 01:23:25 +05:30
Clusters::Concerns::ApplicationCore.prepend_mod_with('Clusters::Concerns::ApplicationCore')