BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
67e12219
Commit
67e12219
authored
Nov 07, 2017
by
Kamil Trzcinski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rework initial state
parent
1bd1d462
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
5 deletions
+7
-5
helm.rb
app/models/clusters/applications/helm.rb
+6
-4
application_status.rb
app/models/clusters/concerns/application_status.rb
+1
-1
No files found.
app/models/clusters/applications/helm.rb
View file @
67e12219
...
...
@@ -11,14 +11,16 @@ module Clusters
validates
:cluster
,
presence:
true
after_initialize
:set_initial_status
def
self
.
application_name
self
.
to_s
.
demodulize
.
underscore
end
def
set_initial_status
self
.
status
=
0
unless
cluster
&
.
platform_kubernetes_active?
def
initial_status
if
cluster
&
.
platform_kubernetes_active?
:installable
else
:not_installable
end
end
def
name
...
...
app/models/clusters/concerns/application_status.rb
View file @
67e12219
...
...
@@ -4,7 +4,7 @@ module Clusters
extend
ActiveSupport
::
Concern
included
do
state_machine
:status
,
initial:
:installable
do
state_machine
:status
,
initial:
->
(
application
)
{
application
.
initial_status
}
do
state
:not_installable
,
value:
-
2
state
:errored
,
value:
-
1
state
:installable
,
value:
0
...
...
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