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

94 lines
2.8 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 ApplicationStatus
extend ActiveSupport::Concern
included do
2019-05-30 16:15:17 +05:30
scope :installed, -> { where(status: self.state_machines[:status].states[:installed].value) }
2018-05-09 12:01:36 +05:30
2018-03-17 18:26:18 +05:30
state_machine :status, initial: :not_installable do
state :not_installable, value: -2
state :errored, value: -1
state :installable, value: 0
state :scheduled, value: 1
state :installing, value: 2
state :installed, value: 3
2018-12-05 23:21:45 +05:30
state :updating, value: 4
state :updated, value: 5
state :update_errored, value: 6
2018-03-17 18:26:18 +05:30
event :make_scheduled do
2019-03-02 22:35:43 +05:30
transition [:installable, :errored, :installed, :updated, :update_errored] => :scheduled
2018-03-17 18:26:18 +05:30
end
event :make_installing do
transition [:scheduled] => :installing
end
event :make_installed do
transition [:installing] => :installed
2019-03-02 22:35:43 +05:30
transition [:updating] => :updated
2018-03-17 18:26:18 +05:30
end
event :make_errored do
2019-03-02 22:35:43 +05:30
transition any - [:updating] => :errored
transition [:updating] => :update_errored
2018-03-17 18:26:18 +05:30
end
2018-12-05 23:21:45 +05:30
event :make_updating do
2019-03-02 22:35:43 +05:30
transition [:installed, :updated, :update_errored, :scheduled] => :updating
2018-12-05 23:21:45 +05:30
end
2019-05-30 16:15:17 +05:30
# Deprecated
event :make_updated do
transition [:updating] => :updated
end
2018-12-05 23:21:45 +05:30
event :make_update_errored do
transition any => :update_errored
end
2018-03-17 18:26:18 +05:30
before_transition any => [:scheduled] do |app_status, _|
app_status.status_reason = nil
end
before_transition any => [:errored] do |app_status, transition|
status_reason = transition.args.first
app_status.status_reason = status_reason if status_reason
end
2018-12-05 23:21:45 +05:30
before_transition any => [:updating] do |app_status, _|
app_status.status_reason = nil
end
before_transition any => [:update_errored] do |app_status, transition|
status_reason = transition.args.first
app_status.status_reason = status_reason if status_reason
end
2019-02-15 15:39:39 +05:30
before_transition any => [:installed, :updated] do |app_status, _|
# When installing any application we are also performing an update
# of tiller (see Gitlab::Kubernetes::Helm::ClientCommand) so
# therefore we need to reflect that in the database.
app_status.cluster.application_helm.update!(version: Gitlab::Kubernetes::Helm::HELM_VERSION)
end
2018-03-17 18:26:18 +05:30
end
end
2018-12-13 13:39:08 +05:30
2019-03-02 22:35:43 +05:30
def updateable?
installed? || updated? || update_errored?
end
2018-12-13 13:39:08 +05:30
def available?
installed? || updated?
end
2019-03-02 22:35:43 +05:30
def update_in_progress?
updating?
end
2018-03-17 18:26:18 +05:30
end
end
end