summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--app/models/clusters/applications/ingress.rb10
1 files changed, 6 insertions, 4 deletions
diff --git a/app/models/clusters/applications/ingress.rb b/app/models/clusters/applications/ingress.rb
index 8cb1ed68de9..c97e9db925e 100644
--- a/app/models/clusters/applications/ingress.rb
+++ b/app/models/clusters/applications/ingress.rb
@@ -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
@@ -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