2018-10-25 01:38:44 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Clusters
|
|
|
|
module Applications
|
2019-03-28 09:17:42 -04:00
|
|
|
class Knative < ApplicationRecord
|
2019-12-17 13:07:48 -05:00
|
|
|
VERSION = '0.9.0'
|
2019-08-31 15:57:00 -04:00
|
|
|
REPOSITORY = 'https://storage.googleapis.com/triggermesh-charts'
|
|
|
|
METRICS_CONFIG = 'https://storage.googleapis.com/triggermesh-charts/istio-metrics.yaml'
|
2018-11-26 15:02:33 -05:00
|
|
|
FETCH_IP_ADDRESS_DELAY = 30.seconds
|
2019-11-21 07:06:40 -05:00
|
|
|
API_GROUPS_PATH = 'config/knative/api_groups.yml'
|
2018-10-28 20:36:26 -04:00
|
|
|
|
2018-10-25 01:38:44 -04:00
|
|
|
self.table_name = 'clusters_applications_knative'
|
|
|
|
|
2020-01-28 10:08:36 -05:00
|
|
|
has_one :serverless_domain_cluster, class_name: '::Serverless::DomainCluster', foreign_key: 'clusters_applications_knative_id', inverse_of: :knative
|
2019-12-14 10:07:56 -05:00
|
|
|
|
2018-10-25 01:38:44 -04:00
|
|
|
include ::Clusters::Concerns::ApplicationCore
|
|
|
|
include ::Clusters::Concerns::ApplicationStatus
|
|
|
|
include ::Clusters::Concerns::ApplicationVersion
|
|
|
|
include ::Clusters::Concerns::ApplicationData
|
2018-11-26 15:02:33 -05:00
|
|
|
include AfterCommitQueue
|
|
|
|
|
2019-11-29 04:06:31 -05:00
|
|
|
alias_method :original_set_initial_status, :set_initial_status
|
2018-12-13 10:39:44 -05:00
|
|
|
def set_initial_status
|
2019-11-29 04:06:31 -05:00
|
|
|
return unless cluster&.platform_kubernetes_rbac?
|
2018-12-13 10:39:44 -05:00
|
|
|
|
2019-11-29 04:06:31 -05:00
|
|
|
original_set_initial_status
|
2018-12-13 10:39:44 -05:00
|
|
|
end
|
|
|
|
|
2018-11-26 15:02:33 -05:00
|
|
|
state_machine :status do
|
2018-12-13 07:25:14 -05:00
|
|
|
after_transition any => [:installed] do |application|
|
2018-11-26 15:02:33 -05:00
|
|
|
application.run_after_commit do
|
|
|
|
ClusterWaitForIngressIpAddressWorker.perform_in(
|
|
|
|
FETCH_IP_ADDRESS_DELAY, application.name, application.id)
|
|
|
|
end
|
|
|
|
end
|
2020-02-27 10:09:24 -05:00
|
|
|
|
|
|
|
after_transition any => [:installed, :updated] do |application|
|
|
|
|
application.run_after_commit do
|
|
|
|
ClusterConfigureIstioWorker.perform_async(application.cluster_id)
|
|
|
|
end
|
|
|
|
end
|
2018-11-26 15:02:33 -05:00
|
|
|
end
|
2018-10-25 01:38:44 -04:00
|
|
|
|
|
|
|
default_value_for :version, VERSION
|
2018-11-06 02:55:18 -05:00
|
|
|
|
2018-11-07 00:33:16 -05:00
|
|
|
validates :hostname, presence: true, hostname: true
|
2018-11-03 13:48:48 -04:00
|
|
|
|
2018-12-06 13:08:49 -05:00
|
|
|
scope :for_cluster, -> (cluster) { where(cluster: cluster) }
|
|
|
|
|
2020-02-27 10:09:24 -05:00
|
|
|
has_one :pages_domain, through: :serverless_domain_cluster
|
|
|
|
|
2018-10-25 01:38:44 -04:00
|
|
|
def chart
|
|
|
|
'knative/knative'
|
|
|
|
end
|
|
|
|
|
2018-11-03 13:48:48 -04:00
|
|
|
def values
|
2018-11-06 04:48:29 -05:00
|
|
|
{ "domain" => hostname }.to_yaml
|
2018-11-03 13:48:48 -04:00
|
|
|
end
|
2018-10-25 01:38:44 -04:00
|
|
|
|
2020-02-27 10:09:24 -05:00
|
|
|
def available_domains
|
|
|
|
PagesDomain.instance_serverless
|
|
|
|
end
|
|
|
|
|
|
|
|
def find_available_domain(pages_domain_id)
|
|
|
|
available_domains.find_by(id: pages_domain_id)
|
|
|
|
end
|
|
|
|
|
2019-09-22 20:06:29 -04:00
|
|
|
def allowed_to_uninstall?
|
|
|
|
!pre_installed?
|
|
|
|
end
|
|
|
|
|
2018-11-03 13:48:48 -04:00
|
|
|
def install_command
|
2018-10-25 01:38:44 -04:00
|
|
|
Gitlab::Kubernetes::Helm::InstallCommand.new(
|
|
|
|
name: name,
|
|
|
|
version: VERSION,
|
|
|
|
rbac: cluster.platform_kubernetes_rbac?,
|
|
|
|
chart: chart,
|
|
|
|
files: files,
|
2018-12-20 22:38:50 -05:00
|
|
|
repository: REPOSITORY,
|
|
|
|
postinstall: install_knative_metrics
|
2018-10-25 01:38:44 -04:00
|
|
|
)
|
|
|
|
end
|
|
|
|
|
2018-11-26 15:02:33 -05:00
|
|
|
def schedule_status_update
|
|
|
|
return unless installed?
|
|
|
|
return if external_ip
|
2019-03-07 16:51:43 -05:00
|
|
|
return if external_hostname
|
2018-11-26 15:02:33 -05:00
|
|
|
|
|
|
|
ClusterWaitForIngressIpAddressWorker.perform_async(name, id)
|
2018-11-15 06:39:43 -05:00
|
|
|
end
|
|
|
|
|
2018-11-26 15:02:33 -05:00
|
|
|
def ingress_service
|
2020-02-05 04:08:43 -05:00
|
|
|
cluster.kubeclient.get_service('istio-ingressgateway', Clusters::Kubernetes::ISTIO_SYSTEM_NAMESPACE)
|
2018-11-26 15:02:33 -05:00
|
|
|
end
|
2018-11-06 02:55:18 -05:00
|
|
|
|
2019-07-31 07:58:38 -04:00
|
|
|
def uninstall_command
|
|
|
|
Gitlab::Kubernetes::Helm::DeleteCommand.new(
|
|
|
|
name: name,
|
|
|
|
rbac: cluster.platform_kubernetes_rbac?,
|
|
|
|
files: files,
|
|
|
|
predelete: delete_knative_services_and_metrics,
|
|
|
|
postdelete: delete_knative_istio_leftovers
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
2018-12-06 13:08:49 -05:00
|
|
|
private
|
|
|
|
|
2019-07-31 07:58:38 -04:00
|
|
|
def delete_knative_services_and_metrics
|
2019-08-02 15:45:43 -04:00
|
|
|
delete_knative_services + delete_knative_istio_metrics
|
2019-07-31 07:58:38 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def delete_knative_services
|
|
|
|
cluster.kubernetes_namespaces.map do |kubernetes_namespace|
|
2019-08-14 16:02:37 -04:00
|
|
|
Gitlab::Kubernetes::KubectlCmd.delete("ksvc", "--all", "-n", kubernetes_namespace.namespace)
|
2019-07-31 07:58:38 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def delete_knative_istio_leftovers
|
|
|
|
delete_knative_namespaces + delete_knative_and_istio_crds
|
|
|
|
end
|
|
|
|
|
|
|
|
def delete_knative_namespaces
|
|
|
|
[
|
2019-08-14 16:02:37 -04:00
|
|
|
Gitlab::Kubernetes::KubectlCmd.delete("--ignore-not-found", "ns", "knative-serving"),
|
|
|
|
Gitlab::Kubernetes::KubectlCmd.delete("--ignore-not-found", "ns", "knative-build")
|
2019-07-31 07:58:38 -04:00
|
|
|
]
|
|
|
|
end
|
|
|
|
|
|
|
|
def delete_knative_and_istio_crds
|
2019-11-21 07:06:40 -05:00
|
|
|
api_groups.map do |group|
|
|
|
|
Gitlab::Kubernetes::KubectlCmd.delete_crds_from_group(group)
|
2019-07-31 07:58:38 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# returns an array of CRDs to be postdelete since helm does not
|
|
|
|
# manage the CRDs it creates.
|
2019-11-21 07:06:40 -05:00
|
|
|
def api_groups
|
|
|
|
@api_groups ||= YAML.safe_load(File.read(Rails.root.join(API_GROUPS_PATH)))
|
2019-07-31 07:58:38 -04:00
|
|
|
end
|
|
|
|
|
2018-12-20 22:38:50 -05:00
|
|
|
def install_knative_metrics
|
2019-08-02 15:45:43 -04:00
|
|
|
return [] unless cluster.application_prometheus_available?
|
|
|
|
|
2019-08-14 16:02:37 -04:00
|
|
|
[Gitlab::Kubernetes::KubectlCmd.apply_file(METRICS_CONFIG)]
|
2018-12-20 22:38:50 -05:00
|
|
|
end
|
2018-12-13 10:39:44 -05:00
|
|
|
|
2019-07-31 07:58:38 -04:00
|
|
|
def delete_knative_istio_metrics
|
2019-08-02 15:45:43 -04:00
|
|
|
return [] unless cluster.application_prometheus_available?
|
|
|
|
|
2019-08-14 16:02:37 -04:00
|
|
|
[Gitlab::Kubernetes::KubectlCmd.delete("--ignore-not-found", "-f", METRICS_CONFIG)]
|
2019-07-31 07:58:38 -04:00
|
|
|
end
|
2018-10-25 01:38:44 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|