debian-mirror-gitlab/app/models/clusters/concerns/application_data.rb

42 lines
737 B
Ruby
Raw Normal View History

2018-11-18 11:00:15 +05:30
# frozen_string_literal: true
2018-03-27 19:54:05 +05:30
module Clusters
module Concerns
module ApplicationData
2019-09-04 21:01:54 +05:30
def repository
nil
end
2018-03-27 19:54:05 +05:30
2019-09-04 21:01:54 +05:30
def values
File.read(chart_values_file)
end
2018-03-27 19:54:05 +05:30
2019-09-04 21:01:54 +05:30
def files
2020-10-24 23:57:45 +05:30
@files ||= { 'values.yaml': values }
2019-09-04 21:01:54 +05:30
end
2018-11-18 11:00:15 +05:30
2019-09-04 21:01:54 +05:30
private
2018-03-27 19:54:05 +05:30
2019-09-04 21:01:54 +05:30
def certificate_files
{
'ca.pem': ca_cert,
'cert.pem': helm_cert.cert_string,
'key.pem': helm_cert.key_string
}
end
2018-11-18 11:00:15 +05:30
2019-09-04 21:01:54 +05:30
def ca_cert
cluster.application_helm.ca_cert
end
2018-11-18 11:00:15 +05:30
2019-09-04 21:01:54 +05:30
def helm_cert
@helm_cert ||= cluster.application_helm.issue_client_cert
end
2018-11-18 11:00:15 +05:30
2019-09-04 21:01:54 +05:30
def chart_values_file
"#{Rails.root}/vendor/#{name}/values.yaml"
2018-03-27 19:54:05 +05:30
end
end
end
end