Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
f96b5eae
Commit
f96b5eae
authored
Nov 07, 2017
by
Kamil Trzcinski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix initial_status
parent
a906752d
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
4 deletions
+6
-4
app/models/clusters/applications/ingress.rb
app/models/clusters/applications/ingress.rb
+6
-4
No files found.
app/models/clusters/applications/ingress.rb
View file @
f96b5eae
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment