96 lines
2.6 KiB
Ruby
96 lines
2.6 KiB
Ruby
|
module Gitlab
|
||
|
module Kubernetes
|
||
|
module Helm
|
||
|
class Pod
|
||
|
def initialize(command, namespace_name, kubeclient)
|
||
|
@command = command
|
||
|
@namespace_name = namespace_name
|
||
|
@kubeclient = kubeclient
|
||
|
end
|
||
|
|
||
|
def generate
|
||
|
spec = { containers: [container_specification], restartPolicy: 'Never' }
|
||
|
|
||
|
if command.chart_values_file
|
||
|
create_config_map
|
||
|
spec[:volumes] = volumes_specification
|
||
|
end
|
||
|
|
||
|
::Kubeclient::Resource.new(metadata: metadata, spec: spec)
|
||
|
end
|
||
|
|
||
|
private
|
||
|
|
||
|
attr_reader :command, :namespace_name, :kubeclient
|
||
|
|
||
|
def container_specification
|
||
|
container = {
|
||
|
name: 'helm',
|
||
|
image: 'alpine:3.6',
|
||
|
env: generate_pod_env(command),
|
||
|
command: %w(/bin/sh),
|
||
|
args: %w(-c $(COMMAND_SCRIPT))
|
||
|
}
|
||
|
container[:volumeMounts] = volume_mounts_specification if command.chart_values_file
|
||
|
container
|
||
|
end
|
||
|
|
||
|
def labels
|
||
|
{
|
||
|
'gitlab.org/action': 'install',
|
||
|
'gitlab.org/application': command.name
|
||
|
}
|
||
|
end
|
||
|
|
||
|
def metadata
|
||
|
{
|
||
|
name: command.pod_name,
|
||
|
namespace: namespace_name,
|
||
|
labels: labels
|
||
|
}
|
||
|
end
|
||
|
|
||
|
def volume_mounts_specification
|
||
|
[
|
||
|
{
|
||
|
name: 'configuration-volume',
|
||
|
mountPath: "/data/helm/#{command.name}/config"
|
||
|
}
|
||
|
]
|
||
|
end
|
||
|
|
||
|
def volumes_specification
|
||
|
[
|
||
|
{
|
||
|
name: 'configuration-volume',
|
||
|
configMap: {
|
||
|
name: "values-content-configuration-#{command.name}",
|
||
|
items: [{ key: 'values', path: 'values.yaml' }]
|
||
|
}
|
||
|
}
|
||
|
]
|
||
|
end
|
||
|
|
||
|
def generate_pod_env(command)
|
||
|
{
|
||
|
HELM_VERSION: Gitlab::Kubernetes::Helm::HELM_VERSION,
|
||
|
TILLER_NAMESPACE: namespace_name,
|
||
|
COMMAND_SCRIPT: command.generate_script(namespace_name)
|
||
|
}.map { |key, value| { name: key, value: value } }
|
||
|
end
|
||
|
|
||
|
def create_config_map
|
||
|
resource = ::Kubeclient::Resource.new
|
||
|
resource.metadata = {
|
||
|
name: "values-content-configuration-#{command.name}",
|
||
|
namespace: namespace_name,
|
||
|
labels: { name: "values-content-configuration-#{command.name}" }
|
||
|
}
|
||
|
resource.data = { values: File.read(command.chart_values_file) }
|
||
|
kubeclient.create_config_map(resource)
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|