gitlab-org--gitlab-foss/spec/factories/clusters/platforms/kubernetes.rb

26 lines
685 B
Ruby
Raw Normal View History

# frozen_string_literal: true
FactoryBot.define do
factory :cluster_platform_kubernetes, class: Clusters::Platforms::Kubernetes do
2017-10-29 14:48:45 -04:00
cluster
namespace { nil }
api_url { 'https://kubernetes.example.com' }
token { 'a' * 40 }
2017-10-29 14:48:45 -04:00
2017-10-30 08:55:18 -04:00
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
2017-10-30 08:55:18 -04:00
end
trait :rbac_disabled do
authorization_type { :abac }
end
2017-10-29 14:48:45 -04:00
end
end