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
0
Merge Requests
0
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
Léo-Paul Géneau
gitlab-ce
Commits
1a79beff
Commit
1a79beff
authored
Mar 26, 2018
by
Mayra Cabrera
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Re-arrange deployment_platform to avoid cop complainments
parent
ca59bfdc
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
4 deletions
+10
-4
app/models/concerns/deployment_platform.rb
app/models/concerns/deployment_platform.rb
+10
-4
No files found.
app/models/concerns/deployment_platform.rb
View file @
1a79beff
module
DeploymentPlatform
module
DeploymentPlatform
# EE would override this and utilize environment argument
# EE would override this and utilize environment argument
# rubocop:disable Gitlab/ModuleWithInstanceVariables
def
deployment_platform
(
environment:
nil
)
def
deployment_platform
(
environment:
nil
)
@deployment_platform
||=
@deployment_platform
||=
{}
find_cluster_platform_kubernetes
(
environment:
environment
)
||
find_kubernetes_service_integration
||
@deployment_platform
[
environment
]
||=
find_deployment_platform
(
environment
)
build_cluster_and_deployment_platform
end
end
private
private
def
find_deployment_platform
(
environment
)
find_cluster_platform_kubernetes
(
environment:
environment
)
||
find_kubernetes_service_integration
||
build_cluster_and_deployment_platform
end
# EE would override this and utilize environment argument
# EE would override this and utilize environment argument
def
find_cluster_platform_kubernetes
(
environment:
nil
)
def
find_cluster_platform_kubernetes
(
environment:
nil
)
clusters
.
enabled
.
default_environment
clusters
.
enabled
.
default_environment
...
...
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