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

91 lines
2.5 KiB
Ruby
Raw Normal View History

2018-12-13 13:39:08 +05:30
# frozen_string_literal: true
module Clusters
module Applications
2019-06-05 12:25:43 +05:30
class Knative < ApplicationRecord
2019-09-30 21:07:59 +05:30
VERSION = '0.6.0'.freeze
2018-12-13 13:39:08 +05:30
REPOSITORY = 'https://storage.googleapis.com/triggermesh-charts'.freeze
2019-02-15 15:39:39 +05:30
METRICS_CONFIG = 'https://storage.googleapis.com/triggermesh-charts/istio-metrics.yaml'.freeze
FETCH_IP_ADDRESS_DELAY = 30.seconds
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
2019-02-15 15:39:39 +05:30
include AfterCommitQueue
def set_initial_status
return unless not_installable?
return unless verify_cluster?
self.status = 'installable'
end
state_machine :status do
after_transition any => [:installed] do |application|
application.run_after_commit do
ClusterWaitForIngressIpAddressWorker.perform_in(
FETCH_IP_ADDRESS_DELAY, application.name, application.id)
end
end
end
2018-12-13 13:39:08 +05:30
default_value_for :version, VERSION
validates :hostname, presence: true, hostname: true
2019-02-15 15:39:39 +05:30
scope :for_cluster, -> (cluster) { where(cluster: cluster) }
2018-12-13 13:39:08 +05:30
def chart
'knative/knative'
end
def values
{ "domain" => hostname }.to_yaml
end
2019-07-31 22:56:46 +05:30
# Handled in a new issue:
# https://gitlab.com/gitlab-org/gitlab-ce/issues/59369
def allowed_to_uninstall?
false
end
2018-12-13 13:39:08 +05:30
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,
2019-02-15 15:39:39 +05:30
postinstall: install_knative_metrics
2018-12-13 13:39:08 +05:30
)
end
2019-02-15 15:39:39 +05:30
def schedule_status_update
return unless installed?
return if external_ip
2019-07-07 11:18:12 +05:30
return if external_hostname
2019-02-15 15:39:39 +05:30
ClusterWaitForIngressIpAddressWorker.perform_async(name, id)
end
def ingress_service
2019-07-07 11:18:12 +05:30
cluster.kubeclient.get_service('istio-ingressgateway', 'istio-system')
2019-02-15 15:39:39 +05:30
end
2018-12-13 13:39:08 +05:30
private
2019-02-15 15:39:39 +05:30
def install_knative_metrics
["kubectl apply -f #{METRICS_CONFIG}"] if cluster.application_prometheus_available?
end
def verify_cluster?
cluster&.application_helm_available? && cluster&.platform_kubernetes_rbac?
2018-12-13 13:39:08 +05:30
end
end
end
end