Welcome to mirror list, hosted at ThFree Co, Russian Federation.

crossplane.rb « applications « clusters « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a7b4fb571490e6276d4a18291afa4664753e4e7e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# frozen_string_literal: true

module Clusters
  module Applications
    # DEPRECATED for removal in %14.0
    # See https://gitlab.com/groups/gitlab-org/-/epics/4280
    class Crossplane < ApplicationRecord
      VERSION = '0.4.1'

      self.table_name = 'clusters_applications_crossplane'

      include ::Clusters::Concerns::ApplicationCore
      include ::Clusters::Concerns::ApplicationStatus
      include ::Clusters::Concerns::ApplicationVersion
      include ::Clusters::Concerns::ApplicationData

      attribute :version, default: VERSION
      attribute :stack, default: ""

      validates :stack, presence: true

      def chart
        'crossplane/crossplane'
      end

      def repository
        'https://charts.crossplane.io/alpha'
      end

      def install_command
        helm_command_module::InstallCommand.new(
          name: 'crossplane',
          repository: repository,
          version: VERSION,
          rbac: cluster.platform_kubernetes_rbac?,
          chart: chart,
          files: files
        )
      end

      def values
        crossplane_values.to_yaml
      end

      private

      def crossplane_values
        {
          "clusterStacks" => {
             self.stack => {
               "deploy" => true
            }
          }
        }
      end
    end
  end
end