2018-11-18 11:00:15 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
module Clusters
|
|
|
|
module Applications
|
2021-03-11 19:13:27 +05:30
|
|
|
# DEPRECATED for removal in %14.0
|
|
|
|
# See https://gitlab.com/groups/gitlab-org/-/epics/4280
|
2019-07-07 11:18:12 +05:30
|
|
|
class Ingress < ApplicationRecord
|
2020-10-24 23:57:45 +05:30
|
|
|
VERSION = '1.40.2'
|
2020-04-08 14:13:33 +05:30
|
|
|
INGRESS_CONTAINER_NAME = 'nginx-ingress-controller'
|
2018-11-18 11:00:15 +05:30
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
self.table_name = 'clusters_applications_ingress'
|
|
|
|
|
|
|
|
include ::Clusters::Concerns::ApplicationCore
|
|
|
|
include ::Clusters::Concerns::ApplicationStatus
|
2018-11-18 11:00:15 +05:30
|
|
|
include ::Clusters::Concerns::ApplicationVersion
|
2018-03-27 19:54:05 +05:30
|
|
|
include ::Clusters::Concerns::ApplicationData
|
|
|
|
include AfterCommitQueue
|
2020-05-24 23:13:21 +05:30
|
|
|
include UsageStatistics
|
2018-03-17 18:26:18 +05:30
|
|
|
|
2023-01-13 00:05:48 +05:30
|
|
|
attribute :version, default: VERSION
|
2021-09-04 01:27:46 +05:30
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
enum ingress_type: {
|
|
|
|
nginx: 1
|
2023-01-13 00:05:48 +05:30
|
|
|
}, _default: :nginx
|
2018-03-17 18:26:18 +05:30
|
|
|
|
2018-03-27 19:54:05 +05:30
|
|
|
FETCH_IP_ADDRESS_DELAY = 30.seconds
|
|
|
|
|
|
|
|
state_machine :status do
|
2019-02-15 15:39:39 +05:30
|
|
|
after_transition any => [:installed] do |application|
|
2018-03-27 19:54:05 +05:30
|
|
|
application.run_after_commit do
|
|
|
|
ClusterWaitForIngressIpAddressWorker.perform_in(
|
|
|
|
FETCH_IP_ADDRESS_DELAY, application.name, application.id)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
def chart
|
2020-10-24 23:57:45 +05:30
|
|
|
"#{name}/nginx-ingress"
|
|
|
|
end
|
|
|
|
|
|
|
|
def repository
|
|
|
|
'https://gitlab-org.gitlab.io/cluster-integration/helm-stable-archive'
|
2018-03-17 18:26:18 +05:30
|
|
|
end
|
|
|
|
|
2019-12-04 20:38:33 +05:30
|
|
|
def values
|
|
|
|
content_values.to_yaml
|
|
|
|
end
|
|
|
|
|
2019-07-31 22:56:46 +05:30
|
|
|
def allowed_to_uninstall?
|
2020-04-22 19:07:51 +05:30
|
|
|
external_ip_or_hostname? && !application_jupyter_installed?
|
2019-07-31 22:56:46 +05:30
|
|
|
end
|
|
|
|
|
2018-03-27 19:54:05 +05:30
|
|
|
def install_command
|
2021-01-29 00:20:46 +05:30
|
|
|
helm_command_module::InstallCommand.new(
|
2018-11-18 11:00:15 +05:30
|
|
|
name: name,
|
2020-10-24 23:57:45 +05:30
|
|
|
repository: repository,
|
2018-11-18 11:00:15 +05:30
|
|
|
version: VERSION,
|
2018-11-20 20:47:30 +05:30
|
|
|
rbac: cluster.platform_kubernetes_rbac?,
|
2018-03-27 19:54:05 +05:30
|
|
|
chart: chart,
|
2020-10-24 23:57:45 +05:30
|
|
|
files: files
|
2018-03-27 19:54:05 +05:30
|
|
|
)
|
2018-03-17 18:26:18 +05:30
|
|
|
end
|
|
|
|
|
2019-09-30 21:07:59 +05:30
|
|
|
def external_ip_or_hostname?
|
|
|
|
external_ip.present? || external_hostname.present?
|
|
|
|
end
|
|
|
|
|
2018-03-27 19:54:05 +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
|
2018-03-27 19:54:05 +05:30
|
|
|
|
|
|
|
ClusterWaitForIngressIpAddressWorker.perform_async(name, id)
|
2018-03-17 18:26:18 +05:30
|
|
|
end
|
2019-02-15 15:39:39 +05:30
|
|
|
|
|
|
|
def ingress_service
|
2020-04-08 14:13:33 +05:30
|
|
|
cluster.kubeclient.get_service("ingress-#{INGRESS_CONTAINER_NAME}", Gitlab::Kubernetes::Helm::NAMESPACE)
|
2019-02-15 15:39:39 +05:30
|
|
|
end
|
2019-09-30 21:07:59 +05:30
|
|
|
|
|
|
|
private
|
|
|
|
|
2019-12-04 20:38:33 +05:30
|
|
|
def content_values
|
2021-09-04 01:27:46 +05:30
|
|
|
YAML.load_file(chart_values_file)
|
2019-12-04 20:38:33 +05:30
|
|
|
end
|
|
|
|
|
2020-04-22 19:07:51 +05:30
|
|
|
def application_jupyter_installed?
|
|
|
|
cluster.application_jupyter&.installed?
|
|
|
|
end
|
2018-03-17 18:26:18 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|