debian-mirror-gitlab/app/models/clusters/applications/knative.rb

52 lines
1.3 KiB
Ruby
Raw Normal View History

2018-12-13 13:39:08 +05:30
# frozen_string_literal: true
module Clusters
module Applications
class Knative < ActiveRecord::Base
VERSION = '0.1.3'.freeze
REPOSITORY = 'https://storage.googleapis.com/triggermesh-charts'.freeze
2019-01-03 12:48:30 +05:30
# This is required for helm version <= 2.10.x in order to support
# Setting up CRDs
ISTIO_CRDS = 'https://storage.googleapis.com/triggermesh-charts/istio-crds.yaml'.freeze
2018-12-13 13:39:08 +05:30
self.table_name = 'clusters_applications_knative'
include ::Clusters::Concerns::ApplicationCore
include ::Clusters::Concerns::ApplicationStatus
include ::Clusters::Concerns::ApplicationVersion
include ::Clusters::Concerns::ApplicationData
default_value_for :version, VERSION
validates :hostname, presence: true, hostname: true
def chart
'knative/knative'
end
def values
{ "domain" => hostname }.to_yaml
end
def install_command
Gitlab::Kubernetes::Helm::InstallCommand.new(
name: name,
version: VERSION,
rbac: cluster.platform_kubernetes_rbac?,
chart: chart,
files: files,
2019-01-03 12:48:30 +05:30
repository: REPOSITORY,
preinstall: install_script
2018-12-13 13:39:08 +05:30
)
end
private
2019-01-03 12:48:30 +05:30
def install_script
["/usr/bin/kubectl apply -f #{ISTIO_CRDS} >/dev/null"]
2018-12-13 13:39:08 +05:30
end
end
end
end