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
6eced5ff
Commit
6eced5ff
authored
Nov 20, 2018
by
Amit Rathi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove linter complaints from cert_manager.rb
parent
4ac475eb
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
49 additions
and
49 deletions
+49
-49
app/models/clusters/applications/cert_manager.rb
app/models/clusters/applications/cert_manager.rb
+49
-49
No files found.
app/models/clusters/applications/cert_manager.rb
View file @
6eced5ff
# frozen_string_literal: true
module
Clusters
module
Applications
class
CertManager
<
ActiveRecord
::
Base
VERSION
=
'v0.5.0'
.
freeze
self
.
table_name
=
'clusters_applications_cert_managers'
include
::
Clusters
::
Concerns
::
ApplicationCore
include
::
Clusters
::
Concerns
::
ApplicationStatus
include
::
Clusters
::
Concerns
::
ApplicationVersion
include
::
Clusters
::
Concerns
::
ApplicationData
default_value_for
:version
,
VERSION
def
chart
'stable/cert-manager'
end
def
install_command
Gitlab
::
Kubernetes
::
Helm
::
InstallCommand
.
new
(
name:
'certmanager'
,
version:
VERSION
,
rbac:
cluster
.
platform_kubernetes_rbac?
,
chart:
chart
,
files:
files
.
merge
(
cluster_issuer_file
),
postinstall:
post_install_script
)
end
private
def
post_install_script
[
"/usr/bin/kubectl create -f /data/helm/certmanager/config/cluster_issuer.yaml"
]
end
def
cluster_issuer_file
{
'cluster_issuer.yaml'
:
cluster_issuer_yaml_content
}
end
def
cluster_issuer_yaml_content
data
=
YAML
.
load_file
(
cluster_issuer_file_path
)
data
[
"spec"
][
"acme"
][
"email"
]
=
self
.
email
YAML
.
dump
(
data
)
end
def
cluster_issuer_file_path
"
#{
Rails
.
root
}
/vendor/cert_manager/cluster_issuer.yaml"
end
module
Applications
class
CertManager
<
ActiveRecord
::
Base
VERSION
=
'v0.5.0'
.
freeze
self
.
table_name
=
'clusters_applications_cert_managers'
include
::
Clusters
::
Concerns
::
ApplicationCore
include
::
Clusters
::
Concerns
::
ApplicationStatus
include
::
Clusters
::
Concerns
::
ApplicationVersion
include
::
Clusters
::
Concerns
::
ApplicationData
default_value_for
:version
,
VERSION
def
chart
'stable/cert-manager'
end
def
install_command
Gitlab
::
Kubernetes
::
Helm
::
InstallCommand
.
new
(
name:
'certmanager'
,
version:
VERSION
,
rbac:
cluster
.
platform_kubernetes_rbac?
,
chart:
chart
,
files:
files
.
merge
(
cluster_issuer_file
),
postinstall:
post_install_script
)
end
private
def
post_install_script
[
"/usr/bin/kubectl create -f /data/helm/certmanager/config/cluster_issuer.yaml"
]
end
def
cluster_issuer_file
{
'cluster_issuer.yaml'
:
cluster_issuer_yaml_content
}
end
def
cluster_issuer_yaml_content
data
=
YAML
.
load_file
(
cluster_issuer_file_path
)
data
[
"spec"
][
"acme"
][
"email"
]
=
self
.
email
YAML
.
dump
(
data
)
end
def
cluster_issuer_file_path
"
#{
Rails
.
root
}
/vendor/cert_manager/cluster_issuer.yaml"
end
end
end
end
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