summaryrefslogtreecommitdiff
path: root/spec/factories/clusters/platforms/kubernetes.rb
blob: dbcb838e9dacaa0d6924456dea72ca05f669101d (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
# frozen_string_literal: true

FactoryBot.define do
  factory :cluster_platform_kubernetes, class: Clusters::Platforms::Kubernetes do
    association :cluster, platform_type: :kubernetes, provider_type: :user
    namespace { nil }
    api_url { 'https://kubernetes.example.com' }
    token { 'a' * 40 }

    trait :configured do
      api_url { 'https://kubernetes.example.com' }
      username { 'xxxxxx' }
      password { 'xxxxxx' }

      before(:create) do |platform_kubernetes, evaluator|
        pem_file = File.expand_path(Rails.root.join('spec/fixtures/clusters/sample_cert.pem'))
        platform_kubernetes.ca_cert = File.read(pem_file)
      end
    end

    trait :rbac_disabled do
      authorization_type { :abac }
    end
  end
end