Skip to content
Snippets Groups Projects
Commit f96b5eae authored by Kamil Trzcińśki's avatar Kamil Trzcińśki
Browse files

Fix initial_status

parent a906752d
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -9,8 +9,6 @@ module Clusters
 
validates :cluster, presence: true
 
after_initialize :set_initial_status
default_value_for :ingress_type, :nginx
default_value_for :version, :nginx
 
Loading
Loading
@@ -22,8 +20,12 @@ module Clusters
self.to_s.demodulize.underscore
end
 
def set_initial_status
self.status = 0 unless cluster.application_helm_installed?
def initial_status
if cluster&.application_helm_installed?
:installable
else
:not_installable
end
end
 
def name
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment