summaryrefslogtreecommitdiff
path: root/app/models/clusters/applications/crossplane.rb
blob: 36246b26066c187d795fb71c7409314c3997b851 (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
59
60
# frozen_string_literal: true

module Clusters
  module Applications
    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

      default_value_for :version, VERSION

      default_value_for :stack do |crossplane|
        ''
      end

      validates :stack, presence: true

      def chart
        'crossplane/crossplane'
      end

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

      def install_command
        Gitlab::Kubernetes::Helm::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,
                  "version" => "alpha"
            }
          }
        }
      end
    end
  end
end